diff --git a/Podfile b/Podfile index 4b65d00..3888901 100644 --- a/Podfile +++ b/Podfile @@ -50,6 +50,7 @@ target 'QuickLocation' do #第三方SDk pod 'GYSDK' #个推一键登录 pod 'OpenIMSDK' #OpenIM + pod 'CocoaMQTT' #MQTT #支付宝 pod 'AlipaySDK-iOS' diff --git a/Podfile.lock b/Podfile.lock index b5bfe45..75c9e6a 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -11,6 +11,10 @@ PODS: - CocoaLumberjack/Core (3.9.1) - CocoaLumberjack/Swift (3.9.1): - CocoaLumberjack/Core + - CocoaMQTT (2.2.5): + - CocoaMQTT/Core (= 2.2.5) + - CocoaMQTT/Core (2.2.5): + - MqttCocoaAsyncSocket (~> 1.0.8) - Differentiator (5.0.0) - GTCommonSDK (3.2.3.0): - ZXSDK @@ -89,6 +93,7 @@ PODS: - Moya/Core (= 15.0.0) - Moya/Core (15.0.0): - Alamofire (~> 5.0) + - MqttCocoaAsyncSocket (1.0.8) - ObjectMapper (4.4.2) - "OpenIMSDK (3.8.3+hotfix.3.1)": - MJExtension @@ -174,6 +179,7 @@ DEPENDENCIES: - AMapLocation - AMapSearch - CocoaLumberjack/Swift + - CocoaMQTT - GYSDK - HXPHPicker - IQKeyboardManagerSwift @@ -215,6 +221,7 @@ SPEC REPOS: - AMapLocation - AMapSearch - CocoaLumberjack + - CocoaMQTT - Differentiator - GTCommonSDK - GYSDK @@ -236,6 +243,7 @@ SPEC REPOS: - MJExtension - MJRefresh - Moya + - MqttCocoaAsyncSocket - ObjectMapper - OpenIMSDK - OpenIMSDKCore @@ -277,6 +285,7 @@ SPEC CHECKSUMS: AMapLocation: 6e44f50b044dc54c6b3dcb1dee5ffd6de2689e41 AMapSearch: 29224a399b56b17da1540e4312fc4d9dc37342bb CocoaLumberjack: e4ba3b414dfca8c1916c6303d37f63b3a95134c6 + CocoaMQTT: 1e2fa493d57045d66fb1eba2bb5ffb8d77039c60 Differentiator: e8497ceab83c1b10ca233716d547b9af21b9344d GTCommonSDK: 238c6735add91e654f8564638854686ee3dcb4ac GYSDK: db5f4b3aae8df06201be5e786076211ec11791be @@ -299,6 +308,7 @@ SPEC CHECKSUMS: MJExtension: e97d164cb411aa9795cf576093a1fa208b4a8dd8 MJRefresh: ff9e531227924c84ce459338414550a05d2aea78 Moya: 138f0573e53411fb3dc17016add0b748dfbd78ee + MqttCocoaAsyncSocket: 77d3b74f76228dd5a05d1f9526eab101d415b30c ObjectMapper: e6e4d91ff7f2861df7aecc536c92d8363f4c9677 OpenIMSDK: c1880296ead605bcac2a289ad0aef9170fe6e6df OpenIMSDKCore: 75caba22be8ee484011f367711178312bd64a17d @@ -323,6 +333,6 @@ SPEC CHECKSUMS: YYImage: 1e1b62a9997399593e4b9c4ecfbbabbf1d3f3b54 ZXSDK: 786338c0a18e98e03eda00699c3bfd2700b97117 -PODFILE CHECKSUM: 6ba8ada83ccc565c9bdcc418e9a936818640882c +PODFILE CHECKSUM: 861114200722c29adba98535aef6b0494d123b44 COCOAPODS: 1.16.2 diff --git a/Pods/CocoaMQTT/LICENSE b/Pods/CocoaMQTT/LICENSE new file mode 100644 index 0000000..56bef4e --- /dev/null +++ b/Pods/CocoaMQTT/LICENSE @@ -0,0 +1,2 @@ +This project is dual licensed under the Eclipse Public License 1.0 and the +Eclipse Distribution License 1.0 as described in the epl-v10 and edl-v10 files. diff --git a/Pods/CocoaMQTT/README.md b/Pods/CocoaMQTT/README.md new file mode 100644 index 0000000..4e8b1e7 --- /dev/null +++ b/Pods/CocoaMQTT/README.md @@ -0,0 +1,350 @@ +# CocoaMQTT + +![PodVersion](https://img.shields.io/cocoapods/v/CocoaMQTT5.svg) +![Platforms](https://img.shields.io/cocoapods/p/CocoaMQTT5.svg) +![License](https://img.shields.io/cocoapods/l/BadgeSwift.svg?style=flat) +![Swift version](https://img.shields.io/badge/swift-5-orange.svg) + +MQTT v3.1.1 and v5.0 client library for iOS/macOS/tvOS written with Swift 5 + + +## Build + +Build with Xcode 11.1 / Swift 5.1 + +IOS Target: 12.0 or above +OSX Target: 10.13 or above +TVOS Target: 10.0 or above + +## xcode 14.3 issue: +```ruby +File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a +``` +If you encounter the issue, Please update your project minimum depolyments to 11.0 + + +## Installation + +### Swift Package Manager + +To integrate CocoaMQTT into your Xcode project using [Swift Package Manager](https://swift.org/package-manager/), follow these steps: + +1. Open your project in Xcode. +2. Go to `File` > `Swift Packages` > `Add Package Dependency`. +3. Enter the repository URL: `https://github.com/emqx/CocoaMQTT.git`. +4. Choose the latest version or specify a version range. +5. Add the package to your target. + +At last, import "CocoaMQTT" to your project: + +```swift +import CocoaMQTT +``` + +### CocoaPods + +To integrate CocoaMQTT into your Xcode project using [CocoaPods](http://cocoapods.org), you need to modify you `Podfile` like the followings: + +```ruby +use_frameworks! + +target 'Example' do + pod 'CocoaMQTT' +end +``` + +Then, run the following command: + +```bash +$ pod install +``` + +At last, import "CocoaMQTT" to your project: + +```swift +import CocoaMQTT +``` + +## Usage + +Create a client to connect [MQTT broker](https://www.emqx.com/en/mqtt/public-mqtt5-broker): + +```swift +///MQTT 5.0 +let clientID = "CocoaMQTT-" + String(ProcessInfo().processIdentifier) +let mqtt5 = CocoaMQTT5(clientID: clientID, host: "broker.emqx.io", port: 1883) + +let connectProperties = MqttConnectProperties() +connectProperties.topicAliasMaximum = 0 +connectProperties.sessionExpiryInterval = 0 +connectProperties.receiveMaximum = 100 +connectProperties.maximumPacketSize = 500 +mqtt5.connectProperties = connectProperties + +mqtt5.username = "test" +mqtt5.password = "public" +mqtt5.willMessage = CocoaMQTTMessage(topic: "/will", string: "dieout") +mqtt5.keepAlive = 60 +mqtt5.delegate = self +mqtt5.connect() + +///MQTT 3.1.1 +let clientID = "CocoaMQTT-" + String(ProcessInfo().processIdentifier) +let mqtt = CocoaMQTT(clientID: clientID, host: "broker.emqx.io", port: 1883) +mqtt.username = "test" +mqtt.password = "public" +mqtt.willMessage = CocoaMQTTMessage(topic: "/will", string: "dieout") +mqtt.keepAlive = 60 +mqtt.delegate = self +mqtt.connect() +``` + +Now you can use closures instead of `CocoaMQTTDelegate`: + +```swift +mqtt.didReceiveMessage = { mqtt, message, id in + print("Message received in topic \(message.topic) with payload \(message.string!)") +} +``` + +## SSL Secure + +#### One-way certification + +No certificate is required locally. +If you want to trust all untrust CA certificates, you can do this: + +```swift +mqtt.allowUntrustCACertificate = true +``` + +#### Two-way certification + +Need a .p12 file which is generated by a public key file and a private key file. You can generate the p12 file in the terminal: + +``` +openssl pkcs12 -export -clcerts -in client-cert.pem -inkey client-key.pem -out client.p12 +``` + +Note: Please use openssl version 1.1 (e.g. `brew install openssl@1.1`), otherwise you may not be able to import the generated .p12 file to the system correctly. + +## MQTT over Websocket + +In the 1.3.0, The CocoaMQTT has supported to connect to MQTT Broker by Websocket. + +If you integrated by **Swift Package Manager**, follow these steps: + +1. Open your project in Xcode. +2. Go to `File` > `Swift Packages` > `Add Package Dependency`. +3. Enter the repository URL: `https://github.com/emqx/CocoaMQTT.git`. +4. Choose the latest version or specify a version range. +5. Add the package to your target. + +At last, import "CocoaMQTT" and "Starscream" to your project: + +```swift +import CocoaMQTT +import CocoaMQTTWebSocket +import Starscream +``` + +If you integrated by **CocoaPods**, you need to modify you `Podfile` like the followings and execute `pod install` again: + +```ruby +use_frameworks! + +target 'Example' do + pod 'CocoaMQTT/WebSockets' +end +``` + +If you're using CocoaMQTT in a project with only a `.podspec` and no `Podfile`, e.g. in a module for React Native, add this line to your `.podspec`: + +```ruby +Pod::Spec.new do |s| + ... + s.dependency "Starscream" +end +``` + +Then, Create a MQTT instance over Websocket: + +```swift +///MQTT 5.0 +let websocket = CocoaMQTTWebSocket(uri: "/mqtt") +let mqtt5 = CocoaMQTT5(clientID: clientID, host: host, port: 8083, socket: websocket) +let connectProperties = MqttConnectProperties() +connectProperties.topicAliasMaximum = 0 +// ... +mqtt5.connectProperties = connectProperties +// ... + +_ = mqtt5.connect() + +///MQTT 3.1.1 +let websocket = CocoaMQTTWebSocket(uri: "/mqtt") +let mqtt = CocoaMQTT(clientID: clientID, host: host, port: 8083, socket: websocket) + +// ... + +_ = mqtt.connect() +``` + +If you want to add additional custom header to the connection, you can use the following: + +```swift +let websocket = CocoaMQTTWebSocket(uri: "/mqtt") +websocket.headers = [ + "x-api-key": "value" + ] + websocket.enableSSL = true + +let mqtt = CocoaMQTT(clientID: clientID, host: host, port: 8083, socket: websocket) + +// ... + +_ = mqtt.connect() +``` + +If you want to connect using WebSocket Secure (wss), you can use the following example: + +```swift +import CocoaMQTT +import CocoaMQTTWebSocket +import Starscream + +class WebSocketManager { + + private var mqttClient: CocoaMQTT? + var message: String = "" + var token: String = "" + + func setupMQTTClient(with token: String) { + let socket = CocoaMQTTWebSocket(uri: "/mqtt") + socket.enableSSL = true + mqttClient = CocoaMQTT(clientID: token, host: "host", port: 443, socket: socket) + mqttClient?.delegate = self + } + + func connect() { + guard let mqttClient = mqttClient else { return } + mqttClient.connect() + } + +} + +extension WebSocketManager: CocoaMQTTDelegate { + + func mqtt(_ mqtt: CocoaMQTT, didReceive trust: SecTrust, completionHandler: @escaping (Bool) -> Void) { + // Implement your custom SSL validation logic here. + // For example, you might want to always trust the certificate for testing purposes: + completionHandler(true) + } + + func mqtt(_ mqtt: CocoaMQTT, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) { + if challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust { + if let serverTrust = challenge.protectionSpace.serverTrust { + completionHandler(.useCredential, URLCredential(trust: serverTrust)) + return + } + } + completionHandler(.performDefaultHandling, nil) + } + + func mqttUrlSession(_ mqtt: CocoaMQTT, didReceiveTrust trust: SecTrust, didReceiveChallenge challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) { + + print("\(#function), \n result:- \(challenge.debugDescription)") + } + + func mqtt(_ mqtt: CocoaMQTT, didPublishAck id: UInt16) { + print("Published message with ID: \(id)") + } + + func mqtt(_ mqtt: CocoaMQTT, didUnsubscribeTopics topics: [String]) { + print("Unsubscribed from topics: \(topics)") + } + + func mqttDidPing(_ mqtt: CocoaMQTT) { + print("MQTT did ping") + } + + func mqttDidReceivePong(_ mqtt: CocoaMQTT) { + print("MQTT did receive pong") + } + + func mqttDidDisconnect(_ mqtt: CocoaMQTT, withError err: (any Error)?) { + print("Disconnected from MQTT broker with error: \(String(describing: err))") + } + + func mqtt(_ mqtt: CocoaMQTT, didConnectAck ack: CocoaMQTTConnAck) { + print("Connected to MQTT broker with acknowledgment: \(ack)") + } + + func mqtt(_ mqtt: CocoaMQTT, didReceiveMessage message: CocoaMQTTMessage, id: UInt16) { + if let messageString = message.string { + DispatchQueue.main.async { + self.message = messageString + } + print("Received message: \(messageString) on topic: \(message.topic)") + } + } + + func mqtt(_ mqtt: CocoaMQTT, didPublishMessage message: CocoaMQTTMessage, id: UInt16) { + print("Published message: \(message.string ?? "") with ID: \(id)") + } + + func mqtt(_ mqtt: CocoaMQTT, didSubscribeTopics success: NSDictionary, failed: [String]) { + print("Subscribed to topics: \(success), failed to subscribe to: \(failed)") + } + + func mqtt(_ mqtt: CocoaMQTT, didDisconnectWithError err: Error?) { + print("Disconnected from MQTT broker with error: \(String(describing: err))") + } + +} +``` + +## Example App + +You can follow the Example App to learn how to use it. But we need to make the Example App works first: + +```bash +$ cd Examples +``` + +Then, open the `Example.xcodeproj` by Xcode and start it! + +## Dependencies + + +These third-party functions are used: + +~~[GCDAsyncSocket](https://github.com/robbiehanson/CocoaAsyncSocket)~~ +* [MqttCocoaAsyncSocket](https://github.com/leeway1208/MqttCocoaAsyncSocket) +* [Starscream](https://github.com/daltoniam/Starscream) + + +## LICENSE + +MIT License (see `LICENSE`) + +## Contributors + +* [@andypiper](https://github.com/andypiper) +* [@turtleDeng](https://github.com/turtleDeng) +* [@jan-bednar](https://github.com/jan-bednar) +* [@jmiltner](https://github.com/jmiltner) +* [@manucheri](https://github.com/manucheri) +* [@Cyrus Ingraham](https://github.com/cyrusingraham) + +## Author + +- Feng Lee +- CrazyWisdom +- Alex Yu +- Leeway + + +## Twitter + +https://twitter.com/EMQTech diff --git a/Pods/CocoaMQTT/Source/CocoaMQTT.swift b/Pods/CocoaMQTT/Source/CocoaMQTT.swift new file mode 100644 index 0000000..c9fd299 --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTT.swift @@ -0,0 +1,842 @@ +// +// CocoaMQTT.swift +// CocoaMQTT +// +// Created by Feng Lee on 14/8/3. +// Copyright (c) 2015 emqx.io. All rights reserved. +// + +import Foundation +import MqttCocoaAsyncSocket + +/** + * Conn Ack + */ +@objc public enum CocoaMQTTConnAck: UInt8, CustomStringConvertible { + case accept = 0 + case unacceptableProtocolVersion + case identifierRejected + case serverUnavailable + case badUsernameOrPassword + case notAuthorized + case reserved + + public init(byte: UInt8) { + switch byte { + case CocoaMQTTConnAck.accept.rawValue.. Void) + + @objc optional func mqttUrlSession(_ mqtt: CocoaMQTT, didReceiveTrust trust: SecTrust, didReceiveChallenge challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) + + /// + @objc optional func mqtt(_ mqtt: CocoaMQTT, didPublishComplete id: UInt16) + + /// + @objc optional func mqtt(_ mqtt: CocoaMQTT, didStateChangeTo state: CocoaMQTTConnState) + + /// Called when auto-reconnect schedules a reconnect attempt after an unexpected disconnect. + @objc optional func mqtt(_ mqtt: CocoaMQTT, didScheduleReconnect attemptCount: UInt, after interval: UInt16) +} + +/// set mqtt version to 3.1.1 +public func setMqtt3Version() { + if let storage = CocoaMQTTStorage() { + storage.setMQTTVersion("3.1.1") + } +} + +/** + * Blueprint of the MQTT Client + */ +protocol CocoaMQTTClient { + + /* Basic Properties */ + + var host: String { get set } + var port: UInt16 { get set } + var clientID: String { get } + var username: String? {get set} + var password: String? {get set} + var cleanSession: Bool {get set} + var keepAlive: UInt16 {get set} + var willMessage: CocoaMQTTMessage? {get set} + + /* Basic Properties */ + + /* CONNNEC/DISCONNECT */ + + func connect() -> Bool + func connect(timeout: TimeInterval) -> Bool + func disconnect() + func ping() + + /* CONNNEC/DISCONNECT */ + + /* PUBLISH/SUBSCRIBE */ + + func subscribe(_ topic: String, qos: CocoaMQTTQoS) + func subscribe(_ topics: [(String, CocoaMQTTQoS)]) + + func unsubscribe(_ topic: String) + func unsubscribe(_ topics: [String]) + + func publish(_ topic: String, withString string: String, qos: CocoaMQTTQoS, retained: Bool) -> Int + func publish(_ message: CocoaMQTTMessage) -> Int + + /* PUBLISH/SUBSCRIBE */ +} + +/// MQTT Client +/// +/// - Note: MGCDAsyncSocket need delegate to extend NSObject +public class CocoaMQTT: NSObject, CocoaMQTTClient { + + public weak var delegate: CocoaMQTTDelegate? + + private var version = "3.1.1" + + public var host = "localhost" + + public var port: UInt16 = 1883 + + public var clientID: String + + public var username: String? + + public var password: String? + + /// Clean Session flag. Default is true + /// + /// - TODO: What's behavior each Clean Session flags??? + public var cleanSession = true + + /// Setup a **Last Will Message** to client before connecting to broker + public var willMessage: CocoaMQTTMessage? + + /// Enable backgounding socket if running on iOS platform. Default is true + /// + /// - Note: + public var backgroundOnSocket: Bool { + get { return (self.socket as? CocoaMQTTSocket)?.backgroundOnSocket ?? true } + set { (self.socket as? CocoaMQTTSocket)?.backgroundOnSocket = newValue } + } + + /// Delegate Executed queue. Default is `DispatchQueue.main` + /// + /// The delegate/closure callback function will be committed asynchronously to it + public var delegateQueue = DispatchQueue.main + + public var connState = CocoaMQTTConnState.disconnected { + didSet { + __delegate_queue { + self.delegate?.mqtt?(self, didStateChangeTo: self.connState) + self.didChangeState(self, self.connState) + } + } + } + + // deliver + private var deliver = CocoaMQTTDeliver() + + /// Re-deliver the un-acked messages + public var deliverTimeout: Double { + get { return deliver.retryTimeInterval } + set { deliver.retryTimeInterval = newValue } + } + + /// Message queue size. default 1000 + /// + /// The new publishing messages of Qos1/Qos2 will be drop, if the queue is full + public var messageQueueSize: UInt { + get { return deliver.mqueueSize } + set { deliver.mqueueSize = newValue } + } + + /// In-flight window size. default 10 + public var inflightWindowSize: UInt { + get { return deliver.inflightWindowSize } + set { deliver.inflightWindowSize = newValue } + } + + /// Keep alive time interval + public var keepAlive: UInt16 = 60 + private var aliveTimer: CocoaMQTTTimer? + + /// Enable auto-reconnect mechanism + public var autoReconnect = false + + /// Reconnect time interval + /// + /// - note: This value will be increased with `autoReconnectTimeInterval *= 2` + /// if reconnect failed + public var autoReconnectTimeInterval: UInt16 = 1 // starts from 1 second + + /// Maximum auto reconnect time interval + /// + /// The timer starts from `autoReconnectTimeInterval` second and grows exponentially until this value + /// After that, it uses this value for subsequent requests. + public var maxAutoReconnectTimeInterval: UInt16 = 128 // 128 seconds + + /// Auto-reconnect backoff interval in seconds for the current reconnect cycle. + /// + /// This value is advanced for the next reconnect attempt while auto-reconnect is active, + /// and resets to `0` when auto-reconnect is inactive. + public private(set) var reconnectTimeInterval: UInt16 = 0 + + /// Number of reconnect attempts scheduled in the current auto-reconnect cycle. + /// + /// The value resets to `0` after a successful connection or expected disconnect. + public private(set) var reconnectAttemptCount: UInt = 0 + + private var autoReconnTimer: CocoaMQTTTimer? + private var is_internal_disconnected = false + + /// Console log level + public var logLevel: CocoaMQTTLoggerLevel { + get { + return CocoaMQTTLogger.logger.minLevel + } + set { + CocoaMQTTLogger.logger.minLevel = newValue + } + } + + /// Enable SSL connection + public var enableSSL: Bool { + get { return self.socket.enableSSL } + set { socket.enableSSL = newValue } + } + + /// + public var sslSettings: [String: NSObject]? { + get { return (self.socket as? CocoaMQTTSocket)?.sslSettings ?? nil } + set { (self.socket as? CocoaMQTTSocket)?.sslSettings = newValue } + } + + /// Allow self-signed ca certificate. + /// + /// Default is false + public var allowUntrustCACertificate: Bool { + get { return (self.socket as? CocoaMQTTSocket)?.allowUntrustCACertificate ?? false } + set { (self.socket as? CocoaMQTTSocket)?.allowUntrustCACertificate = newValue } + } + + /// The subscribed topics in current communication + /// + /// Keeping this dictionary-typed preserves the public API while the backing store remains thread-safe. + public var subscriptions: [String: CocoaMQTTQoS] { + get { subscriptionsStorage.snapshot() } + set { subscriptionsStorage.replace(with: newValue) } + } + private var subscriptionsStorage = ThreadSafeDictionary(label: "subscriptions") + + fileprivate var subscriptionsWaitingAck = ThreadSafeDictionary(label: "subscriptionsWaitingAck") + fileprivate var unsubscriptionsWaitingAck = ThreadSafeDictionary(label: "unsubscriptionsWaitingAck") + + /// Sending messages + fileprivate var sendingMessages: [UInt16: CocoaMQTTMessage] = [:] + + /// message id counter + private var _msgid: UInt16 = 0 + fileprivate var socket: CocoaMQTTSocketProtocol + fileprivate var reader: CocoaMQTTReader? + + // Closures + public var didConnectAck: (CocoaMQTT, CocoaMQTTConnAck) -> Void = { _, _ in } + public var didPublishMessage: (CocoaMQTT, CocoaMQTTMessage, UInt16) -> Void = { _, _, _ in } + public var didPublishAck: (CocoaMQTT, UInt16) -> Void = { _, _ in } + public var didReceiveMessage: (CocoaMQTT, CocoaMQTTMessage, UInt16) -> Void = { _, _, _ in } + public var didSubscribeTopics: (CocoaMQTT, NSDictionary, [String]) -> Void = { _, _, _ in } + public var didUnsubscribeTopics: (CocoaMQTT, [String]) -> Void = { _, _ in } + public var didPing: (CocoaMQTT) -> Void = { _ in } + public var didReceivePong: (CocoaMQTT) -> Void = { _ in } + public var didDisconnect: (CocoaMQTT, Error?) -> Void = { _, _ in } + public var didReceiveTrust: (CocoaMQTT, SecTrust, @escaping (Bool) -> Swift.Void) -> Void = { _, _, _ in } + public var didCompletePublish: (CocoaMQTT, UInt16) -> Void = { _, _ in } + public var didChangeState: (CocoaMQTT, CocoaMQTTConnState) -> Void = { _, _ in } + public var didScheduleReconnect: (CocoaMQTT, UInt, UInt16) -> Void = { _, _, _ in } + + /// Initial client object + /// + /// - Parameters: + /// - clientID: Client Identifier + /// - host: The MQTT broker host domain or IP address. Default is "localhost" + /// - port: The MQTT service port of host. Default is 1883 + public init(clientID: String, host: String = "localhost", port: UInt16 = 1883, socket: CocoaMQTTSocketProtocol = CocoaMQTTSocket()) { + self.clientID = clientID + self.host = host + self.port = port + self.socket = socket + super.init() + deliver.delegate = self + if let storage = CocoaMQTTStorage() { + storage.setMQTTVersion("3.1.1") + } else { + printWarning("Localstorage initial failed for key: \(clientID)") + } + } + + deinit { + aliveTimer?.suspend() + autoReconnTimer?.suspend() + + socket.setDelegate(nil, delegateQueue: nil) + socket.disconnect() + } + + fileprivate func send(_ frame: Frame, tag: Int = 0) { + printDebug("SEND: \(frame)") + let data = frame.bytes(version: version) + socket.write(Data(bytes: data, count: data.count), withTimeout: 5, tag: tag) + } + + fileprivate func sendConnectFrame() { + + var connect = FrameConnect(clientID: clientID) + connect.keepAlive = keepAlive + connect.username = username + connect.password = password + connect.willMsg = willMessage + connect.cleansess = cleanSession + + send(connect) + reader!.start() + } + + fileprivate func nextMessageID() -> UInt16 { + if _msgid == UInt16.max { + _msgid = 0 + } + _msgid += 1 + return _msgid + } + + fileprivate func puback(_ type: FrameType, msgid: UInt16) { + switch type { + case .puback: + send(FramePubAck(msgid: msgid)) + case .pubrec: + send(FramePubRec(msgid: msgid)) + case .pubcomp: + send(FramePubComp(msgid: msgid)) + default: return + } + } + + /// Connect to MQTT broker + /// + /// - Returns: + /// - Bool: It indicates whether successfully calling socket connect function. + /// Not yet established correct MQTT session + public func connect() -> Bool { + return connect(timeout: -1) + } + + /// Connect to MQTT broker + /// - Parameters: + /// - timeout: Connect timeout + /// - Returns: + /// - Bool: It indicates whether successfully calling socket connect function. + /// Not yet established correct MQTT session + public func connect(timeout: TimeInterval) -> Bool { + socket.setDelegate(self, delegateQueue: delegateQueue) + reader = CocoaMQTTReader(socket: socket, delegate: self) + do { + if timeout > 0 { + try socket.connect(toHost: self.host, onPort: self.port, withTimeout: timeout) + } else { + try socket.connect(toHost: self.host, onPort: self.port) + } + + delegateQueue.async { [weak self] in + guard let self = self else { return } + self.connState = .connecting + } + + return true + } catch let error as NSError { + printError("socket connect error: \(error.description)") + return false + } + } + + /// Send a DISCONNECT packet to the broker then close the connection + /// + /// - Note: Only can be called from outside. + /// This closes the connection expectedly, so auto-reconnect will not run. + public func disconnect() { + expected_disconnect() + } + + /// Disconnect unexpectedly. + /// This keeps auto-reconnect behavior enabled. + func internal_disconnect() { + is_internal_disconnected = false + socket.disconnect() + } + + private func expected_disconnect() { + is_internal_disconnected = true + send(FrameDisconnect(), tag: -0xE0) + socket.disconnect() + } + + /// Send a PING request to broker + public func ping() { + printDebug("ping") + send(FramePingReq(), tag: -0xC0) + + __delegate_queue { + self.delegate?.mqttDidPing(self) + self.didPing(self) + } + } + + /// Publish a message to broker + /// + /// - Parameters: + /// - topic: Topic Name. It can not contain '#', '+' wildcards + /// - string: Payload string + /// - qos: Qos. Default is Qos1 + /// - retained: Retained flag. Mark this message is a retained message. default is false + /// - Returns: + /// - 0 will be returned, if the message's qos is qos0 + /// - 1-65535 will be returned, if the messages's qos is qos1/qos2 + /// - -1 will be returned, if the messages queue is full + @discardableResult + public func publish(_ topic: String, withString string: String, qos: CocoaMQTTQoS = .qos1, retained: Bool = false) -> Int { + let message = CocoaMQTTMessage(topic: topic, string: string, qos: qos, retained: retained) + return publish(message) + } + + /// Publish a message to broker + /// + /// - Parameters: + /// - message: Message + @discardableResult + public func publish(_ message: CocoaMQTTMessage) -> Int { + let msgid: UInt16 + + if message.qos == .qos0 { + msgid = 0 + } else { + msgid = nextMessageID() + } + + var frame = FramePublish(topic: message.topic, + payload: message.payload, + qos: message.qos, + msgid: msgid) + + frame.retained = message.retained + + delegateQueue.async { + self.sendingMessages[msgid] = message + } + + // Push frame to deliver message queue + guard deliver.add(frame) else { + delegateQueue.async { + self.sendingMessages.removeValue(forKey: msgid) + } + return -1 + } + + return Int(msgid) + } + + /// Subscribe a `/` + /// + /// - Parameters: + /// - topic: Topic Name or Topic Filter + /// - qos: Qos. Default is qos1 + public func subscribe(_ topic: String, qos: CocoaMQTTQoS = .qos1) { + return subscribe([(topic, qos)]) + } + + /// Subscribe a lists of topics + /// + /// - Parameters: + /// - topics: A list of tuples presented by `(/, Qos)` + public func subscribe(_ topics: [(String, CocoaMQTTQoS)]) { + let msgid = nextMessageID() + let frame = FrameSubscribe(msgid: msgid, topics: topics) + send(frame, tag: Int(msgid)) + subscriptionsWaitingAck[msgid] = topics + } + + /// Unsubscribe a Topic + /// + /// - Parameters: + /// - topic: A Topic Name or Topic Filter + public func unsubscribe(_ topic: String) { + return unsubscribe([topic]) + } + + /// Unsubscribe a list of topics + /// + /// - Parameters: + /// - topics: A list of `/` + public func unsubscribe(_ topics: [String]) { + let msgid = nextMessageID() + let frame = FrameUnsubscribe(msgid: msgid, topics: topics) + unsubscriptionsWaitingAck[msgid] = topics + send(frame, tag: Int(msgid)) + } +} + +// MARK: CocoaMQTTDeliverProtocol +extension CocoaMQTT: CocoaMQTTDeliverProtocol { + + func deliver(_ deliver: CocoaMQTTDeliver, wantToSend frame: Frame) { + if let publish = frame as? FramePublish { + let msgid = publish.msgid + + var message: CocoaMQTTMessage? + + if let sendingMessage = sendingMessages[msgid] { + message = sendingMessage + // printError("Want send \(frame), but not found in CocoaMQTT cache") + + } else { + message = CocoaMQTTMessage(topic: publish.topic, payload: publish.payload()) + } + + send(publish, tag: Int(msgid)) + + if let message = message { + self.delegate?.mqtt(self, didPublishMessage: message, id: msgid) + self.didPublishMessage(self, message, msgid) + } + } else if let pubrel = frame as? FramePubRel { + // -- Send PUBREL + send(pubrel, tag: Int(pubrel.msgid)) + } + } +} + +extension CocoaMQTT { + + func __delegate_queue(_ fun: @escaping () -> Void) { + delegateQueue.async { [weak self] in + guard self != nil else { return } + fun() + } + } + + private func prepareAutoReconnectAttempt() { + if reconnectTimeInterval == 0 { + reconnectTimeInterval = min(autoReconnectTimeInterval, maxAutoReconnectTimeInterval) + } + reconnectAttemptCount += 1 + } + + private func updateAutoReconnectIntervalForNextAttempt() { + let doubledInterval = UInt32(reconnectTimeInterval) * 2 + reconnectTimeInterval = UInt16(min(doubledInterval, UInt32(maxAutoReconnectTimeInterval))) + } + + private func resetAutoReconnectState() { + reconnectTimeInterval = 0 + reconnectAttemptCount = 0 + autoReconnTimer = nil + } + + private func notifyAutoReconnectScheduled() { + delegate?.mqtt?(self, didScheduleReconnect: reconnectAttemptCount, after: reconnectTimeInterval) + didScheduleReconnect(self, reconnectAttemptCount, reconnectTimeInterval) + } +} + +// MARK: - CocoaMQTTSocketDelegate +extension CocoaMQTT: CocoaMQTTSocketDelegate { + + public func socketConnected(_ socket: CocoaMQTTSocketProtocol) { + sendConnectFrame() + } + + public func socket(_ socket: CocoaMQTTSocketProtocol, + didReceive trust: SecTrust, + completionHandler: @escaping (Bool) -> Swift.Void) { + + printDebug("Call the SSL/TLS manually validating function") + + delegate?.mqtt?(self, didReceive: trust, completionHandler: completionHandler) + didReceiveTrust(self, trust, completionHandler) + } + + public func socketUrlSession(_ socket: CocoaMQTTSocketProtocol, didReceiveTrust trust: SecTrust, didReceiveChallenge challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) { + printDebug("Call the SSL/TLS manually validating function - socketUrlSession") + + delegate?.mqttUrlSession?(self, didReceiveTrust: trust, didReceiveChallenge: challenge, completionHandler: completionHandler) + } + + // ? + public func socketDidSecure(_ sock: MGCDAsyncSocket) { + printDebug("Socket has successfully completed SSL/TLS negotiation") + sendConnectFrame() + } + + public func socket(_ socket: CocoaMQTTSocketProtocol, didWriteDataWithTag tag: Int) { + // XXX: How to print writed bytes?? + } + + public func socket(_ socket: CocoaMQTTSocketProtocol, didRead data: Data, withTag tag: Int) { + let etag = CocoaMQTTReadTag(rawValue: tag)! + var bytes = [UInt8]([0]) + switch etag { + case CocoaMQTTReadTag.header: + data.copyBytes(to: &bytes, count: 1) + reader!.headerReady(bytes[0]) + case CocoaMQTTReadTag.length: + data.copyBytes(to: &bytes, count: 1) + reader!.lengthReady(bytes[0]) + case CocoaMQTTReadTag.payload: + reader!.payloadReady(data) + } + } + + public func socketDidDisconnect(_ socket: CocoaMQTTSocketProtocol, withError err: Error?) { + // Clean up + socket.setDelegate(nil, delegateQueue: nil) + if is_internal_disconnected || !autoReconnect { + resetAutoReconnectState() + } + + connState = .disconnected + delegate?.mqttDidDisconnect(self, withError: err) + didDisconnect(self, err) + + guard !is_internal_disconnected else { + is_internal_disconnected = false + return + } + + guard autoReconnect else { + resetAutoReconnectState() + return + } + + prepareAutoReconnectAttempt() + + // Start reconnector once socket error occurred + printInfo("Try reconnect to server after \(reconnectTimeInterval)s") + notifyAutoReconnectScheduled() + autoReconnTimer = CocoaMQTTTimer.after(Double(reconnectTimeInterval), name: "autoReconnTimer", { [weak self] in + guard let self = self else { return } + self.updateAutoReconnectIntervalForNextAttempt() + _ = self.connect() + }) + } +} + +// MARK: - CocoaMQTTReaderDelegate +extension CocoaMQTT: CocoaMQTTReaderDelegate { + + func didReceive(_ reader: CocoaMQTTReader, connack: FrameConnAck) { + printDebug("RECV: \(connack)") + + if connack.returnCode == .accept { + + // Disable auto-reconnect + + resetAutoReconnectState() + is_internal_disconnected = false + + // Start keepalive timer + + let interval = Double(keepAlive <= 0 ? 60: keepAlive) + + aliveTimer = CocoaMQTTTimer.every(interval, name: "aliveTimer") { [weak self] in + guard let self = self else { return } + self.delegateQueue.async { + guard self.connState == .connected else { + self.aliveTimer = nil + return + } + self.ping() + } + } + + // recover session if enable + + if cleanSession { + deliver.cleanAll() + } else { + if let storage = CocoaMQTTStorage(by: clientID) { + deliver.recoverSessionBy(storage) + } else { + printWarning("Localstorage initial failed for key: \(clientID)") + } + } + + connState = .connected + + } else { + connState = .disconnected + expected_disconnect() + } + + delegate?.mqtt(self, didConnectAck: connack.returnCode ?? CocoaMQTTConnAck.serverUnavailable) + didConnectAck(self, connack.returnCode ?? CocoaMQTTConnAck.serverUnavailable) + } + + func didReceive(_ reader: CocoaMQTTReader, publish: FramePublish) { + printDebug("RECV: \(publish)") + + let message = CocoaMQTTMessage(topic: publish.topic, payload: publish.payload(), qos: publish.qos, retained: publish.retained) + + message.duplicated = publish.dup + + printInfo("Received message: \(message)") + delegate?.mqtt(self, didReceiveMessage: message, id: publish.msgid) + didReceiveMessage(self, message, publish.msgid) + + if message.qos == .qos1 { + puback(FrameType.puback, msgid: publish.msgid) + } else if message.qos == .qos2 { + puback(FrameType.pubrec, msgid: publish.msgid) + } + } + + func didReceive(_ reader: CocoaMQTTReader, puback: FramePubAck) { + printDebug("RECV: \(puback)") + + deliver.ack(by: puback) + + delegate?.mqtt(self, didPublishAck: puback.msgid) + didPublishAck(self, puback.msgid) + } + + func didReceive(_ reader: CocoaMQTTReader, pubrec: FramePubRec) { + printDebug("RECV: \(pubrec)") + + deliver.ack(by: pubrec) + } + + func didReceive(_ reader: CocoaMQTTReader, pubrel: FramePubRel) { + printDebug("RECV: \(pubrel)") + + puback(FrameType.pubcomp, msgid: pubrel.msgid) + } + + func didReceive(_ reader: CocoaMQTTReader, pubcomp: FramePubComp) { + printDebug("RECV: \(pubcomp)") + + deliver.ack(by: pubcomp) + + delegate?.mqtt?(self, didPublishComplete: pubcomp.msgid) + didCompletePublish(self, pubcomp.msgid) + } + + func didReceive(_ reader: CocoaMQTTReader, suback: FrameSubAck) { + printDebug("RECV: \(suback)") + guard let topicsAndQos = subscriptionsWaitingAck.removeValue(forKey: suback.msgid) else { + printWarning("UNEXPECT SUBACK Received: \(suback)") + return + } + + guard topicsAndQos.count == suback.grantedQos.count else { + printWarning("UNEXPECT SUBACK Recivied: \(suback)") + return + } + + let success: NSMutableDictionary = NSMutableDictionary() + var failed = [String]() + for (idx, (topic, _)) in topicsAndQos.enumerated() { + if suback.grantedQos[idx] != .FAILURE { + subscriptionsStorage[topic] = suback.grantedQos[idx] + success[topic] = suback.grantedQos[idx].rawValue + } else { + failed.append(topic) + } + } + + delegate?.mqtt(self, didSubscribeTopics: success, failed: failed) + didSubscribeTopics(self, success, failed) + } + + func didReceive(_ reader: CocoaMQTTReader, unsuback: FrameUnsubAck) { + printDebug("RECV: \(unsuback)") + + guard let topics = unsubscriptionsWaitingAck.removeValue(forKey: unsuback.msgid) else { + printWarning("UNEXPECT UNSUBACK Received: \(unsuback.msgid)") + return + } + // Remove local subscription + for t in topics { + subscriptionsStorage.removeValue(forKey: t) + } + delegate?.mqtt(self, didUnsubscribeTopics: topics) + didUnsubscribeTopics(self, topics) + } + + func didReceive(_ reader: CocoaMQTTReader, pingresp: FramePingResp) { + printDebug("RECV: \(pingresp)") + + delegate?.mqttDidReceivePong(self) + didReceivePong(self) + } + + func didReceive(_ reader: CocoaMQTTReader, disconnect: FrameDisconnect) { + printWarning("Received DISCONNECT in MQTT 3.1.1 mode, closing socket") + internal_disconnect() + } + + func didReceive(_ reader: CocoaMQTTReader, auth: FrameAuth) { + printWarning("Received AUTH in MQTT 3.1.1 mode, closing socket") + internal_disconnect() + } +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTT5.swift b/Pods/CocoaMQTT/Source/CocoaMQTT5.swift new file mode 100644 index 0000000..548327f --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTT5.swift @@ -0,0 +1,903 @@ +// +// CocoaMQTT5.swift +// CocoaMQTT5 +// +// Created by Feng Lee on 14/8/3. +// Copyright (c) 2015 emqx.io. All rights reserved. +// + +import Foundation +import MqttCocoaAsyncSocket + +/** + * Connection State + */ +@objc public enum CocoaMQTTConnState: UInt8, CustomStringConvertible { + case disconnected = 0 + case connecting + case connected + + public var description: String { + switch self { + case .connecting: return "connecting" + case .connected: return "connected" + case .disconnected: return "disconnected" + } + } +} + +/// CocoaMQTT5 Delegate +@objc public protocol CocoaMQTT5Delegate { + + /// + func mqtt5(_ mqtt5: CocoaMQTT5, didConnectAck ack: CocoaMQTTCONNACKReasonCode, connAckData: MqttDecodeConnAck?) + + /// + func mqtt5(_ mqtt5: CocoaMQTT5, didPublishMessage message: CocoaMQTT5Message, id: UInt16) + + /// + func mqtt5(_ mqtt5: CocoaMQTT5, didPublishAck id: UInt16, pubAckData: MqttDecodePubAck?) + + /// + func mqtt5(_ mqtt5: CocoaMQTT5, didPublishRec id: UInt16, pubRecData: MqttDecodePubRec?) + + /// + func mqtt5(_ mqtt5: CocoaMQTT5, didReceiveMessage message: CocoaMQTT5Message, id: UInt16, publishData: MqttDecodePublish?) + + /// + func mqtt5(_ mqtt5: CocoaMQTT5, didSubscribeTopics success: NSDictionary, failed: [String], subAckData: MqttDecodeSubAck?) + + /// + func mqtt5(_ mqtt5: CocoaMQTT5, didUnsubscribeTopics topics: [String], unsubAckData: MqttDecodeUnsubAck?) + + /// + func mqtt5(_ mqtt5: CocoaMQTT5, didReceiveDisconnectReasonCode reasonCode: CocoaMQTTDISCONNECTReasonCode) + + /// + func mqtt5(_ mqtt5: CocoaMQTT5, didReceiveAuthReasonCode reasonCode: CocoaMQTTAUTHReasonCode) + + /// + func mqtt5DidPing(_ mqtt5: CocoaMQTT5) + + /// + func mqtt5DidReceivePong(_ mqtt5: CocoaMQTT5) + + /// + func mqtt5DidDisconnect(_ mqtt5: CocoaMQTT5, withError err: Error?) + + /// Manually validate SSL/TLS server certificate. + /// + /// This method will be called if enable `allowUntrustCACertificate` + @objc optional func mqtt5(_ mqtt5: CocoaMQTT5, didReceive trust: SecTrust, completionHandler: @escaping (Bool) -> Void) + + @objc optional func mqtt5UrlSession(_ mqtt: CocoaMQTT5, didReceiveTrust trust: SecTrust, didReceiveChallenge challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) + + /// + @objc optional func mqtt5(_ mqtt5: CocoaMQTT5, didPublishComplete id: UInt16, pubCompData: MqttDecodePubComp?) + + /// + @objc optional func mqtt5(_ mqtt5: CocoaMQTT5, didStateChangeTo state: CocoaMQTTConnState) + + /// Called when auto-reconnect schedules a reconnect attempt after an unexpected disconnect. + @objc optional func mqtt5(_ mqtt5: CocoaMQTT5, didScheduleReconnect attemptCount: UInt, after interval: UInt16) +} + +/// set mqtt version to 5.0 +public func setMqtt5Version() { + if let storage = CocoaMQTTStorage() { + storage.setMQTTVersion("5.0") + } +} + +/** + * Blueprint of the MQTT Client + */ +protocol CocoaMQTT5Client { + + /* Basic Properties */ + + var host: String { get set } + var port: UInt16 { get set } + var clientID: String { get } + var username: String? {get set} + var password: String? {get set} + var cleanSession: Bool {get set} + var keepAlive: UInt16 {get set} + var willMessage: CocoaMQTT5Message? {get set} + var connectProperties: MqttConnectProperties? {get set} + var authProperties: MqttAuthProperties? {get set} + + /* Basic Properties */ + + /* CONNNEC/DISCONNECT */ + + func connect() -> Bool + func connect(timeout: TimeInterval) -> Bool + func disconnect() + func ping() + + /* CONNNEC/DISCONNECT */ + + /* PUBLISH/SUBSCRIBE */ + + func subscribe(_ topic: String, qos: CocoaMQTTQoS) + func subscribe(_ topics: [MqttSubscription]) + + func unsubscribe(_ topic: String) + func unsubscribe(_ topics: [MqttSubscription]) + + func publish(_ topic: String, withString string: String, qos: CocoaMQTTQoS, DUP: Bool, retained: Bool, properties: MqttPublishProperties) -> Int + func publish(_ message: CocoaMQTT5Message, DUP: Bool, retained: Bool, properties: MqttPublishProperties) -> Int + + /* PUBLISH/SUBSCRIBE */ +} + +/// MQTT Client +/// +/// - Note: MGCDAsyncSocket need delegate to extend NSObject +public class CocoaMQTT5: NSObject, CocoaMQTT5Client { + + public weak var delegate: CocoaMQTT5Delegate? + + private var version = "5.0" + + public var host = "localhost" + + public var port: UInt16 = 1883 + + public var clientID: String + + public var username: String? + + public var password: String? + + /// Clean Session flag. Default is true + /// + /// - TODO: What's behavior each Clean Session flags??? + public var cleanSession = true + + /// Setup a **Last Will Message** to client before connecting to broker + public var willMessage: CocoaMQTT5Message? + + /// Enable backgounding socket if running on iOS platform. Default is true + /// + /// - Note: + public var backgroundOnSocket: Bool { + get { return (self.socket as? CocoaMQTTSocket)?.backgroundOnSocket ?? true } + set { (self.socket as? CocoaMQTTSocket)?.backgroundOnSocket = newValue } + } + + /// Delegate Executed queue. Default is `DispatchQueue.main` + /// + /// The delegate/closure callback function will be committed asynchronously to it + public var delegateQueue = DispatchQueue.main + + @ConcurrentAtomic(wrappedValue: CocoaMQTTConnState.disconnected, label: "CocoaMQTT5.connState") + public var connState { + didSet { + __delegate_queue { + self.delegate?.mqtt5?(self, didStateChangeTo: self.connState) + self.didChangeState(self, self.connState) + } + } + } + + // deliver + private var deliver = CocoaMQTTDeliver() + + /// Re-deliver the un-acked messages + public var deliverTimeout: Double { + get { return deliver.retryTimeInterval } + set { deliver.retryTimeInterval = newValue } + } + + /// Message queue size. default 1000 + /// + /// The new publishing messages of Qos1/Qos2 will be drop, if the queue is full + public var messageQueueSize: UInt { + get { return deliver.mqueueSize } + set { deliver.mqueueSize = newValue } + } + + /// In-flight window size. default 10 + public var inflightWindowSize: UInt { + get { return deliver.inflightWindowSize } + set { deliver.inflightWindowSize = newValue } + } + + /// Keep alive time interval + public var keepAlive: UInt16 = 60 + private var aliveTimer: CocoaMQTTTimer? + + /// Enable auto-reconnect mechanism + public var autoReconnect = false + + /// Reconnect time interval + /// + /// - note: This value will be increased with `autoReconnectTimeInterval *= 2` + /// if reconnect failed + public var autoReconnectTimeInterval: UInt16 = 1 // starts from 1 second + + /// Maximum auto reconnect time interval + /// + /// The timer starts from `autoReconnectTimeInterval` second and grows exponentially until this value + /// After that, it uses this value for subsequent requests. + public var maxAutoReconnectTimeInterval: UInt16 = 128 // 128 seconds + + /// 3.1.2.11 CONNECT Properties + public var connectProperties: MqttConnectProperties? + + /// 3.15.2.2 AUTH Properties + public var authProperties: MqttAuthProperties? + + /// Auto-reconnect backoff interval in seconds for the current reconnect cycle. + /// + /// This value is advanced for the next reconnect attempt while auto-reconnect is active, + /// and resets to `0` when auto-reconnect is inactive. + public private(set) var reconnectTimeInterval: UInt16 = 0 + + /// Number of reconnect attempts scheduled in the current auto-reconnect cycle. + /// + /// The value resets to `0` after a successful connection or expected disconnect. + public private(set) var reconnectAttemptCount: UInt = 0 + + private var autoReconnTimer: CocoaMQTTTimer? + private var is_internal_disconnected = false + + /// Console log level + public var logLevel: CocoaMQTTLoggerLevel { + get { + return CocoaMQTTLogger.logger.minLevel + } + set { + CocoaMQTTLogger.logger.minLevel = newValue + } + } + + /// Enable SSL connection + public var enableSSL: Bool { + get { return self.socket.enableSSL } + set { socket.enableSSL = newValue } + } + + /// + public var sslSettings: [String: NSObject]? { + get { return (self.socket as? CocoaMQTTSocket)?.sslSettings ?? nil } + set { (self.socket as? CocoaMQTTSocket)?.sslSettings = newValue } + } + + /// Allow self-signed ca certificate. + /// + /// Default is false + public var allowUntrustCACertificate: Bool { + get { return (self.socket as? CocoaMQTTSocket)?.allowUntrustCACertificate ?? false } + set { (self.socket as? CocoaMQTTSocket)?.allowUntrustCACertificate = newValue } + } + + /// The subscribed topics in current communication + public var subscriptions = ThreadSafeDictionary(label: "subscriptions") + + fileprivate var subscriptionsWaitingAck = ThreadSafeDictionary(label: "subscriptionsWaitingAck") + fileprivate var unsubscriptionsWaitingAck = ThreadSafeDictionary(label: "unsubscriptionsWaitingAck") + + /// Sending messages + fileprivate var sendingMessages: [UInt16: CocoaMQTT5Message] = [:] + + /// message id counter + private var _msgid: UInt16 = 0 + fileprivate var socket: CocoaMQTTSocketProtocol + fileprivate var reader: CocoaMQTTReader? + + // Closures + public var didConnectAck: (CocoaMQTT5, CocoaMQTTCONNACKReasonCode, MqttDecodeConnAck?) -> Void = { _, _, _ in } + public var didPublishMessage: (CocoaMQTT5, CocoaMQTT5Message, UInt16) -> Void = { _, _, _ in } + public var didPublishAck: (CocoaMQTT5, UInt16, MqttDecodePubAck?) -> Void = { _, _, _ in } + public var didPublishRec: (CocoaMQTT5, UInt16, MqttDecodePubRec?) -> Void = { _, _, _ in } + public var didReceiveMessage: (CocoaMQTT5, CocoaMQTT5Message, UInt16, MqttDecodePublish?) -> Void = { _, _, _, _ in } + public var didSubscribeTopics: (CocoaMQTT5, NSDictionary, [String], MqttDecodeSubAck?) -> Void = { _, _, _, _ in } + public var didUnsubscribeTopics: (CocoaMQTT5, [String], MqttDecodeUnsubAck?) -> Void = { _, _, _ in } + public var didPing: (CocoaMQTT5) -> Void = { _ in } + public var didReceivePong: (CocoaMQTT5) -> Void = { _ in } + public var didDisconnect: (CocoaMQTT5, Error?) -> Void = { _, _ in } + public var didDisconnectReasonCode: (CocoaMQTT5, CocoaMQTTDISCONNECTReasonCode) -> Void = { _, _ in } + public var didAuthReasonCode: (CocoaMQTT5, CocoaMQTTAUTHReasonCode) -> Void = { _, _ in } + public var didReceiveTrust: (CocoaMQTT5, SecTrust, @escaping (Bool) -> Swift.Void) -> Void = { _, _, _ in } + public var didCompletePublish: (CocoaMQTT5, UInt16, MqttDecodePubComp?) -> Void = { _, _, _ in } + public var didChangeState: (CocoaMQTT5, CocoaMQTTConnState) -> Void = { _, _ in } + public var didScheduleReconnect: (CocoaMQTT5, UInt, UInt16) -> Void = { _, _, _ in } + + /// Initial client object + /// + /// - Parameters: + /// - clientID: Client Identifier + /// - host: The MQTT broker host domain or IP address. Default is "localhost" + /// - port: The MQTT service port of host. Default is 1883 + public init(clientID: String, host: String = "localhost", port: UInt16 = 1883, socket: CocoaMQTTSocketProtocol = CocoaMQTTSocket()) { + self.clientID = clientID + self.host = host + self.port = port + self.socket = socket + super.init() + deliver.delegate = self + if let storage = CocoaMQTTStorage() { + storage.setMQTTVersion("5.0") + } else { + printWarning("Localstorage initial failed for key: \(clientID)") + } + } + + deinit { + aliveTimer?.suspend() + autoReconnTimer?.suspend() + + socket.setDelegate(nil, delegateQueue: nil) + socket.disconnect() + } + + fileprivate func send(_ frame: Frame, tag: Int = 0) { + printDebug("SEND: \(frame)") + let data = frame.bytes(version: version) + + socket.write(Data(bytes: data, count: data.count), withTimeout: 5, tag: tag) + } + + fileprivate func sendConnectFrame() { + + var connect = FrameConnect(clientID: clientID) + connect.keepAlive = keepAlive + connect.username = username + connect.password = password + connect.willMsg5 = willMessage + connect.cleansess = cleanSession + + connect.connectProperties = connectProperties + + send(connect) + reader!.start() + } + + fileprivate func nextMessageID() -> UInt16 { + if _msgid == UInt16.max { + _msgid = 0 + } + _msgid += 1 + return _msgid + } + + fileprivate func puback(_ type: FrameType, msgid: UInt16) { + switch type { + case .puback: + send(FramePubAck(msgid: msgid, reasonCode: CocoaMQTTPUBACKReasonCode.success)) + case .pubrec: + send(FramePubRec(msgid: msgid, reasonCode: CocoaMQTTPUBRECReasonCode.success)) + case .pubcomp: + send(FramePubComp(msgid: msgid, reasonCode: CocoaMQTTPUBCOMPReasonCode.success)) + default: return + } + } + + /// Connect to MQTT broker + /// + /// - Returns: + /// - Bool: It indicates whether successfully calling socket connect function. + /// Not yet established correct MQTT session + public func connect() -> Bool { + return connect(timeout: -1) + } + + /// Connect to MQTT broker + /// - Parameters: + /// - timeout: Connect timeout + /// - Returns: + /// - Bool: It indicates whether successfully calling socket connect function. + /// Not yet established correct MQTT session + public func connect(timeout: TimeInterval) -> Bool { + socket.setDelegate(self, delegateQueue: delegateQueue) + reader = CocoaMQTTReader(socket: socket, delegate: self) + do { + if timeout > 0 { + try socket.connect(toHost: self.host, onPort: self.port, withTimeout: timeout) + } else { + try socket.connect(toHost: self.host, onPort: self.port) + } + + delegateQueue.async { [weak self] in + guard let self = self else { return } + self.connState = .connecting + } + + return true + } catch let error as NSError { + printError("socket connect error: \(error.description)") + return false + } + } + + /// Send a DISCONNECT packet to the broker then close the connection + /// + /// - Note: Only can be called from outside. + /// This closes the connection expectedly, so auto-reconnect will not run. + public func disconnect() { + expected_disconnect(reasonCode: .normalDisconnection) + } + + public func disconnect(reasonCode: CocoaMQTTDISCONNECTReasonCode, userProperties: [String: String] ) { + expected_disconnect(reasonCode: reasonCode, userProperties: userProperties) + } + + /// Disconnect unexpectedly. + /// This keeps auto-reconnect behavior enabled. + func internal_disconnect() { + is_internal_disconnected = false + socket.disconnect() + } + + func internal_disconnect_withProperties(reasonCode: CocoaMQTTDISCONNECTReasonCode, userProperties: [String: String] ) { + expected_disconnect(reasonCode: reasonCode, userProperties: userProperties) + } + + private func expected_disconnect(reasonCode: CocoaMQTTDISCONNECTReasonCode, userProperties: [String: String]? = nil) { + is_internal_disconnected = true + var frameDisconnect = FrameDisconnect(disconnectReasonCode: reasonCode) + frameDisconnect.userProperties = userProperties ?? [:] + send(frameDisconnect, tag: -0xE0) + socket.disconnect() + } + /// Send a PING request to broker + public func ping() { + printDebug("ping") + send(FramePingReq(), tag: -0xC0) + + __delegate_queue { + self.delegate?.mqtt5DidPing(self) + self.didPing(self) + } + } + + /// Publish a message to broker + /// + /// - Parameters: + /// - topic: Topic Name. It can not contain '#', '+' wildcards + /// - string: Payload string + /// - qos: Qos. Default is Qos1 + /// - retained: Retained flag. Mark this message is a retained message. default is false + /// - properties: Publish Properties + /// - Returns: + /// - 0 will be returned, if the message's qos is qos0 + /// - 1-65535 will be returned, if the messages's qos is qos1/qos2 + /// - -1 will be returned, if the messages queue is full + @discardableResult + public func publish(_ topic: String, withString string: String, qos: CocoaMQTTQoS = .qos1, DUP: Bool = false, retained: Bool = false, properties: MqttPublishProperties) -> Int { + assert(!(DUP && qos == .qos0), "DUP=true with QoS0 is invalid for MQTT PUBLISH.") + guard !(DUP && qos == .qos0) else { + printError("Invalid PUBLISH flags: DUP=true requires QoS1 or QoS2.") + return -1 + } + let message = CocoaMQTT5Message(topic: topic, string: string, qos: qos, retained: retained) + return publish(message, DUP: DUP, retained: retained, properties: properties) + } + + /// Publish a message to broker + /// + /// - Parameters: + /// - message: Message + /// - properties: Publish Properties + @discardableResult + public func publish(_ message: CocoaMQTT5Message, DUP: Bool = false, retained: Bool = false, properties: MqttPublishProperties) -> Int { + assert(!(DUP && message.qos == .qos0), "DUP=true with QoS0 is invalid for MQTT PUBLISH.") + guard !(DUP && message.qos == .qos0) else { + printError("Invalid PUBLISH flags: DUP=true requires QoS1 or QoS2.") + return -1 + } + + let msgid: UInt16 + + if message.qos == .qos0 { + msgid = 0 + } else { + msgid = nextMessageID() + } + + printDebug("message.topic \(message.topic ) = message.payload \(message.payload)") + + var frame = FramePublish(topic: message.topic, + payload: message.payload, + qos: message.qos, + msgid: msgid) + frame.qos = message.qos + frame.dup = DUP + frame.publishProperties = properties + frame.retained = message.retained + + delegateQueue.async { + self.sendingMessages[msgid] = message + } + + // Push frame to deliver message queue + guard deliver.add(frame) else { + delegateQueue.async { + self.sendingMessages.removeValue(forKey: msgid) + } + return -1 + } + + return Int(msgid) + } + + /// Subscribe a `/` + /// + /// - Parameters: + /// - topic: Topic Name or Topic Filter + /// - qos: Qos. Default is qos1 + public func subscribe(_ topic: String, qos: CocoaMQTTQoS = .qos1) { + let filter = MqttSubscription(topic: topic, qos: qos) + return subscribe([filter]) + } + + /// Subscribe a lists of topics + /// + /// - Parameters: + /// - topics: A list of tuples presented by `(/, Qos)` + public func subscribe(_ topics: [MqttSubscription]) { + let msgid = nextMessageID() + let frame = FrameSubscribe(msgid: msgid, subscriptionList: topics) + send(frame, tag: Int(msgid)) + subscriptionsWaitingAck[msgid] = topics + } + + /// Subscribe a lists of topics + /// + /// - Parameters: + /// - topics: A list of tuples presented by `(/, Qos)` + /// - packetIdentifier: SUBSCRIBE Variable Header + /// - subscriptionIdentifier: Subscription Identifier + /// - userProperty: User Property + public func subscribe(_ topics: [MqttSubscription], packetIdentifier: UInt16? = nil, subscriptionIdentifier: UInt32? = nil, userProperty: [String: String] = [:]) { + let msgid = nextMessageID() + let frame = FrameSubscribe(msgid: msgid, subscriptionList: topics, packetIdentifier: packetIdentifier, subscriptionIdentifier: subscriptionIdentifier, userProperty: userProperty) + send(frame, tag: Int(msgid)) + subscriptionsWaitingAck[msgid] = topics + } + + /// Unsubscribe a Topic + /// + /// - Parameters: + /// - topic: A Topic Name or Topic Filter + public func unsubscribe(_ topic: String) { + let filter = MqttSubscription(topic: topic) + return unsubscribe([filter]) + } + + /// Unsubscribe a list of topics + /// + /// - Parameters: + /// - topics: A list of `/` + public func unsubscribe(_ topics: [MqttSubscription]) { + let msgid = nextMessageID() + let frame = FrameUnsubscribe(msgid: msgid, topics: topics) + unsubscriptionsWaitingAck[msgid] = topics + send(frame, tag: Int(msgid)) + } + + /// Authentication exchange + /// + /// + public func auth(reasonCode: CocoaMQTTAUTHReasonCode, authProperties: MqttAuthProperties) { + printDebug("auth") + let frame = FrameAuth(reasonCode: reasonCode, authProperties: authProperties) + + send(frame) + } +} + +// MARK: CocoaMQTTDeliverProtocol +extension CocoaMQTT5: CocoaMQTTDeliverProtocol { + + func deliver(_ deliver: CocoaMQTTDeliver, wantToSend frame: Frame) { + if let publish = frame as? FramePublish { + let msgid = publish.msgid + var message: CocoaMQTT5Message? + + if let sendingMessage = sendingMessages[msgid] { + message = sendingMessage + // printError("Want send \(frame), but not found in CocoaMQTT cache") + } else { + message = CocoaMQTT5Message(topic: publish.topic, payload: publish.payload()) + } + + send(publish, tag: Int(msgid)) + + if let message = message { + self.delegate?.mqtt5(self, didPublishMessage: message, id: msgid) + self.didPublishMessage(self, message, msgid) + } + } else if let pubrel = frame as? FramePubRel { + // -- Send PUBREL + send(pubrel, tag: Int(pubrel.msgid)) + } + } +} + +extension CocoaMQTT5 { + + func __delegate_queue(_ fun: @escaping () -> Void) { + delegateQueue.async { [weak self] in + guard self != nil else { return } + fun() + } + } + + private func prepareAutoReconnectAttempt() { + if reconnectTimeInterval == 0 { + reconnectTimeInterval = min(autoReconnectTimeInterval, maxAutoReconnectTimeInterval) + } + reconnectAttemptCount += 1 + } + + private func updateAutoReconnectIntervalForNextAttempt() { + let doubledInterval = UInt32(reconnectTimeInterval) * 2 + reconnectTimeInterval = UInt16(min(doubledInterval, UInt32(maxAutoReconnectTimeInterval))) + } + + private func resetAutoReconnectState() { + reconnectTimeInterval = 0 + reconnectAttemptCount = 0 + autoReconnTimer = nil + } + + private func notifyAutoReconnectScheduled() { + delegate?.mqtt5?(self, didScheduleReconnect: reconnectAttemptCount, after: reconnectTimeInterval) + didScheduleReconnect(self, reconnectAttemptCount, reconnectTimeInterval) + } +} + +// MARK: - CocoaMQTTSocketDelegate +extension CocoaMQTT5: CocoaMQTTSocketDelegate { + + public func socketConnected(_ socket: CocoaMQTTSocketProtocol) { + sendConnectFrame() + } + + public func socket(_ socket: CocoaMQTTSocketProtocol, + didReceive trust: SecTrust, + completionHandler: @escaping (Bool) -> Swift.Void) { + + printDebug("Call the SSL/TLS manually validating function") + + delegate?.mqtt5?(self, didReceive: trust, completionHandler: completionHandler) + didReceiveTrust(self, trust, completionHandler) + } + + public func socketUrlSession(_ socket: CocoaMQTTSocketProtocol, didReceiveTrust trust: SecTrust, didReceiveChallenge challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) { + printDebug("Call the SSL/TLS manually validating function - socketUrlSession") + + delegate?.mqtt5UrlSession?(self, didReceiveTrust: trust, didReceiveChallenge: challenge, completionHandler: completionHandler) + } + + // ? + public func socketDidSecure(_ sock: MGCDAsyncSocket) { + printDebug("Socket has successfully completed SSL/TLS negotiation") + sendConnectFrame() + } + + public func socket(_ socket: CocoaMQTTSocketProtocol, didWriteDataWithTag tag: Int) { + // XXX: How to print writed bytes?? + } + + public func socket(_ socket: CocoaMQTTSocketProtocol, didRead data: Data, withTag tag: Int) { + let etag = CocoaMQTTReadTag(rawValue: tag)! + var bytes = [UInt8]([0]) + switch etag { + case CocoaMQTTReadTag.header: + data.copyBytes(to: &bytes, count: 1) + reader!.headerReady(bytes[0]) + case CocoaMQTTReadTag.length: + data.copyBytes(to: &bytes, count: 1) + reader!.lengthReady(bytes[0]) + case CocoaMQTTReadTag.payload: + reader!.payloadReady(data) + } + } + + public func socketDidDisconnect(_ socket: CocoaMQTTSocketProtocol, withError err: Error?) { + // Clean up + socket.setDelegate(nil, delegateQueue: nil) + if is_internal_disconnected || !autoReconnect { + resetAutoReconnectState() + } + + connState = .disconnected + + delegate?.mqtt5DidDisconnect(self, withError: err) + didDisconnect(self, err) + + guard !is_internal_disconnected else { + is_internal_disconnected = false + return + } + + guard autoReconnect else { + resetAutoReconnectState() + return + } + + prepareAutoReconnectAttempt() + + // Start reconnector once socket error occurred + printInfo("Try reconnect to server after \(reconnectTimeInterval)s") + notifyAutoReconnectScheduled() + autoReconnTimer = CocoaMQTTTimer.after(Double(reconnectTimeInterval), name: "autoReconnTimer", { [weak self] in + guard let self = self else { return } + self.updateAutoReconnectIntervalForNextAttempt() + _ = self.connect() + }) + } +} + +// MARK: - CocoaMQTTReaderDelegate +extension CocoaMQTT5: CocoaMQTTReaderDelegate { + + func didReceive(_ reader: CocoaMQTTReader, disconnect: FrameDisconnect) { + let reasonCode = disconnect.receiveReasonCode ?? .normalDisconnection + delegate?.mqtt5(self, didReceiveDisconnectReasonCode: reasonCode) + didDisconnectReasonCode(self, reasonCode) + } + + func didReceive(_ reader: CocoaMQTTReader, auth: FrameAuth) { + let reasonCode = auth.receiveReasonCode ?? .success + delegate?.mqtt5(self, didReceiveAuthReasonCode: reasonCode) + didAuthReasonCode(self, reasonCode) + } + + func didReceive(_ reader: CocoaMQTTReader, connack: FrameConnAck) { + printDebug("RECV: \(connack)") + + if connack.reasonCode == .success { + + // Disable auto-reconnect + + resetAutoReconnectState() + is_internal_disconnected = false + + // Start keepalive timer + + let interval = Double(keepAlive <= 0 ? 60: keepAlive) + + aliveTimer = CocoaMQTTTimer.every(interval, name: "aliveTimer") { [weak self] in + guard let self = self else { return } + self.delegateQueue.async { + guard self.connState == .connected else { + self.aliveTimer = nil + return + } + self.ping() + } + } + + // recover session if enable + + if cleanSession { + deliver.cleanAll() + } else { + if let storage = CocoaMQTTStorage(by: clientID) { + deliver.recoverSessionBy(storage) + } else { + printWarning("Localstorage initial failed for key: \(clientID)") + } + } + + connState = .connected + + } else { + connState = .disconnected + expected_disconnect(reasonCode: .normalDisconnection) + } + + delegate?.mqtt5(self, didConnectAck: connack.reasonCode ?? CocoaMQTTCONNACKReasonCode.unspecifiedError, connAckData: connack.connackProperties ?? nil) + didConnectAck(self, connack.reasonCode ?? CocoaMQTTCONNACKReasonCode.unspecifiedError, connack.connackProperties ?? nil) + } + + func didReceive(_ reader: CocoaMQTTReader, publish: FramePublish) { + printDebug("RECV: \(publish)") + + let message = CocoaMQTT5Message(topic: publish.mqtt5Topic, payload: publish.payload5(), qos: publish.qos, retained: publish.retained) + + message.duplicated = publish.dup + message.contentType = publish.publishRecProperties?.contentType + + printInfo("Received message: \(message)") + delegate?.mqtt5(self, didReceiveMessage: message, id: publish.msgid, publishData: publish.publishRecProperties ?? nil) + didReceiveMessage(self, message, publish.msgid, publish.publishRecProperties ?? nil) + + if message.qos == .qos1 { + puback(FrameType.puback, msgid: publish.msgid) + } else if message.qos == .qos2 { + puback(FrameType.pubrec, msgid: publish.msgid) + } + } + + func didReceive(_ reader: CocoaMQTTReader, puback: FramePubAck) { + printDebug("RECV: \(puback)") + + deliver.ack(by: puback) + + delegate?.mqtt5(self, didPublishAck: puback.msgid, pubAckData: puback.pubAckProperties ?? nil) + didPublishAck(self, puback.msgid, puback.pubAckProperties ?? nil) + } + + func didReceive(_ reader: CocoaMQTTReader, pubrec: FramePubRec) { + printDebug("RECV: \(pubrec)") + + deliver.ack(by: pubrec) + + delegate?.mqtt5(self, didPublishRec: pubrec.msgid, pubRecData: pubrec.pubRecProperties ?? nil) + didPublishRec(self, pubrec.msgid, pubrec.pubRecProperties ?? nil) + } + + func didReceive(_ reader: CocoaMQTTReader, pubrel: FramePubRel) { + printDebug("RECV: \(pubrel)") + + puback(FrameType.pubcomp, msgid: pubrel.msgid) + } + + func didReceive(_ reader: CocoaMQTTReader, pubcomp: FramePubComp) { + printDebug("RECV: \(pubcomp)") + + deliver.ack(by: pubcomp) + + delegate?.mqtt5?(self, didPublishComplete: pubcomp.msgid, pubCompData: pubcomp.pubCompProperties ?? nil) + didCompletePublish(self, pubcomp.msgid, pubcomp.pubCompProperties ?? nil) + } + + func didReceive(_ reader: CocoaMQTTReader, suback: FrameSubAck) { + printDebug("RECV: \(suback)") + guard let topicsAndQos = subscriptionsWaitingAck.removeValue(forKey: suback.msgid) else { + printWarning("UNEXPECT SUBACK Received: \(suback)") + return + } + + guard topicsAndQos.count == suback.grantedQos.count else { + printWarning("UNEXPECT SUBACK Recivied: \(suback)") + return + } + + let success: NSMutableDictionary = NSMutableDictionary() + var failed = [String]() + for (idx, subscriptionList) in topicsAndQos.enumerated() { + if suback.grantedQos[idx] != .FAILURE { + subscriptions[subscriptionList.topic] = suback.grantedQos[idx] + success[subscriptionList.topic] = suback.grantedQos[idx].rawValue + } else { + failed.append(subscriptionList.topic) + } + } + + delegate?.mqtt5(self, didSubscribeTopics: success, failed: failed, subAckData: suback.subAckProperties ?? nil) + didSubscribeTopics(self, success, failed, suback.subAckProperties ?? nil) + } + + func didReceive(_ reader: CocoaMQTTReader, unsuback: FrameUnsubAck) { + printDebug("RECV: \(unsuback)") + + guard let topics = unsubscriptionsWaitingAck.removeValue(forKey: unsuback.msgid) else { + printWarning("UNEXPECT UNSUBACK Received: \(unsuback.msgid)") + return + } + // Remove local subscription + var removeTopics: [String] = [] + for t in topics { + removeTopics.append(t.topic) + subscriptions.removeValue(forKey: t.topic) + } + + delegate?.mqtt5(self, didUnsubscribeTopics: removeTopics, unsubAckData: unsuback.unSubAckProperties ?? nil) + didUnsubscribeTopics(self, removeTopics, unsuback.unSubAckProperties ?? nil) + } + + func didReceive(_ reader: CocoaMQTTReader, pingresp: FramePingResp) { + printDebug("RECV: \(pingresp)") + + delegate?.mqtt5DidReceivePong(self) + didReceivePong(self) + } +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTT5Message.swift b/Pods/CocoaMQTT/Source/CocoaMQTT5Message.swift new file mode 100644 index 0000000..121f7d0 --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTT5Message.swift @@ -0,0 +1,155 @@ +// +// CocoaMQTT5Message.swift +// CocoaMQTT +// +// Created by Created by liwei wang on 2021/11/10. +// Copyright (c) 2015 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT Message +public class CocoaMQTT5Message: NSObject { + + public var qos = CocoaMQTTQoS.qos1 + + public var topic: String + + public var payload: [UInt8] + + public var retained = false + + /// The `duplicated` property show that this message maybe has be received before + /// + /// - note: Readonly property + public var duplicated = false + + /// 3.1.3.2.3 Payload Format Indicator + public var isUTF8EncodedData: Bool = true + /// 3.1.3.2.2 Will Delay Interval + public var willDelayInterval: UInt32? = 0 + /// 3.1.3.2.4 Message Expiry Interval + public var willExpiryInterval: UInt32? = .max + /// 3.1.3.2.5 Content Type + public var contentType: String? + /// 3.1.3.2.6 Response Topic + public var willResponseTopic: String? + /// 3.1.3.2.7 Correlation Data + public var willCorrelationData: [UInt8]? + /// 3.1.3.2.8 User Property + public var willUserProperty: [String: String]? + + /// Return the payload as a utf8 string if possible + /// + /// It will return nil if the payload is not a valid utf8 string + public var string: String? { + NSString(bytes: payload, length: payload.count, encoding: String.Encoding.utf8.rawValue) as String? + } + + public var properties: [UInt8] { + + var properties = [UInt8]() + var retVal = [UInt8]() + + /// 3.1.3.2.2 Property Length + if let willDelayInterval = self.willDelayInterval { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.willDelayInterval.rawValue, value: willDelayInterval.byteArrayLittleEndian) + } + + /// 3.1.3.2.4 Message Expiry Interval + if let willExpiryInterval = self.willExpiryInterval { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.willExpiryInterval.rawValue, value: willExpiryInterval.byteArrayLittleEndian) + } + + /// 3.1.3.2.3 Payload Format Indicator + if isUTF8EncodedData { + properties += [1, 1] + } else { + properties += [1, 0] + } + + /// 3.1.3.2.5 Content Type + if var contentType = self.contentType { + if isUTF8EncodedData { + contentType = contentType.stringUTF8 + } + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.contentType.rawValue, value: contentType.bytesWithLength) + } + + /// 3.1.3.2.6 Response Topic + if var willResponseTopic = self.willResponseTopic { + if isUTF8EncodedData { + willResponseTopic = willResponseTopic.stringUTF8 + } + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.responseTopic.rawValue, value: willResponseTopic.bytesWithLength) + } + + /// 3.1.3.2.7 Correlation Data + if let willCorrelationData = self.willCorrelationData { + let buff = UInt16(willCorrelationData.count).hlBytes + willCorrelationData + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.correlationData.rawValue, value: buff) + } + + /// 3.1.3.2.8 User Property + if let willUserProperty = self.willUserProperty { + willUserProperty.forEach { element in + properties.append(UInt8(CocoaMQTTPropertyName.userProperty.rawValue)) + if isUTF8EncodedData { + let key = element.key.stringUTF8 + properties += key .bytesWithLength + let value = element.value.stringUTF8 + properties += value.bytesWithLength + } else { + properties += element.key.bytesWithLength + properties += element.value.bytesWithLength + } + } + } + + retVal += properties + return retVal + } + + public init(topic: String, string: String, qos: CocoaMQTTQoS = .qos1, retained: Bool = false) { + + self.topic = topic + self.payload = [UInt8](string.utf8) + self.qos = qos + self.retained = retained + } + + public init(topic: String, payload: [UInt8], qos: CocoaMQTTQoS = .qos1, retained: Bool = false) { + + self.topic = topic + self.payload = payload + self.qos = qos + self.retained = retained + } + + public init(topic: String, payload: [String: Any], qos: CocoaMQTTQoS = .qos1, retained: Bool = false) throws { + let data = try JSONSerialization.data(withJSONObject: payload) + self.topic = topic + self.payload = [UInt8](data) + self.qos = qos + self.retained = retained + } +} + +extension CocoaMQTT5Message { + + public override var description: String { + return "CocoaMQTT5Message(topic: \(topic), qos: \(qos), payload: \(payload.summary))" + } +} + +// For test +extension CocoaMQTT5Message { + + var t_pub_frame: FramePublish { + var frame = FramePublish(topic: topic, payload: payload, qos: qos, msgid: 0) + frame.retained = retained + frame.dup = duplicated + return frame + } + +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTDeliver.swift b/Pods/CocoaMQTT/Source/CocoaMQTTDeliver.swift new file mode 100644 index 0000000..d693fe4 --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTDeliver.swift @@ -0,0 +1,353 @@ +// +// CocoaMQTTDeliver.swift +// CocoaMQTT +// +// Created by HJianBo on 2019/5/2. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation +import Dispatch + +protocol CocoaMQTTDeliverProtocol: AnyObject { + + var delegateQueue: DispatchQueue { get set } + + func deliver(_ deliver: CocoaMQTTDeliver, wantToSend frame: Frame) +} + +private struct InflightFrame { + + /// The infligth frame maybe a `FramePublish` or `FramePubRel` + var frame: Frame + + /// Monotonic time (Dispatch uptime) at which this frame should be retried next. + var nextRetryAtUptimeNs: UInt64 + +} + +extension Array where Element == InflightFrame { + + func filterMap(isIncluded: (Element) -> (Bool, Element)) -> [Element] { + var tmp = [Element]() + for e in self { + let res = isIncluded(e) + if res.0 { + tmp.append(res.1) + } + } + return tmp + } +} + +// CocoaMQTTDeliver +class CocoaMQTTDeliver: NSObject { + + /// The dispatch queue is used by delivering frames in serially + private var deliverQueue = DispatchQueue.init(label: "deliver.cocoamqtt.emqx", qos: .default) + + weak var delegate: CocoaMQTTDeliverProtocol? + + fileprivate var inflight = [InflightFrame]() + + fileprivate var mqueue = [Frame]() + + var mqueueSize: UInt = 1000 + + var inflightWindowSize: UInt = 10 + + /// Retry time interval millisecond + var retryTimeInterval: Double = 5000 + + private var awaitingTimer: CocoaMQTTTimer? + + var isQueueEmpty: Bool { mqueue.isEmpty } + var isQueueFull: Bool { mqueue.count >= mqueueSize } + var isInflightFull: Bool { inflight.count >= inflightWindowSize } + var isInflightEmpty: Bool { inflight.isEmpty } + + var storage: CocoaMQTTStorage? + + func recoverSessionBy(_ storage: CocoaMQTTStorage) { + let frames = storage.readAll() + // Sync to push the frame to mqueue for avoiding overcommit + deliverQueue.sync { + self.storage = storage + for f in frames { + mqueue.append(f) + } + if !frames.isEmpty { + printInfo("Deliver recover \(frames.count) msgs") + printDebug("Recover message \(frames)") + } + } + + guard !frames.isEmpty else { + return + } + + deliverQueue.async { [weak self] in + guard let self = self else { return } + self.tryTransport() + } + } + + /// Add a FramePublish to the message queue to wait for sending + /// + /// return false means the frame is rejected because of the buffer is full + func add(_ frame: FramePublish) -> Bool { + guard !isQueueFull else { + printError("Sending buffer is full, frame \(frame) has been rejected to add.") + return false + } + + // Sync to push the frame to mqueue for avoiding overcommit + deliverQueue.sync { + mqueue.append(frame) + _ = storage?.write(frame) + } + + deliverQueue.async { [weak self] in + guard let self = self else { return } + self.tryTransport() + } + + return true + } + + /// Acknowledge a PUBLISH/PUBREL by msgid + func ack(by frame: Frame) { + let msgid: UInt16 + if let puback = frame as? FramePubAck { + msgid = puback.msgid + } else if let pubrec = frame as? FramePubRec { + msgid = pubrec.msgid + } else if let pubcom = frame as? FramePubComp { + msgid = pubcom.msgid + } else { + return + } + + let ackType = frame.type + let shouldRemoveFromStorage = frame is FramePubAck || frame is FramePubComp + let ackFrameDescription = String(describing: frame) + + deliverQueue.async { [weak self] in + guard let self = self else { return } + let acked = self.ackInflightFrame(withMsgid: msgid, type: ackType) + if acked.count == 0 { + printWarning("Acknowledge by \(ackFrameDescription), but not found in inflight window") + } else { + // TODO: ACK DONT DELETE PUBREL + for f in acked where shouldRemoveFromStorage { + self.storage?.remove(f) + } + printDebug("Acknowledge frame id \(msgid) success, acked: \(acked)") + self.tryTransport() + } + } + } + + /// Clean Inflight content to prevent message blocked, when next connection established + /// + /// !!Warning: it's a temporary method for hotfix #221 + func cleanAll() { + deliverQueue.sync { [weak self] in + guard let self = self else { return } + self.mqueue.removeAll() + self.inflight.removeAll() + } + } +} + +// MARK: Private Funcs +extension CocoaMQTTDeliver { + + // try transport a frame from mqueue to inflight + private func tryTransport() { + if isQueueEmpty || isInflightFull { return } + + // take out the earliest frame + if mqueue.isEmpty { return } + let frame = mqueue.remove(at: 0) + + deliver(frame) + + // keep trying after a transport + self.tryTransport() + } + + /// Try to deliver a frame + private func deliver(_ frame: Frame) { + if frame.qos == .qos0 { + // Send Qos0 message, whatever the in-flight queue is full + // TODO: A retrict deliver mode is need? + sendfun(frame) + } else { + + sendfun(frame) + let nowUptimeNs = DispatchTime.now().uptimeNanoseconds + inflight.append(InflightFrame(frame: frame, nextRetryAtUptimeNs: nextRetryDeadline(from: nowUptimeNs))) + + // Start a retry timer for resending it if it not receive PUBACK or PUBREC + if awaitingTimer == nil { + awaitingTimer = CocoaMQTTTimer.every(retryTimeInterval / 1000.0, name: "awaitingTimer") { [weak self] in + guard let self = self else { return } + self.deliverQueue.async { + self.redeliver() + } + } + } + } + } + + /// Attempt to redeliver in-flight messages + private func redeliver(nowUptimeNs: UInt64 = DispatchTime.now().uptimeNanoseconds) { + if isInflightEmpty { + // Revoke the awaiting timer + awaitingTimer = nil + return + } + for (idx, frame) in inflight.enumerated() where nowUptimeNs >= frame.nextRetryAtUptimeNs { + var duplicatedFrame = frame + duplicatedFrame.frame.dup = true + duplicatedFrame.nextRetryAtUptimeNs = nextRetryDeadline(after: frame.nextRetryAtUptimeNs, nowUptimeNs: nowUptimeNs) + + inflight[idx] = duplicatedFrame + + printInfo("Re-delivery frame \(duplicatedFrame.frame)") + sendfun(duplicatedFrame.frame) + } + } + + private func retryIntervalNanoseconds() -> UInt64 { + let intervalNs = retryTimeInterval * 1_000_000 + guard intervalNs.isFinite, intervalNs > 0 else { + return 1 + } + if intervalNs >= Double(UInt64.max) { + return UInt64.max + } + return UInt64(intervalNs.rounded()) + } + + private func nextRetryDeadline(from nowUptimeNs: UInt64) -> UInt64 { + let (nextDeadline, overflow) = nowUptimeNs.addingReportingOverflow(retryIntervalNanoseconds()) + return overflow ? UInt64.max : nextDeadline + } + + private func nextRetryDeadline(after currentDeadline: UInt64, nowUptimeNs: UInt64) -> UInt64 { + let intervalNs = retryIntervalNanoseconds() + guard nowUptimeNs >= currentDeadline else { + return currentDeadline + } + + let missedIntervals = ((nowUptimeNs - currentDeadline) / intervalNs) + 1 + let (advance, multiplyOverflow) = intervalNs.multipliedReportingOverflow(by: missedIntervals) + if multiplyOverflow { + return UInt64.max + } + let (nextDeadline, addOverflow) = currentDeadline.addingReportingOverflow(advance) + return addOverflow ? UInt64.max : nextDeadline + } + + @discardableResult + private func ackInflightFrame(withMsgid msgid: UInt16, type: FrameType) -> [Frame] { + var ackedFrames = [Frame]() + inflight = inflight.filterMap { frame in + + // -- ACK for PUBLISH + if let publish = frame.frame as? FramePublish, + publish.msgid == msgid { + + if publish.qos == .qos2 && type == .pubrec { // -- Replace PUBLISH with PUBREL + let pubrel = FramePubRel(msgid: publish.msgid) + + var nframe = frame + nframe.frame = pubrel + nframe.nextRetryAtUptimeNs = nextRetryDeadline(from: DispatchTime.now().uptimeNanoseconds) + + _ = storage?.write(pubrel) + sendfun(pubrel) + + ackedFrames.append(publish) + return (true, nframe) + } else if publish.qos == .qos1 && type == .puback { + ackedFrames.append(publish) + return (false, frame) + } + } + + // -- ACK for PUBREL + if let pubrel = frame.frame as? FramePubRel, + pubrel.msgid == msgid && type == .pubcomp { + + ackedFrames.append(pubrel) + return (false, frame) + } + return (true, frame) + } + + return ackedFrames + } + + private func sendfun(_ frame: Frame) { + guard let delegate = self.delegate else { + printError("The deliver delegate is nil!!! the frame will be drop: \(frame)") + return + } + + if frame.qos == .qos0 { + if let p = frame as? FramePublish { storage?.remove(p) } + } + + delegate.delegateQueue.async { + delegate.deliver(self, wantToSend: frame) + } + } +} + +// For tests +extension CocoaMQTTDeliver { + + func t_inflightFrames() -> [Frame] { + var frames = [Frame]() + for f in inflight { + frames.append(f.frame) + } + return frames + } + + func t_queuedFrames() -> [Frame] { + return mqueue + } + + @discardableResult + func t_setInflightNextRetryTime(_ nextRetryAtUptimeNs: UInt64, forMsgid msgid: UInt16) -> Bool { + return deliverQueue.sync { + for idx in inflight.indices { + if let publish = inflight[idx].frame as? FramePublish, publish.msgid == msgid { + inflight[idx].nextRetryAtUptimeNs = nextRetryAtUptimeNs + return true + } + if let pubrel = inflight[idx].frame as? FramePubRel, pubrel.msgid == msgid { + inflight[idx].nextRetryAtUptimeNs = nextRetryAtUptimeNs + return true + } + } + return false + } + } + + func t_retryIntervalNanoseconds() -> UInt64 { + return deliverQueue.sync { + retryIntervalNanoseconds() + } + } + + func t_redeliver(atUptimeNanoseconds uptimeNs: UInt64) { + deliverQueue.sync { + self.redeliver(nowUptimeNs: uptimeNs) + } + } +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTLogger.swift b/Pods/CocoaMQTT/Source/CocoaMQTTLogger.swift new file mode 100644 index 0000000..3408782 --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTLogger.swift @@ -0,0 +1,71 @@ +// +// CocoaMQTTLogger.swift +// CocoaMQTT +// +// Created by HJianBo on 2019/5/2. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +// Convenience functions +func printDebug(_ message: String) { + CocoaMQTTLogger.logger.debug(message) +} + +func printInfo(_ message: String) { + CocoaMQTTLogger.logger.info(message) +} + +func printWarning(_ message: String) { + CocoaMQTTLogger.logger.warning(message) +} + +func printError(_ message: String) { + CocoaMQTTLogger.logger.error(message) +} + +// Enum log levels +public enum CocoaMQTTLoggerLevel: Int { + case debug = 0, info, warning, error, off +} + +open class CocoaMQTTLogger: NSObject { + + // Singleton + // Keep mutable global logger for backward compatibility. + // Accesses are intentionally marked as unsafe-isolated for Swift 6 readiness. + #if swift(>=6) + public nonisolated(unsafe) static var logger = CocoaMQTTLogger() + #else + public static var logger = CocoaMQTTLogger() + #endif + public override init() { super.init() } + + // min level + @ConcurrentAtomic(wrappedValue: .warning, label: "CocoaMQTTLogger.minLevel") + public var minLevel: CocoaMQTTLoggerLevel + + // logs + open func log(level: CocoaMQTTLoggerLevel, message: String) { + guard level.rawValue >= minLevel.rawValue else { return } + print("CocoaMQTT(\(level)): \(message)") + } + + func debug(_ message: String) { + log(level: .debug, message: message) + } + + func info(_ message: String) { + log(level: .info, message: message) + } + + func warning(_ message: String) { + log(level: .warning, message: message) + } + + func error(_ message: String) { + log(level: .error, message: message) + } + +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTMessage.swift b/Pods/CocoaMQTT/Source/CocoaMQTTMessage.swift new file mode 100644 index 0000000..b17a972 --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTMessage.swift @@ -0,0 +1,66 @@ +// +// CocoaMQTTMessage.swift +// CocoaMQTT +// +// Created by Feng Lee on 14/8/3. +// Copyright (c) 2015 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT Message +public class CocoaMQTTMessage: NSObject { + + public var qos = CocoaMQTTQoS.qos1 + + public var topic: String + + public var payload: [UInt8] + + public var retained = false + + /// The `duplicated` property show that this message maybe has be received before + /// + /// - note: Readonly property + public var duplicated = false + + /// Return the payload as a utf8 string if possible + /// + /// It will return nil if the payload is not a valid utf8 string + public var string: String? { + NSString(bytes: payload, length: payload.count, encoding: String.Encoding.utf8.rawValue) as String? + } + + public init(topic: String, string: String, qos: CocoaMQTTQoS = .qos1, retained: Bool = false) { + self.topic = topic + self.payload = [UInt8](string.utf8) + self.qos = qos + self.retained = retained + } + + public init(topic: String, payload: [UInt8], qos: CocoaMQTTQoS = .qos1, retained: Bool = false) { + self.topic = topic + self.payload = payload + self.qos = qos + self.retained = retained + } +} + +extension CocoaMQTTMessage { + + public override var description: String { + return "CocoaMQTTMessage(topic: \(topic), qos: \(qos), payload: \(payload.summary))" + } +} + +// For test +extension CocoaMQTTMessage { + + var t_pub_frame: FramePublish { + var frame = FramePublish(topic: topic, payload: payload, qos: qos, msgid: 0) + frame.retained = retained + frame.dup = duplicated + return frame + } + +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTProperty.swift b/Pods/CocoaMQTT/Source/CocoaMQTTProperty.swift new file mode 100644 index 0000000..474d263 --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTProperty.swift @@ -0,0 +1,189 @@ +// +// CocoaMQTTPropertyType.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/7/6. +// + +import Foundation + +public enum CocoaMQTTPropertyName: UInt8 { + case payloadFormatIndicator = 0x01 + case willExpiryInterval = 0x02 + case contentType = 0x03 + case responseTopic = 0x08 + case correlationData = 0x09 + case subscriptionIdentifier = 0x0B + case sessionExpiryInterval = 0x11 + case assignedClientIdentifier = 0x12 + case serverKeepAlive = 0x13 + case authenticationMethod = 0x15 + case authenticationData = 0x16 + case requestProblemInformation = 0x17 + case willDelayInterval = 0x18 + case requestResponseInformation = 0x19 + case responseInformation = 0x1A + case serverReference = 0x1C + case reasonString = 0x1F + case receiveMaximum = 0x21 + case topicAliasMaximum = 0x22 + case topicAlias = 0x23 + case maximumQoS = 0x24 + case retainAvailable = 0x25 + case userProperty = 0x26 + case maximumPacketSize = 0x27 + case wildcardSubscriptionAvailable = 0x28 + case subscriptionIdentifiersAvailable = 0x29 + case sharedSubscriptionAvailable = 0x2A +} + +public enum formatInt: Int { + case formatUint8 = 0x11 + case formatUint16 = 0x12 + case formatUint32 = 0x14 + case formatSint8 = 0x21 + case formatSint16 = 0x22 + case formatSint32 = 0x24 +} + +func getMQTTPropertyData(type: UInt8, value: [UInt8]) -> [UInt8] { + var properties = [UInt8]() + properties.append(UInt8(type)) + properties += value + return properties +} + +func getMQTTPropertyLength(type: UInt8, value: [UInt8]) -> [UInt8] { + var properties = [UInt8]() + properties.append(UInt8(type)) + properties += value + return properties +} + +func integerCompute(data: [UInt8], formatType: Int, offset: Int) -> (res: Int, newOffset: Int)? { + + switch formatType { + case formatInt.formatUint8.rawValue: + return (unsignedByteToInt(data: data[offset]), offset + 1) + case formatInt.formatUint16.rawValue: + return (unsignedBytesToInt(data0: data[offset], data1: data[offset + 1]), offset + 2) + case formatInt.formatUint32.rawValue: + return (unsignedBytesToInt(data0: data[offset], data1: data[offset + 1], data2: data[offset + 2], data3: data[offset + 3]), offset + 4) + case formatInt.formatSint8.rawValue: + return (unsignedToSigned(unsign: unsignedByteToInt(data: data[offset]), size: 8), offset + 1) + case formatInt.formatSint16.rawValue: + return (unsignedToSigned(unsign: unsignedBytesToInt(data0: data[offset], data1: data[offset + 1]), size: 16), offset + 2) + case formatInt.formatSint32.rawValue: + return (unsignedToSigned(unsign: unsignedBytesToInt(data0: data[offset], data1: data[offset + 1], data2: data[offset + 2], data3: data[offset + 3]), size: 32), offset + 4) + default: + printDebug("integerCompute nothing") + } + + return nil +} + +func unsignedByteToInt(data: UInt8) -> (Int) { + return (Int)(data & 0xFF) +} + +func unsignedBytesToInt(data0: UInt8, data1: UInt8) -> (Int) { + return (unsignedByteToInt(data: data0) << 8) + unsignedByteToInt(data: data1) +} + +func unsignedBytesToInt(data0: UInt8, data1: UInt8, data2: UInt8, data3: UInt8) -> (Int) { + return unsignedByteToInt(data: data3) + (unsignedByteToInt(data: data2) << 8) + (unsignedByteToInt(data: data1) << 16) + (unsignedByteToInt(data: data0) << 24) +} + +func unsignedToSigned(unsign: NSInteger, size: NSInteger) -> (Int) { + var res = unsign + if (res & (1 << size-1)) != 0 { + res = -1 * ((1 << size-1) - (res & ((1 << size-1) - 1))) + } + return res +} + +func unsignedByteToString(data: [UInt8], offset: Int) -> (resStr: String, newOffset: Int)? { + var newOffset = offset + + if offset + 1 > data.count { + return nil + } + + var length = 0 + let comRes = integerCompute(data: data, formatType: formatInt.formatUint16.rawValue, offset: newOffset) + length = comRes!.res + newOffset = comRes!.newOffset + + var stringData = Data() + for _ in 0 ..< length { + stringData.append(data[newOffset]) + newOffset += 1 + } + guard let res = String(data: stringData, encoding: .utf8) else { + return nil + } + + return (res, newOffset) +} + +func unsignedByteToBinary(data: [UInt8], offset: Int) -> (resStr: [UInt8], newOffset: Int)? { + var newOffset = offset + + if offset + 1 > data.count { + return nil + } + + var length = 0 + let comRes = integerCompute(data: data, formatType: formatInt.formatUint16.rawValue, offset: newOffset) + length = comRes!.res + newOffset = comRes!.newOffset + + var res = [UInt8]() + for _ in 0 ..< length { + res.append(data[newOffset]) + newOffset += 1 + } + + return (res, newOffset) +} + +// 1.5.5 Variable Byte Integer +// The Variable Byte Integer is encoded using an encoding scheme which uses a single byte for values up to 127. Larger values are handled as follows. The least significant seven bits of each byte encode the data, and the most significant bit is used to indicate whether there are bytes following in the representation. Thus, each byte encodes 128 values and a "continuation bit". The maximum number of bytes in the Variable Byte Integer field is four. The encoded value MUST use the minimum number of bytes necessary to represent the value [MQTT-1.5.5-1]. This is shown in Table 1‑1 Size of Variable Byte Integer. +func decodeVariableByteInteger(data: [UInt8], offset: Int) -> (res: Int, newOffset: Int) { + var newOffset = offset + var count = 0 + var res: Int = 0 + while newOffset < data.count { + let newValue = Int(data[newOffset] & 0x7f) << count + res += newValue + if (data[newOffset] & 0x80) == 0 || count >= 21 { + newOffset += 1 + break + } + newOffset += 1 + count += 7 + } + return (res, newOffset) +} + +func beVariableByteInteger(length: Int) -> [UInt8] { + var res = [UInt8]() + var tmpLen: Int = length + repeat { + var d: UInt8 = UInt8(tmpLen % 128) + tmpLen /= 128 + if tmpLen > 0 { + d |= 0x80 + } + res.append(d) + } while(tmpLen > 0) + + return res +} + +func beVariableByteInteger(_ data: UInt32) -> [UInt8]? { + if data > 0x0fffffff { + return nil + } + return beVariableByteInteger(length: Int(data)) +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTReader.swift b/Pods/CocoaMQTT/Source/CocoaMQTTReader.swift new file mode 100644 index 0000000..b075ffc --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTReader.swift @@ -0,0 +1,220 @@ +// +// CocoaMQTTReader.swift +// CocoaMQTT +// +// Created by HJianBo on 2019/5/21. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// Read tag for AsyncSocket +enum CocoaMQTTReadTag: Int { + case header = 0 + case length + case payload +} + +/// +protocol CocoaMQTTReaderDelegate: AnyObject { + + func didReceive(_ reader: CocoaMQTTReader, connack: FrameConnAck) + + func didReceive(_ reader: CocoaMQTTReader, publish: FramePublish) + + func didReceive(_ reader: CocoaMQTTReader, puback: FramePubAck) + + func didReceive(_ reader: CocoaMQTTReader, pubrec: FramePubRec) + + func didReceive(_ reader: CocoaMQTTReader, pubrel: FramePubRel) + + func didReceive(_ reader: CocoaMQTTReader, pubcomp: FramePubComp) + + func didReceive(_ reader: CocoaMQTTReader, suback: FrameSubAck) + + func didReceive(_ reader: CocoaMQTTReader, unsuback: FrameUnsubAck) + + func didReceive(_ reader: CocoaMQTTReader, pingresp: FramePingResp) + + func didReceive(_ reader: CocoaMQTTReader, disconnect: FrameDisconnect) + + func didReceive(_ reader: CocoaMQTTReader, auth: FrameAuth) +} + +class CocoaMQTTReader { + + private var socket: CocoaMQTTSocketProtocol + + private weak var delegate: CocoaMQTTReaderDelegate? + + private let timeout: TimeInterval = 30_000 + + /* -- Reader states -- */ + private var header: UInt8 = 0 + private var length: UInt = 0 + private var data: [UInt8] = [] + private var multiply = 1 + /* -- Reader states -- */ + + init(socket: CocoaMQTTSocketProtocol, delegate: CocoaMQTTReaderDelegate?) { + self.socket = socket + self.delegate = delegate + } + + func start() { + readHeader() + } + + func headerReady(_ header: UInt8) { + self.header = header + readLength() + } + + func lengthReady(_ byte: UInt8) { + length += (UInt)((Int)(byte & 127) * multiply) + // done + if byte & 0x80 == 0 { + if length == 0 { + frameReady() + } else { + readPayload() + } + // more + } else { + let result = multiply.multipliedReportingOverflow(by: 128) + if !result.overflow { + multiply = result.partialValue + } else { + reset() + } + readLength() + } + } + + func payloadReady(_ data: Data) { + self.data = [UInt8](repeating: 0, count: data.count) + data.copyBytes(to: &(self.data), count: data.count) + frameReady() + } + + private func readHeader() { + reset() + socket.readData(toLength: 1, withTimeout: -1, tag: CocoaMQTTReadTag.header.rawValue) + } + + private func readLength() { + socket.readData(toLength: 1, withTimeout: timeout, tag: CocoaMQTTReadTag.length.rawValue) + } + + private func readPayload() { + socket.readData(toLength: length, withTimeout: timeout, tag: CocoaMQTTReadTag.payload.rawValue) + } + + private func frameReady() { + + guard let frameType = FrameType(rawValue: UInt8(header & 0xF0)) else { + protocolError("Received unknown frame type, header: \(header), data:\(data)") + return + } + + // XXX: stupid implement + + switch frameType { + case .connack: + guard let connack = FrameConnAck(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, connack: connack) + case .publish: + guard let publish = FramePublish(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, publish: publish) + case .puback: + guard let puback = FramePubAck(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, puback: puback) + case .pubrec: + guard let pubrec = FramePubRec(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, pubrec: pubrec) + case .pubrel: + guard let pubrel = FramePubRel(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, pubrel: pubrel) + case .pubcomp: + guard let pubcomp = FramePubComp(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, pubcomp: pubcomp) + case .suback: + guard let frame = FrameSubAck(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, suback: frame) + case .unsuback: + guard let frame = FrameUnsubAck(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, unsuback: frame) + case .pingresp: + guard let frame = FramePingResp(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, pingresp: frame) + case .disconnect: + guard isMQTT5ProtocolVersion() else { + protocolError("Reader received MQTT5-only frame \(frameType) in non-MQTT5 mode, data: \(data)") + return + } + guard let frame = FrameDisconnect(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, disconnect: frame) + case .auth: + guard isMQTT5ProtocolVersion() else { + protocolError("Reader received MQTT5-only frame \(frameType) in non-MQTT5 mode, data: \(data)") + return + } + guard let frame = FrameAuth(packetFixedHeaderType: header, bytes: data) else { + protocolError("Reader parse \(frameType) failed, data: \(data)") + return + } + delegate?.didReceive(self, auth: frame) + default: + protocolError("Received unsupported frame type \(frameType), data: \(data)") + return + } + + readHeader() + } + + private func protocolError(_ reason: String) { + printError(reason) + socket.disconnect() + } + + private func isMQTT5ProtocolVersion() -> Bool { + return CocoaMQTTStorage()?.queryMQTTVersion() == "5.0" + } + + private func reset() { + length = 0 + multiply = 1 + header = 0 + data = [] + } +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTReasonCode.swift b/Pods/CocoaMQTT/Source/CocoaMQTTReasonCode.swift new file mode 100644 index 0000000..e677e3e --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTReasonCode.swift @@ -0,0 +1,141 @@ +// +// CocoaMQTTReasonCode.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/7/4. +// + +import Foundation + +@objc public enum CocoaMQTTAUTHReasonCode: UInt8 { + case success = 0x00 + case continueAuthentication = 0x18 + case ReAuthenticate = 0x19 +} + +@objc public enum CocoaMQTTCONNACKReasonCode: UInt8 { + case success = 0x00 + case unspecifiedError = 0x80 + case malformedPacket = 0x81 + case protocolError = 0x82 + case implementationSpecificError = 0x83 + case unsupportedProtocolVersion = 0x84 + case clientIdentifierNotValid = 0x85 + case badUsernameOrPassword = 0x86 + case notAuthorized = 0x87 + case serverUnavailable = 0x88 + case serverBusy = 0x89 + case banned = 0x8A + case badAuthenticationMethod = 0x8C + case topicNameInvalid = 0x90 + case packetTooLarge = 0x95 + case quotaExceeded = 0x97 + case payloadFormatInvalid = 0x99 + case retainNotSupported = 0x9A + case qosNotSupported = 0x9B + case useAnotherServer = 0x9C + case serverMoved = 0x9D + case connectionRateExceeded = 0x9F +} + +@objc public enum CocoaMQTTDISCONNECTReasonCode: UInt8 { + case normalDisconnection = 0x00 + case disconnectWithWillMessage = 0x04 + case unspecifiedError = 0x80 + case malformedPacket = 0x81 + case protocolError = 0x82 + case implementationSpecificError = 0x83 + case notAuthorized = 0x87 + case serverBusy = 0x89 + case serverShuttingDown = 0x8B + case keepAliveTimeout = 0x8D + case sessionTakenOver = 0x8E + case topicFilterInvalid = 0x8F + case topicNameInvalid = 0x90 + case receiveMaximumExceeded = 0x93 + case topicAliasInvalid = 0x94 + case packetTooLarge = 0x95 + case messageRateTooHigh = 0x96 + case quotaExceeded = 0x97 + case administrativeAction = 0x98 + case payloadFormatInvalid = 0x99 + case retainNotSupported = 0x9A + case qosNotSupported = 0x9B + case useAnotherServer = 0x9C + case serverMoved = 0x9D + case sharedSubscriptionsNotSupported = 0x9E + case connectionRateExceeded = 0x9F + case maximumConnectTime = 0xA0 + case subscriptionIdentifiersNotSupported = 0xA1 + case wildcardSubscriptionsNotSupported = 0xA2 +} + +@objc public enum CocoaMQTTPUBACKReasonCode: UInt8 { + case success = 0x00 + case noMatchingSubscribers = 0x10 + case unspecifiedError = 0x80 + case implementationSpecificError = 0x83 + case notAuthorized = 0x87 + case topicNameInvalid = 0x90 + case packetIdentifierInUse = 0x91 + case quotaExceeded = 0x97 + case payloadFormatInvalid = 0x99 +} + +@objc public enum CocoaMQTTPUBCOMPReasonCode: UInt8 { + case success = 0x00 + case packetIdentifierNotFound = 0x92 +} + +@objc public enum CocoaMQTTPUBRECReasonCode: UInt8 { + case success = 0x00 + case noMatchingSubscribers = 0x10 + case unspecifiedError = 0x80 + case implementationSpecificError = 0x83 + case notAuthorized = 0x87 + case topicNameInvalid = 0x90 + case packetIdentifierInUse = 0x91 + case quotaExceeded = 0x97 + case payloadFormatInvalid = 0x99 +} + +@objc public enum CocoaMQTTPUBRELReasonCode: UInt8 { + case success = 0x00 + case packetIdentifierNotFound = 0x92 +} + +@objc public enum CocoaMQTTSUBACKReasonCode: UInt8 { + case grantedQoS0 = 0x00 + case grantedQoS1 = 0x01 + case grantedQoS2 = 0x02 + case unspecifiedError = 0x80 + case implementationSpecificError = 0x83 + case notAuthorized = 0x87 + case topicFilterInvalid = 0x8F + case packetIdentifierInUse = 0x91 + case quotaExceeded = 0x97 + case sharedSubscriptionsNotSupported = 0x9E + case subscriptionIdentifiersNotSupported = 0xA1 + case wildcardSubscriptionsNotSupported = 0xA2 +} + +@objc public enum CocoaMQTTUNSUBACKReasonCode: UInt8 { + case success = 0x00 + case noSubscriptionExisted = 0x11 + case unspecifiedError = 0x80 + case implementationSpecificError = 0x83 + case notAuthorized = 0x87 + case topicFilterInvalid = 0x8F + case packetIdentifierInUse = 0x91 +} + +@objc public enum CocoaRetainHandlingOption: UInt8 { + case sendOnSubscribe = 0 + case sendOnlyWhenSubscribeIsNew = 1 + case none = 2 +} + +@objc public enum PayloadFormatIndicator: UInt8 { + case unspecified = 0x00 + case utf8 = 0x01 +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTSocket.swift b/Pods/CocoaMQTT/Source/CocoaMQTTSocket.swift new file mode 100644 index 0000000..21ad0fc --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTSocket.swift @@ -0,0 +1,136 @@ +// +// CocoaMQTTSocket.swift +// CocoaMQTT +// +// Created by Cyrus Ingraham on 12/13/19. +// + +import Foundation +import MqttCocoaAsyncSocket + +// MARK: - Interfaces + +public protocol CocoaMQTTSocketDelegate: AnyObject { + func socketConnected(_ socket: CocoaMQTTSocketProtocol) + func socket(_ socket: CocoaMQTTSocketProtocol, didReceive trust: SecTrust, completionHandler: @escaping (Bool) -> Swift.Void) + func socketUrlSession(_ socket: CocoaMQTTSocketProtocol, didReceiveTrust trust: SecTrust, didReceiveChallenge challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) + func socket(_ socket: CocoaMQTTSocketProtocol, didWriteDataWithTag tag: Int) + func socket(_ socket: CocoaMQTTSocketProtocol, didRead data: Data, withTag tag: Int) + func socketDidDisconnect(_ socket: CocoaMQTTSocketProtocol, withError err: Error?) +} + +public protocol CocoaMQTTSocketProtocol { + + var enableSSL: Bool { get set } + + func setDelegate(_ theDelegate: CocoaMQTTSocketDelegate?, delegateQueue: DispatchQueue?) + func connect(toHost host: String, onPort port: UInt16) throws + func connect(toHost host: String, onPort port: UInt16, withTimeout timeout: TimeInterval) throws + func disconnect() + func readData(toLength length: UInt, withTimeout timeout: TimeInterval, tag: Int) + func write(_ data: Data, withTimeout timeout: TimeInterval, tag: Int) +} + +// MARK: - CocoaMQTTSocket + +public class CocoaMQTTSocket: NSObject { + + public var backgroundOnSocket = true + + public var enableSSL = false + + /// + public var sslSettings: [String: NSObject]? + + /// Allow self-signed ca certificate. + /// + /// Default is false + public var allowUntrustCACertificate = false + + fileprivate let reference = MGCDAsyncSocket() + fileprivate weak var delegate: CocoaMQTTSocketDelegate? + + public override init() { super.init() } +} + +extension CocoaMQTTSocket: CocoaMQTTSocketProtocol { + public func setDelegate(_ theDelegate: CocoaMQTTSocketDelegate?, delegateQueue: DispatchQueue?) { + delegate = theDelegate + reference.setDelegate((delegate != nil ? self : nil), delegateQueue: delegateQueue) + } + + public func connect(toHost host: String, onPort port: UInt16) throws { + try connect(toHost: host, onPort: port, withTimeout: -1) + } + + public func connect(toHost host: String, onPort port: UInt16, withTimeout timeout: TimeInterval) throws { + try reference.connect(toHost: host, onPort: port, withTimeout: timeout) + } + + public func disconnect() { + reference.disconnect() + } + + public func readData(toLength length: UInt, withTimeout timeout: TimeInterval, tag: Int) { + reference.readData(toLength: length, withTimeout: timeout, tag: tag) + } + + public func write(_ data: Data, withTimeout timeout: TimeInterval, tag: Int) { + reference.write(data, withTimeout: timeout, tag: tag) + } +} + +extension CocoaMQTTSocket: MGCDAsyncSocketDelegate { + public func socket(_ sock: MGCDAsyncSocket, didConnectToHost host: String, port: UInt16) { + printInfo("Connected to \(host) : \(port)") + + #if os(iOS) + if backgroundOnSocket { + sock.perform { + guard sock.enableBackgroundingOnSocket() else { + printWarning("Enable backgrounding socket failed, please check related permissions") + return + } + printInfo("Enable backgrounding socket successfully") + } + } + #endif + + if enableSSL { + var setting = sslSettings ?? [:] + if allowUntrustCACertificate { + setting[MGCDAsyncSocketManuallyEvaluateTrust as String] = NSNumber(value: true) + } + sock.startTLS(setting) + } else { + delegate?.socketConnected(self) + } + } + + public func socket(_ sock: MGCDAsyncSocket, didReceive trust: SecTrust, completionHandler: @escaping (Bool) -> Swift.Void) { + if let theDelegate = delegate { + theDelegate.socket(self, didReceive: trust, completionHandler: completionHandler) + } else { + completionHandler(false) + } + } + + public func socketDidSecure(_ sock: MGCDAsyncSocket) { + printDebug("socket did secure") + delegate?.socketConnected(self) + } + + public func socket(_ sock: MGCDAsyncSocket, didWriteDataWithTag tag: Int) { + printDebug("socket wrote data \(tag)") + delegate?.socket(self, didWriteDataWithTag: tag) + } + + public func socket(_ sock: MGCDAsyncSocket, didRead data: Data, withTag tag: Int) { + delegate?.socket(self, didRead: data, withTag: tag) + } + + public func socketDidDisconnect(_ sock: MGCDAsyncSocket, withError err: Error?) { + printDebug("socket disconnected") + delegate?.socketDidDisconnect(self, withError: err) + } +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTStorage.swift b/Pods/CocoaMQTT/Source/CocoaMQTTStorage.swift new file mode 100644 index 0000000..86a8658 --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTStorage.swift @@ -0,0 +1,161 @@ +// +// CocoaMQTTStorage.swift +// CocoaMQTT +// +// Created by JianBo on 2019/10/6. +// Copyright © 2019 emqtt.io. All rights reserved. +// + +import Foundation + +protocol CocoaMQTTStorageProtocol { + + var clientId: String { get set } + + init?(by clientId: String) + + func write(_ frame: FramePublish) -> Bool + + func write(_ frame: FramePubRel) -> Bool + + func remove(_ frame: FramePublish) + + func remove(_ frame: FramePubRel) + + func synchronize() -> Bool + + /// Read all stored messages by saving order + func readAll() -> [Frame] +} + +final class CocoaMQTTStorage: CocoaMQTTStorageProtocol { + + var clientId: String = "" + + var userDefault: UserDefaults = UserDefaults() + + var versionDefault: UserDefaults = UserDefaults() + + init?() { + versionDefault = UserDefaults() + } + + init?(by clientId: String) { + guard let userDefault = UserDefaults(suiteName: CocoaMQTTStorage.name(clientId)) else { + return nil + } + + self.clientId = clientId + self.userDefault = userDefault + } + + deinit { + userDefault.synchronize() + versionDefault.synchronize() + } + + func setMQTTVersion(_ version: String) { + versionDefault.set(version, forKey: "cocoamqtt.emqx.version") + } + + func queryMQTTVersion() -> String { + return versionDefault.string(forKey: "cocoamqtt.emqx.version") ?? "3.1.1" + } + + func write(_ frame: FramePublish) -> Bool { + guard frame.qos > .qos0 else { + return false + } + userDefault.set(frame.bytes(version: queryMQTTVersion()), forKey: key(frame.msgid)) + return true + } + + func write(_ frame: FramePubRel) -> Bool { + userDefault.set(frame.bytes( version: queryMQTTVersion()), forKey: key(frame.msgid)) + return true + } + + func remove(_ frame: FramePublish) { + userDefault.removeObject(forKey: key(frame.msgid)) + } + + func remove(_ frame: FramePubRel) { + userDefault.removeObject(forKey: key(frame.msgid)) + } + + func remove(_ frame: Frame) { + if let pub = frame as? FramePublish { + userDefault.removeObject(forKey: key(pub.msgid)) + } else if let rel = frame as? FramePubRel { + userDefault.removeObject(forKey: key(rel.msgid)) + } + } + + func synchronize() -> Bool { + return userDefault.synchronize() + } + + func readAll() -> [Frame] { + return __read(needDelete: false) + } + + func takeAll() -> [Frame] { + return __read(needDelete: true) + } + + private func key(_ msgid: UInt16) -> String { + return "\(msgid)" + } + + private static func name(_ clientId: String) -> String { + return "cocomqtt-\(clientId)" + } + + private func parse(_ bytes: [UInt8]) -> (UInt8, [UInt8])? { + // FramePubRel is 4 bytes long + guard bytes.count > 3 else { + return nil + } + // bytes 1..<5 may be 'Remaining Length' + for i in 1 ..< min(5, bytes.count) where (bytes[i] & 0x80) == 0 { + return (bytes[0], Array(bytes.suffix(from: i + 1))) + } + + return nil + } + + private func __read(needDelete: Bool) -> [Frame] { + var frames = [Frame]() + let allObjs = userDefault.dictionaryRepresentation().sorted { (k1, k2) in + let left = UInt16(k1.key) + let right = UInt16(k2.key) + + switch (left, right) { + case let (l?, r?): + return l < r + case (_?, nil): + return true + case (nil, _?): + return false + case (nil, nil): + return k1.key < k2.key + } + } + for (k, v) in allObjs { + guard let bytes = v as? [UInt8] else { continue } + guard let parsed = parse(bytes) else { continue } + + if needDelete { + userDefault.removeObject(forKey: k) + } + + if let f = FramePublish(packetFixedHeaderType: parsed.0, bytes: parsed.1) { + frames.append(f) + } else if let f = FramePubRel(packetFixedHeaderType: parsed.0, bytes: parsed.1) { + frames.append(f) + } + } + return frames + } + +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTTimer.swift b/Pods/CocoaMQTT/Source/CocoaMQTTTimer.swift new file mode 100644 index 0000000..31d2fb6 --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTTimer.swift @@ -0,0 +1,110 @@ +// +// CocoaMQTTTimer.swift +// CocoaMQTT +// +// Contributed by Jens(https://github.com/jmiltner) +// +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +// modeled after RepeatingTimer by Daniel Galasko: https://medium.com/@danielgalasko/a-background-repeating-timer-in-swift-412cecfd2ef9 +/// RepeatingTimer mimics the API of DispatchSourceTimer but in a way that prevents +/// crashes that occur from calling resume multiple times on a timer that is +/// already resumed (noted by https://github.com/SiftScience/sift-ios/issues/52) +class CocoaMQTTTimer { + + let timeInterval: TimeInterval + let startDelay: TimeInterval + let name: String + + init(delay: TimeInterval?=nil, name: String, timeInterval: TimeInterval) { + self.name = name + self.timeInterval = timeInterval + if let delay = delay { + self.startDelay = delay + } else { + self.startDelay = timeInterval + } + } + + class func every(_ interval: TimeInterval, name: String, _ block: @escaping () -> Void) -> CocoaMQTTTimer { + let timer = CocoaMQTTTimer(name: name, timeInterval: interval) + timer.eventHandler = block + timer.resume() + return timer + } + + @discardableResult + class func after(_ interval: TimeInterval, name: String, _ block: @escaping () -> Void) -> CocoaMQTTTimer { + let timer: CocoaMQTTTimer? = CocoaMQTTTimer(delay: interval, name: name, timeInterval: 0) + timer?.eventHandler = { [weak timer] in + block() + timer?.suspend() + timer = nil + } + timer?.resume() + return timer! + } + + /// Execute the tasks concurrently on the target_queue with default QOS + private static let target_queue = DispatchQueue(label: "io.emqx.CocoaMQTT.TimerQueue", qos: .default, attributes: .concurrent) + + /// Execute each timer tasks serially and use the target queue for concurrency among timers + private lazy var timer: DispatchSourceTimer = { + let queue = DispatchQueue(label: "io.emqx.CocoaMQTT." + name, target: CocoaMQTTTimer.target_queue) + let t = DispatchSource.makeTimerSource(flags: .strict, queue: queue) + t.schedule(deadline: .now() + self.startDelay, repeating: self.timeInterval > 0 ? Double(self.timeInterval) : Double.infinity) + t.setEventHandler(handler: { [weak self] in + self?.eventHandler?() + }) + return t + }() + + var eventHandler: (() -> Void)? + + private enum State { + case suspended + case resumed + case canceled + } + + private var state: State = .suspended + + deinit { + timer.setEventHandler {} + timer.cancel() + /* + If the timer is suspended, calling cancel without resuming + triggers a crash. This is documented here https://forums.developer.apple.com/thread/15902 + */ + resume() + eventHandler = nil + } + + func resume() { + if state == .resumed { + return + } + state = .resumed + timer.resume() + } + + func suspend() { + if state == .suspended { + return + } + state = .suspended + timer.suspend() + } + + /// Manually cancel timer + func cancel() { + if state == .canceled { + return + } + state = .canceled + timer.cancel() + } +} diff --git a/Pods/CocoaMQTT/Source/CocoaMQTTTypes.swift b/Pods/CocoaMQTT/Source/CocoaMQTTTypes.swift new file mode 100644 index 0000000..d007192 --- /dev/null +++ b/Pods/CocoaMQTT/Source/CocoaMQTTTypes.swift @@ -0,0 +1,166 @@ +// +// CocoaMQTTTypes.swift +// CocoaMQTT +// +// Created by HJianBo on 2019/6/9. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// Encode and Decode big-endian UInt16 +extension UInt16 { + /// Most Significant Byte (MSB) + private var highByte: UInt8 { + return UInt8( (self & 0xFF00) >> 8) + } + + /// Least Significant Byte (LSB) + private var lowByte: UInt8 { + return UInt8(self & 0x00FF) + } + + var hlBytes: [UInt8] { + return [highByte, lowByte] + } +} + +extension String { + /// String with two bytes length + var bytesWithLength: [UInt8] { + return UInt16(utf8.count).hlBytes + utf8 + } + + var stringUTF8: String { + let data = self.data(using: .nonLossyASCII) + return String(data: data!, encoding: .utf8) ?? "" + } +} + +extension Bool { + /// Bool to bit of UInt8 + var bit: UInt8 { + return self ? 1 : 0 + } + + /// Initial a bool with a bit + init(bit: UInt8) { + self = (bit == 0) ? false : true + } +} + +extension UInt8 { + /// Read a bit value + func bitAt(_ offset: UInt8) -> UInt8 { + return (self >> offset) & 0x01 + } +} + +public enum CocoaMQTTError: Error { + case invalidURL + case readTimeout + case writeTimeout + @available(OSX 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) + public enum FoundationConnection: Error { + case closed(URLSessionWebSocketTask.CloseCode) + } +} + +extension Array where Element == UInt8 { + var summary: String { + if self.count <= 10 { + return "\(self)" + } else { + var descr = "[\(self[0])" + for i in self[1..<10] { + descr += ", \(i)" + } + return "\(descr), ...]" + } + } +} + +extension Data { + var uint8: UInt8 { + var number: UInt8 = 0 + self.copyBytes(to: &number, count: MemoryLayout.size) + return number + } + + var uint16: UInt16 { + let i16array = self.withUnsafeBytes { $0.load(as: UInt16.self) } + return i16array + } + + var uint32: UInt32 { + let i32array = self.withUnsafeBytes { $0.load(as: UInt32.self) } + return i32array + } + + var uuid: NSUUID? { + var bytes = [UInt8](repeating: 0, count: self.count) + self.copyBytes(to: &bytes, count: self.count * MemoryLayout.size) + return NSUUID(uuidBytes: bytes) + } + var stringASCII: String? { + return NSString(data: self, encoding: String.Encoding.ascii.rawValue) as String? + } + + var stringUTF8: String? { + return NSString(data: self, encoding: String.Encoding.utf8.rawValue) as String? + } + + struct HexEncodingOptions: OptionSet { + let rawValue: Int + static let upperCase = HexEncodingOptions(rawValue: 1 << 0) + } + + func hexEncodedString(options: HexEncodingOptions = []) -> String { + let format = options.contains(.upperCase) ? "%02hhX" : "%02hhx" + return map { String(format: format, $0) }.joined() + } + +} + +extension Int { + var data: Data { + var int = self + return Data(bytes: &int, count: MemoryLayout.size) + } +} + +extension UInt8 { + var data: Data { + var int = self + return Data(bytes: &int, count: MemoryLayout.size) + } +} + +extension UInt16 { + var data: Data { + var int = self + return Data(bytes: &int, count: MemoryLayout.size) + } +} + +extension UInt32 { + var data: Data { + var int = self + return Data(bytes: &int, count: MemoryLayout.size) + } + + var byteArrayLittleEndian: [UInt8] { + return [ + UInt8((self & 0xFF000000) >> 24), + UInt8((self & 0x00FF0000) >> 16), + UInt8((self & 0x0000FF00) >> 8), + UInt8(self & 0x000000FF) + ] + } +} + +extension Dictionary where Key == String, Value == String { + var userPropertyBytes: [UInt8] { + return reduce([UInt8](), { $0 + getMQTTPropertyData(type: CocoaMQTTPropertyName.userProperty.rawValue, value: $1.key.bytesWithLength + $1.value.bytesWithLength) }) + } +} diff --git a/Pods/CocoaMQTT/Source/Frame.swift b/Pods/CocoaMQTT/Source/Frame.swift new file mode 100644 index 0000000..02c9f48 --- /dev/null +++ b/Pods/CocoaMQTT/Source/Frame.swift @@ -0,0 +1,215 @@ +// +// Frame.swift +// CocoaMQTT +// +// Created by Feng Lee on 14/8/3. +// Copyright (c) 2015 emqx.io. All rights reserved. +// + +import Foundation + +/// Quality of Service levels +@objc public enum CocoaMQTTQoS: UInt8, CustomStringConvertible { + /// At most once delivery + case qos0 = 0 + + /// At least once delivery + case qos1 + + /// Exactly once delivery + case qos2 + + /// !!! Used SUBACK frame only + case FAILURE = 0x80 + + public var description: String { + switch self { + case .qos0: return "qos0" + case .qos1: return "qos1" + case .qos2: return "qos2" + case .FAILURE: return "Failure" + } + } +} + +extension CocoaMQTTQoS: Comparable { + + public static func < (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool { + return lhs.rawValue < rhs.rawValue + } + + public static func <= (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool { + return lhs.rawValue <= rhs.rawValue + } + + public static func > (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool { + return lhs.rawValue > rhs.rawValue + } + + public static func >= (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool { + return lhs.rawValue >= rhs.rawValue + } +} + +/// MQTT Frame Type +enum FrameType: UInt8 { + case reserved = 0x00 + case connect = 0x10 + case connack = 0x20 + case publish = 0x30 + case puback = 0x40 + case pubrec = 0x50 + case pubrel = 0x60 + case pubcomp = 0x70 + case subscribe = 0x80 + case suback = 0x90 + case unsubscribe = 0xA0 + case unsuback = 0xB0 + case pingreq = 0xC0 + case pingresp = 0xD0 + case disconnect = 0xE0 + case auth = 0xF0 +} + +/// The frame can be initialized with a bytes +protocol InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) +} + +/// MQTT Frame protocol +protocol Frame { + + /// Each MQTT Control Packet contains a fixed header + /// MQTT 3.1.1 + var packetFixedHeaderType: UInt8 {get set} + /// MQTT 5.0 + func fixedHeader() -> [UInt8] + + /// Some types of MQTT Control Packets contain a variable header component + /// MQTT 3.1.1 + func variableHeader() -> [UInt8] + + /// MQTT 5.0 + func variableHeader5() -> [UInt8] + + /// MQTT 5.0 The last field in the Variable Header of the CONNECT, CONNACK, PUBLISH, PUBACK, PUBREC, PUBREL, PUBCOMP, SUBSCRIBE, SUBACK, UNSUBSCRIBE, UNSUBACK, DISCONNECT, and AUTH packet is a set of Properties. In the CONNECT packet there is also an optional set of Properties in the Will Properties field with the Payload. + func properties() -> [UInt8] + + /// Some MQTT Control Packets contain a payload as the final part of the packet + /// MQTT 3.1.1 + func payload() -> [UInt8] + + /// MQTT 5.0 + func payload5() -> [UInt8] + + /// fixedHeader + variableHeader + properties + payload + func allData() -> [UInt8] +} + +extension Frame { + + /// Pack struct to binary + func bytes(version: String) -> [UInt8] { + + if version == "5.0" { + let fixedHeader = self.fixedHeader() + let variableHeader5 = self.variableHeader5() + let payload5 = self.payload5() + let properties = self.properties() + let len5 = UInt32(variableHeader5.count + properties.count + payload5.count) + + printDebug("==========================MQTT 5.0==========================") + printDebug("packetFixedHeaderType \(packetFixedHeaderType)") + printDebug("fixedHeader \(fixedHeader)") + printDebug("remainingLen(len: len) \(remainingLen(len: len5))") + printDebug("variableHeader \(variableHeader5)") + printDebug("properties \(properties)") + printDebug("payload \(payload5)") + printDebug("=============================================================") + + return [packetFixedHeaderType] + remainingLen(len: len5) + variableHeader5 + properties + payload5 + } else { + + let variableHeader = self.variableHeader() + let payload = self.payload() + + let len = UInt32(variableHeader.count + payload.count) + + printDebug("=========================MQTT 3.1.1=========================") + printDebug("packetFixedHeaderType \(packetFixedHeaderType)") + printDebug("remainingLen(len: len) \(remainingLen(len: len))") + printDebug("variableHeader \(variableHeader)") + printDebug("payload \(payload)") + printDebug("=============================================================") + + return [packetFixedHeaderType] + remainingLen(len: len) + variableHeader + payload + } + + } + + private func remainingLen(len: UInt32) -> [UInt8] { + var bytes: [UInt8] = [] + var digit: UInt8 = 0 + + var len = len + repeat { + digit = UInt8(len % 128) + len /= 128 + // if there are more digits to encode, set the top bit of this digit + if len > 0 { + digit |= 0x80 + } + bytes.append(digit) + } while len > 0 + + return bytes + } +} + +/// Fixed Header Attributes +extension Frame { + + /// The Fixed Header consist of the following attritutes + /// + /// +---------+----------+-------+--------+ + /// | 7 6 5 4 | 3 | 2 1 | 0 | + /// +---------+----------+-------+--------+ + /// | Type | DUP flag | QoS | RETAIN | + /// +-------------------------------------+ + + /// The type of the Frame + var type: FrameType { + return FrameType(rawValue: packetFixedHeaderType & 0xF0)! + } + + /// Dup flag + var dup: Bool { + get { + return ((packetFixedHeaderType & 0x08) >> 3) == 0 ? false : true + } + set { + packetFixedHeaderType = (packetFixedHeaderType & 0xF7) | (newValue.bit << 3) + } + } + + /// Qos level + var qos: CocoaMQTTQoS { + get { + return CocoaMQTTQoS(rawValue: (packetFixedHeaderType & 0x06) >> 1)! + } + set { + packetFixedHeaderType = (packetFixedHeaderType & 0xF9) | (newValue.rawValue << 1) + } + } + + /// Retained flag + var retained: Bool { + get { + return (packetFixedHeaderType & 0x01) == 0 ? false : true + } + set { + packetFixedHeaderType = (packetFixedHeaderType & 0xFE) | newValue.bit + } + } +} diff --git a/Pods/CocoaMQTT/Source/FrameAuth.swift b/Pods/CocoaMQTT/Source/FrameAuth.swift new file mode 100644 index 0000000..957f270 --- /dev/null +++ b/Pods/CocoaMQTT/Source/FrameAuth.swift @@ -0,0 +1,87 @@ +// +// FrameAuth.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/7/4. +// + +import Foundation + +struct FrameAuth: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.auth.rawValue + + // 3.15.2.1 Authenticate Reason Code + var sendReasonCode: CocoaMQTTAUTHReasonCode? + var receiveReasonCode: CocoaMQTTAUTHReasonCode? + + // 3.15.2.2 AUTH Properties + var authProperties: MqttAuthProperties? + + init(reasonCode: CocoaMQTTAUTHReasonCode, authProperties: MqttAuthProperties) { + self.sendReasonCode = reasonCode + self.authProperties = authProperties + } + +} + +extension FrameAuth { + + func fixedHeader() -> [UInt8] { + var header = [UInt8]() + header += [FrameType.auth.rawValue] + // header += [UInt8(variableHeader5().count)] + + return header + } + + func variableHeader5() -> [UInt8] { + var header = [UInt8]() + header += [sendReasonCode!.rawValue] + // MQTT 5.0 + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func payload5() -> [UInt8] { return []} + + func properties() -> [UInt8] { + return authProperties?.properties ?? [] + + } + + func allData() -> [UInt8] { + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return [] } + + func payload() -> [UInt8] { return [] } +} + +extension FrameAuth: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + guard protocolVersion == "5.0" else { + return nil + } + if bytes.isEmpty { + receiveReasonCode = .success + } else { + receiveReasonCode = CocoaMQTTAUTHReasonCode(rawValue: bytes[0]) + } + } + +} diff --git a/Pods/CocoaMQTT/Source/FrameConnAck.swift b/Pods/CocoaMQTT/Source/FrameConnAck.swift new file mode 100644 index 0000000..0c20905 --- /dev/null +++ b/Pods/CocoaMQTT/Source/FrameConnAck.swift @@ -0,0 +1,110 @@ +// +// FrameConnack.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +struct FrameConnAck: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.connack.rawValue + + // --- Attributes + + /// MQTT 3.1.1 + var returnCode: CocoaMQTTConnAck? + + /// MQTT 5.0 + var reasonCode: CocoaMQTTCONNACKReasonCode? + + // 3.2.2.1.1 Session Present + var sessPresent: Bool = false + + // --- Attributes End + + // 3.2.2.3 CONNACK Properties + var connackProperties: MqttDecodeConnAck? + var propertiesBytes: [UInt8]? + // 3.2.3 CONNACK Payload + // The CONNACK packet has no Payload. + + /// MQTT 3.1.1 + init(returnCode: CocoaMQTTConnAck) { + self.returnCode = returnCode + } + + /// MQTT 5.0 + init(code: CocoaMQTTCONNACKReasonCode) { + reasonCode = code + } + +} + +extension FrameConnAck { + + func fixedHeader() -> [UInt8] { + var header = [UInt8]() + header += [FrameType.connack.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + return [sessPresent.bit, reasonCode!.rawValue] + } + + func payload5() -> [UInt8] { return [] } + + func properties() -> [UInt8] { return propertiesBytes ?? [] } + + func allData() -> [UInt8] { + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { + return [sessPresent.bit, returnCode!.rawValue] + } + + func payload() -> [UInt8] { return [] } +} + +extension FrameConnAck: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + guard packetFixedHeaderType == FrameType.connack.rawValue else { + return nil + } + + guard bytes.count >= 2 else { + return nil + } + + sessPresent = Bool(bit: bytes[0] & 0x01) + + let mqtt5ack = CocoaMQTTCONNACKReasonCode(rawValue: bytes[1]) + reasonCode = mqtt5ack + + let ack = CocoaMQTTConnAck(byte: bytes[1]) + returnCode = ack + + propertiesBytes = bytes + self.connackProperties = MqttDecodeConnAck() + self.connackProperties!.properties(connackData: bytes) + } +} + +extension FrameConnAck: CustomStringConvertible { + var description: String { + return "CONNACK(code: \(String(describing: reasonCode)), sp: \(sessPresent))" + } +} diff --git a/Pods/CocoaMQTT/Source/FrameConnect.swift b/Pods/CocoaMQTT/Source/FrameConnect.swift new file mode 100644 index 0000000..6341c3e --- /dev/null +++ b/Pods/CocoaMQTT/Source/FrameConnect.swift @@ -0,0 +1,288 @@ +// +// ConnectFrame.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT CONNECT Frame +struct FrameConnect: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.connect.rawValue + + /// MQTT 3.1.1 + private let PROTOCOL_LEVEL = UInt8(4) + private let PROTOCOL_VERSION: String = "MQTT/3.1.1" + private let PROTOCOL_MAGIC: String = "MQTT" + + // --- Attributes + + // 3.1.2.1 + + let protocolName: String = "MQTT" + // 3.1.2.2 Protocol Version + let protocolVersion = UInt8(5) + + // 3.1.2.5 Will Flag + var willMsg: CocoaMQTTMessage? + var willMsg5: CocoaMQTT5Message? + // 3.1.2.6 Will QoS + var willQoS: UInt8? + // 3.1.2.7 Will Retain + var willRetain: Bool = true + // 3.1.2.8 User Name Flag + var username: String? + // 3.1.2.9 Password Flag + var password: String? + // 3.1.2.10 Keep Alive + var keepAlive: UInt16 = 10 + var cleansess: Bool = true + + // 3.1.2 + // 3.1.2.11 CONNECT Properties + var connectProperties: MqttConnectProperties? + + var authenticationData: Data? + + // 3.1.3.1 Client Identifier (ClientID) + var clientID: String + + // --- Attributes End + + init(clientID: String) { + self.clientID = clientID + } +} + +extension FrameConnect { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.connect.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + var header = [UInt8]() + var flags = ConnFlags() + + // 3.1.2.1 Protocol Name + header += protocolName.bytesWithLength + + // 3.1.2.2 Protocol Version + header.append(protocolVersion) + + // 3.1.2.3 Connect Flags + if let will = willMsg5 { + flags.flagWill = true + flags.flagWillQoS = will.qos.rawValue + flags.flagWillRetain = will.retained + } + + if username != nil { + flags.flagUsername = true + + // Append password attribute if username presented + if password != nil { + flags.flagPassword = true + } + } + + flags.flagCleanSession = cleansess + + header.append(flags.rawValue) + header += keepAlive.hlBytes + + // MQTT 5.0 + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func properties() -> [UInt8] { + return connectProperties?.properties ?? [] + } + + func payload5() -> [UInt8] { + var payload = [UInt8]() + + payload += clientID.bytesWithLength + + if let will = willMsg5 { + + payload += beVariableByteInteger(length: willMsg5!.properties.count) + payload += will.properties + payload += will.topic.bytesWithLength + payload += UInt16(will.payload.count).hlBytes + payload += will.payload + } + + if let username = username { + + payload += username.bytesWithLength + + // Append password attribute if username presented + if let password = password { + payload += password.bytesWithLength + } + } + + return payload + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { + + var header = [UInt8]() + var flags = ConnFlags() + + // variable header + header += PROTOCOL_MAGIC.bytesWithLength + header.append(PROTOCOL_LEVEL) + + if let will = willMsg { + flags.flagWill = true + flags.flagWillQoS = will.qos.rawValue + flags.flagWillRetain = will.retained + } + + if username != nil { + flags.flagUsername = true + + // Append password attribute if username presented + if password != nil { + flags.flagPassword = true + } + } + + flags.flagCleanSession = cleansess + + header.append(flags.rawValue) + header += keepAlive.hlBytes + + return header + } + + func payload() -> [UInt8] { + + var payload = [UInt8]() + + payload += clientID.bytesWithLength + + if let will = willMsg { + payload += will.topic.bytesWithLength + payload += UInt16(will.payload.count).hlBytes + payload += will.payload + } + if let username = username { + payload += username.bytesWithLength + + // Append password attribute if username presented + if let password = password { + payload += password.bytesWithLength + } + } + + return payload + } +} + +extension FrameConnect: CustomStringConvertible { + var description: String { + return "CONNECT(id: \(clientID), username: \(username ?? "nil"), " + + "password: \(password ?? "nil"), keepAlive : \(keepAlive), " + + "cleansess: \(cleansess))" + } +} + +/// Connect Flags +private struct ConnFlags { + + /// These Flags consist of following flags: + /// + /// +----------+----------+------------+--------------------+--------------+----------+ + /// | 7 | 6 | 5 | 4 3 | 2 | 1 | 0 | + /// +----------+----------+------------+---------+----------+--------------+----------+ + /// | username | password | willretain | willqos | willflag | cleansession | reserved | + /// +----------+----------+------------+---------+----------+--------------+----------+ + /// + var rawValue: UInt8 = 0 + + var flagUsername: Bool { + get { + return Bool(bit: (rawValue >> 7) & 0x01) + } + + set { + rawValue = (rawValue & 0x7F) | (newValue.bit << 7) + } + } + + var flagPassword: Bool { + get { + return Bool(bit: (rawValue >> 6) & 0x01) + } + + set { + rawValue = (rawValue & 0xBF) | (newValue.bit << 6) + } + } + + var flagWillRetain: Bool { + get { + return Bool(bit: (rawValue >> 5) & 0x01) + } + + set { + rawValue = (rawValue & 0xDF) | (newValue.bit << 5) + } + } + + var flagWillQoS: UInt8 { + get { + return (rawValue >> 3) & 0x03 + } + + set { + rawValue = (rawValue & 0xE7) | (newValue << 3) + } + } + + var flagWill: Bool { + get { + return Bool(bit: (rawValue >> 2) & 0x01) + } + + set { + rawValue = (rawValue & 0xFB) | (newValue.bit << 2) + } + } + + var flagCleanSession: Bool { + get { + return Bool(bit: (rawValue >> 1) & 0x01) + } + + set { + rawValue = (rawValue & 0xFD) | (newValue.bit << 1) + + } + } +} diff --git a/Pods/CocoaMQTT/Source/FrameDisconnect.swift b/Pods/CocoaMQTT/Source/FrameDisconnect.swift new file mode 100644 index 0000000..268ec51 --- /dev/null +++ b/Pods/CocoaMQTT/Source/FrameDisconnect.swift @@ -0,0 +1,128 @@ +// +// FrameDisconnect.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT Disconnect packet +struct FrameDisconnect: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.disconnect.rawValue + + // 3.14.2 DISCONNECT Variable Header + public var sendReasonCode: CocoaMQTTDISCONNECTReasonCode? + public var receiveReasonCode: CocoaMQTTDISCONNECTReasonCode? + + // 3.14.2.2.2 Session Expiry Interval + public var sessionExpiryInterval: UInt32? + + // 3.14.2.2.3 Reason String + public var reasonString: String? + // 3.14.2.2.4 User Property + public var userProperties: [String: String]? + // 3.14.2.2.5 Server Reference + public var serverReference: String? + + /// MQTT 3.1.1 + init() { /* Nothing to do */ } + + /// MQTT 5.0 + init(disconnectReasonCode: CocoaMQTTDISCONNECTReasonCode) { + self.sendReasonCode = disconnectReasonCode + } +} + +extension FrameDisconnect { + + func fixedHeader() -> [UInt8] { + var header = [UInt8]() + header += [FrameType.disconnect.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + var header = [UInt8]() + header += [sendReasonCode!.rawValue] + + // MQTT 5.0 + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func payload5() -> [UInt8] { return [] } + + func properties() -> [UInt8] { + + var properties = [UInt8]() + + // 3.14.2.2.2 Session Expiry Interval + if let sessionExpiryInterval = self.sessionExpiryInterval { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.sessionExpiryInterval.rawValue, value: sessionExpiryInterval.byteArrayLittleEndian) + } + // 3.14.2.2.3 Reason String + if let reasonString = self.reasonString { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.reasonString.rawValue, value: reasonString.bytesWithLength) + } + // 3.14.2.2.4 User Property + if let userProperty = self.userProperties { + properties += userProperty.userPropertyBytes + } + // 3.14.2.2.5 Server Reference + if let serverReference = self.serverReference { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.serverReference.rawValue, value: serverReference.bytesWithLength) + } + + return properties + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return [] } + + func payload() -> [UInt8] { return [] } +} + +extension FrameDisconnect: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + if bytes.isEmpty { + receiveReasonCode = .normalDisconnection + } else { + receiveReasonCode = CocoaMQTTDISCONNECTReasonCode(rawValue: bytes[0]) + } + } else { + return nil + } + } + +} + +extension FrameDisconnect: CustomStringConvertible { + var description: String { + return "DISCONNECT" + } +} diff --git a/Pods/CocoaMQTT/Source/FramePingReq.swift b/Pods/CocoaMQTT/Source/FramePingReq.swift new file mode 100644 index 0000000..90e9fae --- /dev/null +++ b/Pods/CocoaMQTT/Source/FramePingReq.swift @@ -0,0 +1,54 @@ +// +// FramePingReq.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +struct FramePingReq: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.pingreq.rawValue +} + +extension FramePingReq { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.pingreq.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { return [] } + + func payload5() -> [UInt8] { return [] } + + func properties() -> [UInt8] { return [] } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return [] } + + func payload() -> [UInt8] { return [] } + +} + +extension FramePingReq: CustomStringConvertible { + var description: String { + return "PING" + } +} diff --git a/Pods/CocoaMQTT/Source/FramePingResp.swift b/Pods/CocoaMQTT/Source/FramePingResp.swift new file mode 100644 index 0000000..c2b2165 --- /dev/null +++ b/Pods/CocoaMQTT/Source/FramePingResp.swift @@ -0,0 +1,68 @@ +// +// FramePingResp.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT PINGRESP packet +struct FramePingResp: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.pingresp.rawValue +} + +extension FramePingResp { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.pingresp.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { return [] } + + func payload5() -> [UInt8] { return [] } + + func properties() -> [UInt8] { return [] } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return [] } + + func payload() -> [UInt8] { return [] } +} + +extension FramePingResp: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + + guard packetFixedHeaderType == FrameType.pingresp.rawValue else { + return nil + } + + guard bytes.count == 0 else { + return nil + } + } +} + +extension FramePingResp: CustomStringConvertible { + var description: String { + return "PONG" + } +} diff --git a/Pods/CocoaMQTT/Source/FramePubAck.swift b/Pods/CocoaMQTT/Source/FramePubAck.swift new file mode 100644 index 0000000..35936e0 --- /dev/null +++ b/Pods/CocoaMQTT/Source/FramePubAck.swift @@ -0,0 +1,129 @@ +// +// FramePuback.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT PUBACK packet +struct FramePubAck: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.puback.rawValue + + // --- Attributes + + var msgid: UInt16 + + // --- Attributes End + + // 3.4.2.1 PUBACK Reason Code + public var reasonCode: CocoaMQTTPUBACKReasonCode? + + // 3.4.2.2 PUBACK Properties + public var pubAckProperties: MqttDecodePubAck? + // 3.4.2.2.2 Reason String + public var reasonString: String? + // 3.4.2.2.3 User Property + public var userProperties: [String: String]? + + /// MQTT 3.1.1 + init(msgid: UInt16) { + self.msgid = msgid + } + + /// MQTT 5.0 + init(msgid: UInt16, reasonCode: CocoaMQTTPUBACKReasonCode) { + self.msgid = msgid + self.reasonCode = reasonCode + } +} + +extension FramePubAck { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.puback.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + // 3.4.2 MSB+LSB + var header = msgid.hlBytes + // 3.4.2.1 PUBACK Reason Code + header += [reasonCode!.rawValue] + + // MQTT 5.0 + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func payload5() -> [UInt8] { return [] } + + func properties() -> [UInt8] { + + var properties = [UInt8]() + + // 3.4.2.2.2 Reason String + if let reasonString = self.reasonString { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.reasonString.rawValue, value: reasonString.bytesWithLength) + } + + // 3.4.2.2.3 User Property + if let userProperty = self.userProperties { + properties += userProperty.userPropertyBytes + } + + return properties + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return msgid.hlBytes } + + func payload() -> [UInt8] { return [] } +} + +extension FramePubAck: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + guard packetFixedHeaderType == FrameType.puback.rawValue else { + return nil + } + + // MQTT 5.0 bytes.count == 4 + guard bytes.count >= 2 else { + return nil + } + + if bytes.count > 2 { + self.reasonCode = CocoaMQTTPUBACKReasonCode(rawValue: bytes[2]) + self.pubAckProperties = MqttDecodePubAck() + self.pubAckProperties!.decodePubAck(fixedHeader: packetFixedHeaderType, pubAckData: bytes) + } + + msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) + } +} + +extension FramePubAck: CustomStringConvertible { + var description: String { + return "PUBACK(id: \(msgid))" + } +} diff --git a/Pods/CocoaMQTT/Source/FramePubComp.swift b/Pods/CocoaMQTT/Source/FramePubComp.swift new file mode 100644 index 0000000..bc740ad --- /dev/null +++ b/Pods/CocoaMQTT/Source/FramePubComp.swift @@ -0,0 +1,127 @@ +// +// FramePubCom.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// ublish complete (QoS 2 delivery part 3) +/// The PUBCOMP packet is the response to a PUBREL packet. It is the fourth and final packet of the QoS 2 protocol exchange. +struct FramePubComp: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.pubcomp.rawValue + + // --- Attributes + + var msgid: UInt16 + + // --- Attributes End + + // 3.7.2.1 PUBCOMP Reason Code + public var reasonCode: CocoaMQTTPUBCOMPReasonCode? + + // 3.7.2.2 PUBCOMP Properties + public var pubCompProperties: MqttDecodePubComp? + // 3.7.2.2.2 Reason String + public var reasonString: String? + // 3.7.2.2.3 User Property + public var userProperties: [String: String]? + + /// MQTT 3.1.1 + init(msgid: UInt16) { + self.msgid = msgid + } + + /// MQTT 5.0 + init(msgid: UInt16, reasonCode: CocoaMQTTPUBCOMPReasonCode) { + self.msgid = msgid + self.reasonCode = reasonCode + } +} + +extension FramePubComp { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.pubcomp.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + // 3.7.2 MSB+LSB + var header = msgid.hlBytes + // 3.7.2.1 PUBACK Reason Code + header += [reasonCode!.rawValue] + + // MQTT 5.0 + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func payload5() -> [UInt8] { return [] } + + func properties() -> [UInt8] { + + var properties = [UInt8]() + + // 3.7.2.2.2 Reason String + if let reasonString = self.reasonString { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.reasonString.rawValue, value: reasonString.bytesWithLength) + } + + // 3.7.2.2.3 User Property + if let userProperty = self.userProperties { + properties += userProperty.userPropertyBytes + } + + return properties + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return msgid.hlBytes } + + func payload() -> [UInt8] { return [] } +} + +extension FramePubComp: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + + guard packetFixedHeaderType == FrameType.pubcomp.rawValue else { + return nil + } + + guard bytes.count >= 2 else { + return nil + } + + msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) + + self.pubCompProperties = MqttDecodePubComp() + self.pubCompProperties!.decodePubComp(fixedHeader: packetFixedHeaderType, pubAckData: bytes) + } +} + +extension FramePubComp: CustomStringConvertible { + var description: String { + return "PUBCOMP(id: \(msgid))" + } +} diff --git a/Pods/CocoaMQTT/Source/FramePubRec.swift b/Pods/CocoaMQTT/Source/FramePubRec.swift new file mode 100644 index 0000000..222ae44 --- /dev/null +++ b/Pods/CocoaMQTT/Source/FramePubRec.swift @@ -0,0 +1,125 @@ +// +// FramePubRec.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT PUBREC packet +struct FramePubRec: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.pubrec.rawValue + + // --- Attributes + + var msgid: UInt16 + + // --- Attributes End + + // 3.5.2.1 PUBREC Reason Code + public var reasonCode: CocoaMQTTPUBRECReasonCode? + + // 3.5.2.2 PUBREC Properties + public var pubRecProperties: MqttDecodePubRec? + // 3.5.2.2.2 Reason String + public var reasonString: String? + // 3.5.2.2.3 User Property + public var userProperties: [String: String]? + + /// MQTT 3.1.1 + init(msgid: UInt16) { + self.msgid = msgid + } + + /// MQTT 5.0 + init(msgid: UInt16, reasonCode: CocoaMQTTPUBRECReasonCode) { + self.msgid = msgid + self.reasonCode = reasonCode + } +} + +extension FramePubRec { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.pubrec.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + // 3.5.2 MSB+LSB + var header = msgid.hlBytes + // 3.5.2.1 PUBACK Reason Code + header += [reasonCode!.rawValue] + + // MQTT 5.0 + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func payload5() -> [UInt8] { return [] } + + func properties() -> [UInt8] { + + var properties = [UInt8]() + + // 3.5.2.2.2 Reason String + if let reasonString = self.reasonString { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.reasonString.rawValue, value: reasonString.bytesWithLength) + } + + // 3.5.2.2.3 User Property + if let userProperty = self.userProperties { + properties += userProperty.userPropertyBytes + } + + return properties + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return msgid.hlBytes } + + func payload() -> [UInt8] { return [] } +} + +extension FramePubRec: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + + guard packetFixedHeaderType == FrameType.pubrec.rawValue else { + return nil + } + guard bytes.count >= 2 else { + return nil + } + + msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) + + self.pubRecProperties = MqttDecodePubRec() + self.pubRecProperties!.decodePubRec(fixedHeader: packetFixedHeaderType, pubAckData: bytes) + } +} + +extension FramePubRec: CustomStringConvertible { + var description: String { + return "PUBREC(id: \(msgid))" + } +} diff --git a/Pods/CocoaMQTT/Source/FramePubRel.swift b/Pods/CocoaMQTT/Source/FramePubRel.swift new file mode 100644 index 0000000..4f650ef --- /dev/null +++ b/Pods/CocoaMQTT/Source/FramePubRel.swift @@ -0,0 +1,120 @@ +// +// FramePubRel.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT PUBREL packet +/// A PUBREL packet is the response to a PUBREC packet. It is the third packet of the QoS 2 protocol exchange. +struct FramePubRel: Frame { + + var packetFixedHeaderType: UInt8 = UInt8(FrameType.pubrel.rawValue + 2) + + // --- Attributes + + var msgid: UInt16 + + // --- Attributes End + + // 3.6.2.1 PUBREL Reason Code + public var reasonCode: CocoaMQTTPUBRELReasonCode = .success + + // 3.6.2.2 PUBREL Properties + public var pubRelProperties: MqttDecodePubRel? + // 3.6.2.2.2 Reason String + public var reasonString: String? + // 3.6.2.2.3 User Property + public var userProperties: [String: String]? + + init(msgid: UInt16) { + self.msgid = msgid + + qos = .qos1 + } +} + +extension FramePubRel { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.pubrel.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + // 3.6.2 MSB+LSB + var header = msgid.hlBytes + // 3.6.2.1 PUBACK Reason Code + header += [reasonCode.rawValue] + // MQTT 5.0 + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func payload5() -> [UInt8] { return [] } + + func properties() -> [UInt8] { + + var properties = [UInt8]() + + // 3.6.2.2.2 Reason String + if let reasonString = self.reasonString { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.reasonString.rawValue, value: reasonString.bytesWithLength) + } + + // 3.6.2.2.3 User Property + if let userProperty = self.userProperties { + properties += userProperty.userPropertyBytes + } + + return properties + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return msgid.hlBytes } + + func payload() -> [UInt8] { return [] } +} + +extension FramePubRel: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + guard packetFixedHeaderType == 0x62 else { + return nil + } + guard bytes.count >= 2 else { + return nil + } + + self.packetFixedHeaderType = packetFixedHeaderType + msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) + + self.pubRelProperties = MqttDecodePubRel() + self.pubRelProperties!.decodePubRel(fixedHeader: packetFixedHeaderType, pubAckData: bytes) + } +} + +extension FramePubRel: CustomStringConvertible { + var description: String { + return "PUBREL(id: \(msgid))" + } +} diff --git a/Pods/CocoaMQTT/Source/FramePublish.swift b/Pods/CocoaMQTT/Source/FramePublish.swift new file mode 100644 index 0000000..1121e08 --- /dev/null +++ b/Pods/CocoaMQTT/Source/FramePublish.swift @@ -0,0 +1,237 @@ +// +// FramePublish.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +// MQTT PUBLISH Frame +struct FramePublish: Frame { + + // 3.3.1.4 Remaining Length + public var remainingLength: UInt32? + + // 3.3.2.1 Topic Name + public var topicName: String? + // 3.3.2.2 Packet Identifier + public var packetIdentifier: UInt16? + + // 3.3.2.3 PUBLISH Properties + public var publishProperties: MqttPublishProperties? + public var publishRecProperties: MqttDecodePublish? + + var packetFixedHeaderType: UInt8 = FrameType.publish.rawValue + + // --- Attributes + + var msgid: UInt16 + + var topic: String = "" + + var _payload: [UInt8] = [] + + var mqtt5Topic: String = "" + + // --- Attributes End + + init(topic: String, payload: [UInt8], qos: CocoaMQTTQoS = .qos0, msgid: UInt16 = 0) { + + self.topic = topic + self._payload = payload + self.msgid = msgid + self.qos = qos + } +} + +extension FramePublish { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.publish.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + // 3.3.2.1 Topic Name + var header = self.topic.bytesWithLength + // 3.3.2.2 Packet Identifier qos1 or qos2 + if qos > .qos0 { + header += msgid.hlBytes + // header.append(UInt8(0)) + // header.append(QoS.rawValue) + } + + // MQTT 5.0 + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func payload5() -> [UInt8] { return _payload } + + func properties() -> [UInt8] { + + // Properties + return publishProperties?.properties ?? [] + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { + + var header = topic.bytesWithLength + + if qos > .qos0 { + header += msgid.hlBytes + } + + return header + } + + func payload() -> [UInt8] { return _payload } +} + +extension FramePublish: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + + guard packetFixedHeaderType & 0xF0 == FrameType.publish.rawValue else { + return nil + } + let recDup = ((packetFixedHeaderType & 0b0000_1000) >> 3) > 0 + + guard let recQos = CocoaMQTTQoS(rawValue: (packetFixedHeaderType & 0b0000_0110) >> 1) else { + return nil + } + + let recRetain = (packetFixedHeaderType & 0b0000_0001) > 0 + // Reserved + var flags: UInt8 = 0 + + if recRetain { + flags = flags | 0b0000_0001 + } else { + flags = flags | 0b0000_0000 + } + + if recDup { + flags = flags | 0b0011_1000 + } else { + flags = flags | 0b0011_0000 + } + + switch recQos { + case .qos0: + flags = flags | 0b0011_0000 + case .qos1: + flags = flags | 0b0011_0010 + case .qos2: + flags = flags | 0b0011_0100 + case .FAILURE: + printDebug("FAILTURE") + } + self.packetFixedHeaderType = flags + + // Packet Identifier + // The Packet Identifier field is only present in PUBLISH packets where the QoS level is 1 or 2. + + // parse topic + if bytes.count < 2 { + return nil + } + + let topicLength = Int(UInt16(bytes[0]) << 8 | UInt16(bytes[1])) + let topicStart = 2 + let topicEnd = topicStart + topicLength + + if bytes.count < topicEnd { + return nil + } + var pos = topicEnd + + // msgid + if (packetFixedHeaderType & 0x06) >> 1 == CocoaMQTTQoS.qos0.rawValue { + msgid = 0 + } else { + if bytes.count < pos + 2 { + return nil + } + msgid = UInt16(bytes[pos]) << 8 + UInt16(bytes[pos+1]) + pos += 2 + } + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + let data = MqttDecodePublish() + data.decodePublish(fixedHeader: packetFixedHeaderType, publishData: bytes) + pos = data.mqtt5DataIndex + + if data.propertyLength != 0 { + pos += data.propertyLength! + } + if pos > bytes.count { + return nil + } + + // MQTT 5.0: Topic Name may be empty only when Topic Alias is present. + if data.topic.isEmpty && data.topicAlias == nil { + return nil + } + + // MQTT 5.0 + self.mqtt5Topic = data.topic + self.topic = data.topic + self.packetIdentifier = data.packetIdentifier + if let packetIdentifier = data.packetIdentifier { + self.msgid = packetIdentifier + } + self.publishRecProperties = data + + } else { + // MQTT 3.1.1 + guard topicLength > 0 else { + return nil + } + guard let recTopic = String(bytes: bytes[topicStart.. [UInt8] { + + var header = [UInt8]() + header += [FrameType.suback.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { return msgid.hlBytes } + + func payload5() -> [UInt8] { + + var payload = [UInt8]() + + for qos in grantedQos { + payload.append(qos.rawValue) + } + + return payload + } + + func properties() -> [UInt8] { return [] } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return msgid.hlBytes } + + func payload() -> [UInt8] { + + var payload = [UInt8]() + + for qos in grantedQos { + payload.append(qos.rawValue) + } + + return payload + } +} + +extension FrameSubAck: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + + self.packetFixedHeaderType = packetFixedHeaderType + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + // the bytes length must bigger than 3 + guard bytes.count >= 4 else { + return nil + } + + self.msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) + self.grantedQos = [] + self.reasonCodes = [CocoaMQTTSUBACKReasonCode]() + + let propertyLength = decodeVariableByteInteger(data: bytes, offset: 2) + let reasonCodesStartIndex = propertyLength.newOffset + propertyLength.res + guard reasonCodesStartIndex < bytes.count else { + return nil + } + + for i in reasonCodesStartIndex ..< bytes.count { + guard let reasonCode = CocoaMQTTSUBACKReasonCode(rawValue: bytes[i]) else { + return nil + } + self.reasonCodes! += [reasonCode] + + switch reasonCode { + case .grantedQoS0: + self.grantedQos.append(.qos0) + case .grantedQoS1: + self.grantedQos.append(.qos1) + case .grantedQoS2: + self.grantedQos.append(.qos2) + default: + self.grantedQos.append(.FAILURE) + } + } + + self.subAckProperties = MqttDecodeSubAck() + self.subAckProperties!.decodeSubAck(fixedHeader: packetFixedHeaderType, pubAckData: bytes) + + } else { + // the bytes length must bigger than 3 + guard bytes.count >= 3 else { + return nil + } + + self.msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) + self.grantedQos = [] + for i in 2 ..< bytes.count { + guard let qos = CocoaMQTTQoS(rawValue: bytes[i]) else { + return nil + } + self.grantedQos.append(qos) + } + + } + + } +} + +extension FrameSubAck: CustomStringConvertible { + var description: String { + return "SUBACK(id: \(msgid))" + } +} diff --git a/Pods/CocoaMQTT/Source/FrameSubscribe.swift b/Pods/CocoaMQTT/Source/FrameSubscribe.swift new file mode 100644 index 0000000..144f17f --- /dev/null +++ b/Pods/CocoaMQTT/Source/FrameSubscribe.swift @@ -0,0 +1,174 @@ +// +// FrameSubscribe.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT SUBSCRIBE Frame +struct FrameSubscribe: Frame { + + var packetFixedHeaderType: UInt8 = UInt8(FrameType.subscribe.rawValue + 2) + + // --- Attributes + + var msgid: UInt16? + + var topics: [(String, CocoaMQTTQoS)]? + + // --- Attributes End + + // 3.8.2 SUBSCRIBE Variable Header + public var packetIdentifier: UInt16? + + // 3.8.2.1.2 Subscription Identifier + public var subscriptionIdentifier: UInt32? + + // 3.8.2.1.3 User Property + public var userProperty: [String: String]? + + // 3.8.3 SUBSCRIBE Payload + public var topicFilters: [MqttSubscription]? + + /// MQTT 3.1.1 + init(msgid: UInt16, topic: String, reqos: CocoaMQTTQoS) { + self.init(msgid: msgid, topics: [(topic, reqos)]) + } + + init(msgid: UInt16, topics: [(String, CocoaMQTTQoS)]) { + packetFixedHeaderType = FrameType.subscribe.rawValue + self.msgid = msgid + self.topics = topics + + qos = CocoaMQTTQoS.qos1 + } + + /// MQTT 5.0 + init(msgid: UInt16, subscriptionList: [MqttSubscription]) { + self.msgid = msgid + self.topicFilters = subscriptionList + } + + /// MQTT 5.0 + init(msgid: UInt16, subscriptionList: [MqttSubscription], packetIdentifier: UInt16? = nil, subscriptionIdentifier: UInt32? = nil, userProperty: [String: String] = [:]) { + self.msgid = msgid + self.topicFilters = subscriptionList + if packetIdentifier != nil { + self.packetIdentifier = packetIdentifier + } + if subscriptionIdentifier != nil { + self.subscriptionIdentifier = subscriptionIdentifier + } + if !userProperty.isEmpty { + self.userProperty = userProperty + } + + } + +} + +extension FrameSubscribe { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.subscribe.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + // 3.8.2 SUBSCRIBE Variable Header + // The Variable Header of the SUBSCRIBE Packet contains the following fields in the order: Packet Identifier, and Properties. + + // MQTT 5.0 + var header = [UInt8]() + header = msgid!.hlBytes + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func payload5() -> [UInt8] { + + var payload = [UInt8]() + + for subscription in self.topicFilters! { + subscription.subscriptionOptions = true + payload += subscription.subscriptionData + } + + return payload + } + + func properties() -> [UInt8] { + + var properties = [UInt8]() + + // 3.8.2.1.2 Subscription Identifier + if let subscriptionIdentifier = self.subscriptionIdentifier, + let subscriptionIdentifier = beVariableByteInteger(subscriptionIdentifier) { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.subscriptionIdentifier.rawValue, value: subscriptionIdentifier) + } + + // 3.8.2.1.3 User Property + if let userProperty = self.userProperty { + properties += userProperty.userPropertyBytes + } + + return properties + + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return msgid!.hlBytes } + + func payload() -> [UInt8] { + + var payload = [UInt8]() + + for (topic, qos) in topics! { + payload += topic.bytesWithLength + payload.append(qos.rawValue) + } + + return payload + } +} + +extension FrameSubscribe: CustomStringConvertible { + + var description: String { + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + var desc = "" + if let unwrappedList = topicFilters, !unwrappedList.isEmpty { + for subscription in unwrappedList { + desc += "SUBSCRIBE(id: \(String(describing: msgid)), topics: \(subscription.topic)) " + } + } + return desc + } else { + return "SUBSCRIBE(id: \(String(describing: msgid)), topics: \(String(describing: topics)))" + } + } +} diff --git a/Pods/CocoaMQTT/Source/FrameUnsubAck.swift b/Pods/CocoaMQTT/Source/FrameUnsubAck.swift new file mode 100644 index 0000000..057b3d1 --- /dev/null +++ b/Pods/CocoaMQTT/Source/FrameUnsubAck.swift @@ -0,0 +1,117 @@ +// +// FrameUnsubAck.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT UNSUBACK packet +struct FrameUnsubAck: Frame { + + var packetFixedHeaderType: UInt8 = FrameType.unsuback.rawValue + + // --- Attributes + + var msgid: UInt16 + + // --- Attributes End + + // 3.10.2.1 UNSUBSCRIBE Properties + public var unSubAckProperties: MqttDecodeUnsubAck? + // 3.11.2 Property + public var userProperty: [String: String]? + // 3.11.2.1.2 Reason String + public var reasonString: String? + + var _payload: [UInt8] = [] + + init(msgid: UInt16, payload: [UInt8]) { + self.msgid = msgid + self._payload = payload + } +} + +extension FrameUnsubAck { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.unsuback.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + // 3.11.2 MSB+LSB + var header = msgid.hlBytes + + // MQTT 5.0 + header += beVariableByteInteger(length: self.properties().count) + + return header + } + + func payload5() -> [UInt8] { return _payload } + + func properties() -> [UInt8] { + + var properties = [UInt8]() + + // 3.11.2.1.2 Reason String + if let reasonString = self.reasonString { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.reasonString.rawValue, value: reasonString.bytesWithLength) + } + + // 3.11.2.1.3 User Property + if let userProperty = self.userProperty { + properties += userProperty.userPropertyBytes + } + + return properties + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return msgid.hlBytes } + + func payload() -> [UInt8] { return [] } +} + +extension FrameUnsubAck: InitialWithBytes { + + init?(packetFixedHeaderType: UInt8, bytes: [UInt8]) { + guard packetFixedHeaderType == FrameType.unsuback.rawValue else { + return nil + } + + guard bytes.count >= 2 else { + return nil + } + + msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) + + self.unSubAckProperties = MqttDecodeUnsubAck() + self.unSubAckProperties!.decodeUnSubAck(fixedHeader: packetFixedHeaderType, pubAckData: bytes) + + } +} + +extension FrameUnsubAck: CustomStringConvertible { + var description: String { + return "UNSUBSACK(id: \(msgid))" + } +} diff --git a/Pods/CocoaMQTT/Source/FrameUnsubscribe.swift b/Pods/CocoaMQTT/Source/FrameUnsubscribe.swift new file mode 100644 index 0000000..db81c10 --- /dev/null +++ b/Pods/CocoaMQTT/Source/FrameUnsubscribe.swift @@ -0,0 +1,139 @@ +// +// FrameUnsubscribe.swift +// CocoaMQTT +// +// Created by JianBo on 2019/8/7. +// Copyright © 2019 emqx.io. All rights reserved. +// + +import Foundation + +/// MQTT UNSUBSCRIBE packet +struct FrameUnsubscribe: Frame { + + var packetFixedHeaderType: UInt8 = UInt8(FrameType.unsubscribe.rawValue + 2) + + // --- Attributes + + var msgid: UInt16? + + /// MQTT 3.1.1 + var topics: [String]? + + /// MQTT 5.0 + var topicFilters: [MqttSubscription]? + + // --- Attribetes end + + // 3.10.2.1.2 User Property + public var userProperty: [String: String]? + + /// MQTT 3.1.1 + init(msgid: UInt16, topics: [String]) { + self.msgid = msgid + self.topics = topics + + qos = CocoaMQTTQoS.qos1 + } + + /// MQTT 5.0 + init(msgid: UInt16, topics: [MqttSubscription]) { + self.msgid = msgid + self.topicFilters = topics + + qos = CocoaMQTTQoS.qos1 + } + +} + +extension FrameUnsubscribe { + + func fixedHeader() -> [UInt8] { + + var header = [UInt8]() + header += [FrameType.unsubscribe.rawValue] + + return header + } + + func variableHeader5() -> [UInt8] { + + // MQTT 5.0 + var header = [UInt8]() + header = msgid!.hlBytes + header += beVariableByteInteger(length: self.properties().count) + return header + } + + func payload5() -> [UInt8] { + + var payload = [UInt8]() + + for subscription in topicFilters! { + subscription.subscriptionOptions = false + payload += subscription.subscriptionData + } + + return payload + } + + func properties() -> [UInt8] { + + var properties = [UInt8]() + + // 3.10.2.1.2 User Property + if let userProperty = self.userProperty { + properties += userProperty.userPropertyBytes + } + + return properties + } + + func allData() -> [UInt8] { + + var allData = [UInt8]() + + allData += fixedHeader() + allData += variableHeader5() + allData += properties() + allData += payload5() + + return allData + } + + func variableHeader() -> [UInt8] { return msgid!.hlBytes } + + func payload() -> [UInt8] { + + var payload = [UInt8]() + + for t in topics! { + payload += t.bytesWithLength + } + + return payload + } + +} + +extension FrameUnsubscribe: CustomStringConvertible { + + var description: String { + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + var desc = "" + if let unwrappedList = topicFilters, !unwrappedList.isEmpty { + for subscription in unwrappedList { + desc += "UNSUBSCRIBE(id: \(String(describing: subscription.topic)), topics: \(subscription.topic)) " + } + } + return desc + } else { + return "UNSUBSCRIBE(id: \(String(describing: msgid)), topics: \(String(describing: topics)))" + } + } +} diff --git a/Pods/CocoaMQTT/Source/MqttAuthProperties.swift b/Pods/CocoaMQTT/Source/MqttAuthProperties.swift new file mode 100644 index 0000000..657e5ce --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttAuthProperties.swift @@ -0,0 +1,44 @@ +// +// MqttAuthProperties.swift +// CocoaMQTT +// +// Created by liwei wang on 1/9/2021. +// + +import Foundation + +public class MqttAuthProperties: NSObject { + + // 3.15.2.2.2 Authentication Method + public var authenticationMethod: String? + // 3.15.2.2.3 Authentication Data + public var authenticationData: [UInt8]? + // 3.15.2.2.4 Reason String + public var reasonString: String? + // 3.15.2.2.5 User Property + public var userProperties: [String: String]? + + public var properties: [UInt8] { + var properties = [UInt8]() + + // 3.15.2.2.2 Authentication Method + if let authenticationMethod = self.authenticationMethod { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.authenticationMethod.rawValue, value: authenticationMethod.bytesWithLength) + } + // 3.15.2.2.3 Authentication Data + if let authenticationData = self.authenticationData { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.authenticationData.rawValue, value: authenticationData) + } + // 3.15.2.2.4 Reason String + if let reasonString = self.reasonString { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.reasonString.rawValue, value: reasonString.bytesWithLength) + } + // 3.15.2.2.5 User Property + if let userProperty = self.userProperties { + properties += userProperty.userPropertyBytes + } + + return properties + } + +} diff --git a/Pods/CocoaMQTT/Source/MqttConnectProperties.swift b/Pods/CocoaMQTT/Source/MqttConnectProperties.swift new file mode 100644 index 0000000..5a4281c --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttConnectProperties.swift @@ -0,0 +1,80 @@ +// +// MqttConnectProperties.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/7/25. +// + +import Foundation + +public class MqttConnectProperties: NSObject { + + // 3.1.2.11.1 Property Length + // public var propertyLength: UInt8? + // 3.1.2.11.2 Session Expiry Interval + public var sessionExpiryInterval: UInt32? + // 3.1.2.11.3 Receive Maximum + public var receiveMaximum: UInt16? + // 3.1.2.11.4 Maximum Packet Size + public var maximumPacketSize: UInt32? + // 3.1.2.11.5 Topic Alias Maximum + public var topicAliasMaximum: UInt16? + // 3.1.2.11.6 Request Response Information + public var requestResponseInformation: UInt8? + // 3.1.2.11.7 Request Problem Information + public var requestProblemInfomation: UInt8? + // 3.1.2.11.8 User Property + public var userProperties: [String: String]? + // 3.1.2.11.9 Authentication Method + public var authenticationMethod: String? + // 3.1.2.11.10 Authentication Data + public var authenticationData: [UInt8]? + + public var properties: [UInt8] { + var properties = [UInt8]() + + // 3.1.2.11.2 Session Expiry Interval + if let sessionExpiryInterval = self.sessionExpiryInterval { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.sessionExpiryInterval.rawValue, value: sessionExpiryInterval.byteArrayLittleEndian) + } + + // 3.1.2.11.3 Receive Maximum + if let receiveMaximum = self.receiveMaximum { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.receiveMaximum.rawValue, value: receiveMaximum.hlBytes) + } + + // 3.1.2.11.4 Maximum Packet Size + if let maximumPacketSize = self.maximumPacketSize { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.maximumPacketSize.rawValue, value: maximumPacketSize.byteArrayLittleEndian) + } + + // 3.1.2.11.5 Topic Alias Maximum + if let topicAliasMaximum = self.topicAliasMaximum { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.topicAliasMaximum.rawValue, value: topicAliasMaximum.hlBytes) + } + + // 3.1.2.11.6 Request Response Information + if let requestResponseInformation = self.requestResponseInformation { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.requestResponseInformation.rawValue, value: [requestResponseInformation]) + } + // 3.1.2.11.7 Request Problem Information + if let requestProblemInfomation = self.requestProblemInfomation { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.requestProblemInformation.rawValue, value: [requestProblemInfomation]) + } + // 3.1.2.11.8 User Property + if let userProperty = self.userProperties { + properties += userProperty.userPropertyBytes + } + // 3.1.2.11.9 Authentication Method + if let authenticationMethod = self.authenticationMethod { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.authenticationMethod.rawValue, value: authenticationMethod.bytesWithLength) + } + // 3.1.2.11.10 Authentication Data + if let authenticationData = self.authenticationData { + properties += authenticationData + } + + return properties + } + +} diff --git a/Pods/CocoaMQTT/Source/MqttDecodeConnAck.swift b/Pods/CocoaMQTT/Source/MqttDecodeConnAck.swift new file mode 100644 index 0000000..8a41d73 --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttDecodeConnAck.swift @@ -0,0 +1,237 @@ +// +// MqttDecodeConnAck.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/7/26. +// + +import Foundation + +public class MqttDecodeConnAck: NSObject { + + // var connackData: [UInt8] + // + // init(connackData: [UInt8]) { + // connackData = connackData + // } + + // 3.2.2.3 CONNACK Properties + // 3.2.2.3.1 Property Length + public var propertyLength: Int? + // 3.2.2.3.2 Session Expiry Interval + public var sessionExpiryInterval: UInt32? + // 3.2.2.3.3 Receive Maximum + public var receiveMaximum: UInt16? + // 3.2.2.3.4 Maximum QoS + public var maximumQoS: CocoaMQTTQoS? + // 3.2.2.3.5 Retain Available + public var retainAvailable: Bool? + // 3.2.2.3.6 Maximum Packet Size + public var maximumPacketSize: UInt32? + // 3.2.2.3.7 Assigned Client Identifier + public var assignedClientIdentifier: String? + // 3.2.2.3.8 Topic Alias Maximum + public var topicAliasMaximum: UInt16? + // 3.2.2.3.9 Reason String + public var reasonString: String? + // 3.2.2.3.10 User Property + public var userProperty: [String: String]? + // 3.2.2.3.11 Wildcard Subscription Available + public var wildcardSubscriptionAvailable: Bool? + // 3.2.2.3.12 Subscription Identifiers Available + public var subscriptionIdentifiersAvailable: Bool? + // 3.2.2.3.13 Shared Subscription Available + public var sharedSubscriptionAvailable: Bool? + // 3.2.2.3.14 Server Keep Alive + public var serverKeepAlive: UInt16? + // 3.2.2.3.15 Response Information + public var responseInformation: String? + // 3.2.2.3.16 Server Reference + public var serverReference: String? + // 3.2.2.3.17 Authentication Method + public var authenticationMethod: String? + // 3.2.2.3.18 Authentication Data + public var authenticationData = [UInt8]() + + public func properties(connackData: [UInt8]) { + // 3.2.2.3 CONNACK Properties + var index = 2 // sessPresent 0 reasonCode 1 + let propertyLengthVariableByteInteger = decodeVariableByteInteger(data: connackData, offset: index) + propertyLength = propertyLengthVariableByteInteger.res + index = propertyLengthVariableByteInteger.newOffset + let occupyIndex = index + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + // properties + while index - occupyIndex < propertyLength! { + let resVariableByteInteger = decodeVariableByteInteger(data: connackData, offset: index) + index = resVariableByteInteger.newOffset + let propertyNameByte = resVariableByteInteger.res + guard let propertyName = CocoaMQTTPropertyName(rawValue: UInt8(propertyNameByte)) else { + break + } + + switch propertyName.rawValue { + + case CocoaMQTTPropertyName.sessionExpiryInterval.rawValue: + + let comRes = integerCompute(data: connackData, formatType: formatInt.formatUint32.rawValue, offset: index) + sessionExpiryInterval = UInt32(comRes!.res) + index = comRes!.newOffset + + case CocoaMQTTPropertyName.receiveMaximum.rawValue: + + let comRes = integerCompute(data: connackData, formatType: formatInt.formatUint16.rawValue, offset: index) + receiveMaximum = UInt16(comRes!.res) + index = comRes!.newOffset + + case CocoaMQTTPropertyName.maximumQoS.rawValue: + if index > connackData.count { + break + } + if connackData[index] & 0x01 > 0 { + maximumQoS = .qos0 + } else { + maximumQoS = .qos1 + } + + index += 1 + + case CocoaMQTTPropertyName.retainAvailable.rawValue: + if index > connackData.count { + break + } + if connackData[index] & 0x01 > 0 { + retainAvailable = true + } else { + retainAvailable = false + } + + index += 1 + + case CocoaMQTTPropertyName.maximumPacketSize.rawValue: + + let comRes = integerCompute(data: connackData, formatType: formatInt.formatUint32.rawValue, offset: index) + maximumPacketSize = UInt32(comRes!.res) + index = comRes!.newOffset + + case CocoaMQTTPropertyName.assignedClientIdentifier.rawValue: + guard let result = unsignedByteToString(data: connackData, offset: index) else { + break + } + assignedClientIdentifier = result.resStr + index = result.newOffset + + case CocoaMQTTPropertyName.topicAliasMaximum.rawValue: + + let comRes = integerCompute(data: connackData, formatType: formatInt.formatUint16.rawValue, offset: index) + topicAliasMaximum = UInt16(comRes!.res) + index = comRes!.newOffset + + case CocoaMQTTPropertyName.reasonString.rawValue: + guard let result = unsignedByteToString(data: connackData, offset: index) else { + break + } + reasonString = result.resStr + index = result.newOffset + + case CocoaMQTTPropertyName.userProperty.rawValue: + var key: String? + var value: String? + guard let keyRes = unsignedByteToString(data: connackData, offset: index) else { + break + } + key = keyRes.resStr + index = keyRes.newOffset + + guard let valRes = unsignedByteToString(data: connackData, offset: index) else { + break + } + value = valRes.resStr + index = valRes.newOffset + + userProperty![key!] = value + + case CocoaMQTTPropertyName.wildcardSubscriptionAvailable.rawValue: + if index > connackData.count { + break + } + if connackData[index] & 0x01 > 0 { + wildcardSubscriptionAvailable = true + } else { + wildcardSubscriptionAvailable = false + } + index += 1 + + case CocoaMQTTPropertyName.subscriptionIdentifiersAvailable.rawValue: + if index > connackData.count { + break + } + if connackData[index] & 0x01 > 0 { + subscriptionIdentifiersAvailable = true + } else { + subscriptionIdentifiersAvailable = false + } + index += 1 + + case CocoaMQTTPropertyName.sharedSubscriptionAvailable.rawValue: + if index > connackData.count { + break + } + if connackData[index] & 0x01 > 0 { + sharedSubscriptionAvailable = true + } else { + sharedSubscriptionAvailable = false + } + index += 1 + + case CocoaMQTTPropertyName.serverKeepAlive.rawValue: + + let comRes = integerCompute(data: connackData, formatType: formatInt.formatUint16.rawValue, offset: index) + serverKeepAlive = UInt16(comRes!.res) + index = comRes!.newOffset + + case CocoaMQTTPropertyName.responseInformation.rawValue: + guard let valRes = unsignedByteToString(data: connackData, offset: index) else { + break + } + responseInformation = valRes.resStr + index = valRes.newOffset + + case CocoaMQTTPropertyName.serverReference.rawValue: + guard let valRes = unsignedByteToString(data: connackData, offset: index) else { + break + } + serverReference = valRes.resStr + index = valRes.newOffset + + case CocoaMQTTPropertyName.authenticationMethod.rawValue: + guard let valRes = unsignedByteToString(data: connackData, offset: index) else { + break + } + authenticationMethod = valRes.resStr + index = valRes.newOffset + + case CocoaMQTTPropertyName.authenticationData.rawValue: + guard let valRes = unsignedByteToBinary(data: connackData, offset: index) else { + break + } + authenticationData = valRes.resStr + index = valRes.newOffset + + default: + break + } + + } + + } + + } + +} diff --git a/Pods/CocoaMQTT/Source/MqttDecodePubAck.swift b/Pods/CocoaMQTT/Source/MqttDecodePubAck.swift new file mode 100644 index 0000000..c8478df --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttDecodePubAck.swift @@ -0,0 +1,101 @@ +// +// MqttDecodePuback.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/8/3. +// + +import Foundation + +public class MqttDecodePubAck: NSObject { + + var totalCount = 0 + var dataIndex = 0 + var propertyLength: Int = 0 + + public var reasonCode: CocoaMQTTPUBACKReasonCode? + public var msgid: UInt16 = 0 + public var reasonString: String? + public var userProperty: [String: String]? + + public func decodePubAck(fixedHeader: UInt8, pubAckData: [UInt8]) { + totalCount = pubAckData.count + dataIndex = 0 + // msgid + let msgidResult = integerCompute(data: pubAckData, formatType: formatInt.formatUint16.rawValue, offset: dataIndex) + msgid = UInt16(msgidResult!.res) + dataIndex = msgidResult!.newOffset + + // 3.4.2.1 PUBACK Reason Code + + // The Reason Code and Property Length can be omitted if the Reason Code is 0x00 (Success) and there are no Properties. In this case the PUBACK has a Remaining Length of 2. + if dataIndex + 1 > pubAckData.count { + return + } + + guard let ack = CocoaMQTTPUBACKReasonCode(rawValue: pubAckData[dataIndex]) else { + return + } + reasonCode = ack + dataIndex += 1 + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + // 3.4.2.2 PUBACK Properties + // 3.4.2.2.1 Property Length + let propertyLengthVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + propertyLength = propertyLengthVariableByteInteger.res + dataIndex = propertyLengthVariableByteInteger.newOffset + + let occupyIndex = dataIndex + + while dataIndex < occupyIndex + propertyLength { + + let resVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + dataIndex = resVariableByteInteger.newOffset + let propertyNameByte = resVariableByteInteger.res + guard let propertyName = CocoaMQTTPropertyName(rawValue: UInt8(propertyNameByte)) else { + break + } + + switch propertyName.rawValue { + // 3.4.2.2.2 Reason String + case CocoaMQTTPropertyName.reasonString.rawValue: + guard let result = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + reasonString = result.resStr + dataIndex = result.newOffset + + // 3.4.2.2.3 User Property + case CocoaMQTTPropertyName.userProperty.rawValue: + var key: String? + var value: String? + guard let keyRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + key = keyRes.resStr + dataIndex = keyRes.newOffset + + guard let valRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + value = valRes.resStr + dataIndex = valRes.newOffset + + userProperty![key!] = value + + default: + return + } + + } + + } + + } +} diff --git a/Pods/CocoaMQTT/Source/MqttDecodePubComp.swift b/Pods/CocoaMQTT/Source/MqttDecodePubComp.swift new file mode 100644 index 0000000..d02a22b --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttDecodePubComp.swift @@ -0,0 +1,101 @@ +// +// MqttDecodePubComp.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/8/9. +// + +import Foundation + +public class MqttDecodePubComp: NSObject { + + var totalCount = 0 + var dataIndex = 0 + var propertyLength: Int = 0 + + public var reasonCode: CocoaMQTTPUBCOMPReasonCode? + public var msgid: UInt16 = 0 + public var reasonString: String? + public var userProperty: [String: String]? + + public func decodePubComp(fixedHeader: UInt8, pubAckData: [UInt8]) { + totalCount = pubAckData.count + dataIndex = 0 + // msgid + let msgidResult = integerCompute(data: pubAckData, formatType: formatInt.formatUint16.rawValue, offset: dataIndex) + msgid = UInt16(msgidResult!.res) + dataIndex = msgidResult!.newOffset + + // 3.6.2.1 PUBREL Reason Code + + // The Reason Code and Property Length can be omitted if the Reason Code is 0x00 (Success) and there are no Properties. In this case the PUBACK has a Remaining Length of 2. + if dataIndex + 1 > pubAckData.count { + return + } + + guard let ack = CocoaMQTTPUBCOMPReasonCode(rawValue: pubAckData[dataIndex]) else { + return + } + reasonCode = ack + dataIndex += 1 + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + // 3.6.2.2 PUBREL Properties + // 3.6.2.2.1 Property Length + let propertyLengthVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + propertyLength = propertyLengthVariableByteInteger.res + dataIndex = propertyLengthVariableByteInteger.newOffset + + let occupyIndex = dataIndex + + while dataIndex < occupyIndex + propertyLength { + + let resVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + dataIndex = resVariableByteInteger.newOffset + let propertyNameByte = resVariableByteInteger.res + guard let propertyName = CocoaMQTTPropertyName(rawValue: UInt8(propertyNameByte)) else { + break + } + + switch propertyName.rawValue { + // 3.6.2.2.2 Reason String + case CocoaMQTTPropertyName.reasonString.rawValue: + guard let result = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + reasonString = result.resStr + dataIndex = result.newOffset + + // 3.6.2.2.3 User Property + var key: String? + var value: String? + guard let keyRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + key = keyRes.resStr + dataIndex = keyRes.newOffset + + guard let valRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + value = valRes.resStr + dataIndex = valRes.newOffset + + userProperty![key!] = value + + default: + return + } + + } + + } + + } + +} diff --git a/Pods/CocoaMQTT/Source/MqttDecodePubRec.swift b/Pods/CocoaMQTT/Source/MqttDecodePubRec.swift new file mode 100644 index 0000000..37465c9 --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttDecodePubRec.swift @@ -0,0 +1,100 @@ +// +// MqttDecodePubRec.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/8/4. +// + +import Foundation + +public class MqttDecodePubRec: NSObject { + + var totalCount = 0 + var dataIndex = 0 + var propertyLength: Int = 0 + + public var reasonCode: CocoaMQTTPUBACKReasonCode? + public var msgid: UInt16 = 0 + public var reasonString: String? + public var userProperty: [String: String]? + + public func decodePubRec(fixedHeader: UInt8, pubAckData: [UInt8]) { + totalCount = pubAckData.count + dataIndex = 0 + // msgid + let msgidResult = integerCompute(data: pubAckData, formatType: formatInt.formatUint16.rawValue, offset: dataIndex) + msgid = UInt16(msgidResult!.res) + dataIndex = msgidResult!.newOffset + + // 3.5.2.1 PUBREC Reason Code + + // The Reason Code and Property Length can be omitted if the Reason Code is 0x00 (Success) and there are no Properties. In this case the PUBACK has a Remaining Length of 2. + if dataIndex + 1 > pubAckData.count { + return + } + + guard let ack = CocoaMQTTPUBACKReasonCode(rawValue: pubAckData[dataIndex]) else { + return + } + reasonCode = ack + dataIndex += 1 + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + // 3.5.2.2 PUBACK Properties + // 3.5.2.2.1 Property Length + let propertyLengthVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + propertyLength = propertyLengthVariableByteInteger.res + dataIndex = propertyLengthVariableByteInteger.newOffset + + let occupyIndex = dataIndex + + while dataIndex < occupyIndex + propertyLength { + + let resVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + dataIndex = resVariableByteInteger.newOffset + let propertyNameByte = resVariableByteInteger.res + guard let propertyName = CocoaMQTTPropertyName(rawValue: UInt8(propertyNameByte)) else { + break + } + + switch propertyName.rawValue { + // 3.5.2.2.2 Reason String + case CocoaMQTTPropertyName.reasonString.rawValue: + guard let result = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + reasonString = result.resStr + dataIndex = result.newOffset + + // 3.5.2.2.3 User Property + case CocoaMQTTPropertyName.userProperty.rawValue: + var key: String? + var value: String? + guard let keyRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + key = keyRes.resStr + dataIndex = keyRes.newOffset + + guard let valRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + value = valRes.resStr + dataIndex = valRes.newOffset + + userProperty![key!] = value + + default: + return + } + } + } + + } + +} diff --git a/Pods/CocoaMQTT/Source/MqttDecodePubRel.swift b/Pods/CocoaMQTT/Source/MqttDecodePubRel.swift new file mode 100644 index 0000000..0f1d629 --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttDecodePubRel.swift @@ -0,0 +1,101 @@ +// +// MqttDecodePubRel.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/8/9. +// + +import Foundation + +public class MqttDecodePubRel: NSObject { + + var totalCount = 0 + var dataIndex = 0 + var propertyLength: Int = 0 + + public var reasonCode: CocoaMQTTPUBRELReasonCode? + public var msgid: UInt16 = 0 + public var reasonString: String? + public var userProperty: [String: String]? + + public func decodePubRel(fixedHeader: UInt8, pubAckData: [UInt8]) { + totalCount = pubAckData.count + dataIndex = 0 + // msgid + let msgidResult = integerCompute(data: pubAckData, formatType: formatInt.formatUint16.rawValue, offset: dataIndex) + msgid = UInt16(msgidResult!.res) + dataIndex = msgidResult!.newOffset + + // 3.6.2.1 PUBREL Reason Code + + // The Reason Code and Property Length can be omitted if the Reason Code is 0x00 (Success) and there are no Properties. In this case the PUBACK has a Remaining Length of 2. + if dataIndex + 1 > pubAckData.count { + return + } + + guard let ack = CocoaMQTTPUBRELReasonCode(rawValue: pubAckData[dataIndex]) else { + return + } + reasonCode = ack + dataIndex += 1 + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + // 3.6.2.2 PUBREL Properties + // 3.6.2.2.1 Property Length + let propertyLengthVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + propertyLength = propertyLengthVariableByteInteger.res + dataIndex = propertyLengthVariableByteInteger.newOffset + + let occupyIndex = dataIndex + + while dataIndex < occupyIndex + propertyLength { + + let resVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + dataIndex = resVariableByteInteger.newOffset + let propertyNameByte = resVariableByteInteger.res + guard let propertyName = CocoaMQTTPropertyName(rawValue: UInt8(propertyNameByte)) else { + break + } + + switch propertyName.rawValue { + // 3.6.2.2.2 Reason String + case CocoaMQTTPropertyName.reasonString.rawValue: + guard let result = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + reasonString = result.resStr + dataIndex = result.newOffset + + // 3.6.2.2.3 User Property + var key: String? + var value: String? + guard let keyRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + key = keyRes.resStr + dataIndex = keyRes.newOffset + + guard let valRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + value = valRes.resStr + dataIndex = valRes.newOffset + + userProperty![key!] = value + + default: + return + } + + } + + } + + } + +} diff --git a/Pods/CocoaMQTT/Source/MqttDecodePublish.swift b/Pods/CocoaMQTT/Source/MqttDecodePublish.swift new file mode 100644 index 0000000..bacfe61 --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttDecodePublish.swift @@ -0,0 +1,171 @@ +// +// MqttDecodePublish.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/7/27. +// + +import Foundation + +public class MqttDecodePublish: NSObject { + + // 3.3.2.3 PUBLISH Properties + // 3.3.2.3.1 Property Length + public var propertyLength: Int? + // 3.3.2.3.2 Payload Format Indicator + public var payloadFormatIndicator: PayloadFormatIndicator? + // 3.3.2.3.3 Message Expiry Interval + public var messageExpiryInterval: UInt32? + // 3.3.2.3.4 Topic Alias + public var topicAlias: UInt16? + // 3.3.2.3.5 Response Topic + public var responseTopic: String? + // 3.3.2.3.6 Correlation Data + public var correlationData: [UInt8]? + // 3.3.2.3.7 Property + public var userProperty: [String: String]? + // 3.3.2.3.8 Subscription Identifier + public var subscriptionIdentifier: Int = 0 + // 3.3.2.3.9 Content Type + public var contentType: String? + + // public var applicationMessage: [UInt8]? + + // 3.3.2.1 Topic Name + public var topic: String = "" + // 3.3.2.2 Packet Identifier + public var packetIdentifier: UInt16? + public var mqtt5DataIndex = 0 + + public func decodePublish(fixedHeader: UInt8, publishData: [UInt8]) { + // Topic Name + // 3.3.2.1 Topic Name + var dataIndex = 0 + guard let result = unsignedByteToString(data: publishData, offset: dataIndex) else { + return + } + self.topic = result.resStr + dataIndex = result.newOffset + mqtt5DataIndex = dataIndex + + printDebug("topic = \(topic)") + + guard let recQos = CocoaMQTTQoS(rawValue: (fixedHeader & 0b0000_0110) >> 1) else { + return + } + + // 3.3.2.2 Packet Identifier + // Packet Identifier + if recQos == .qos1 || recQos == .qos2 { + let IdentifierResult = integerCompute(data: publishData, formatType: formatInt.formatUint16.rawValue, offset: dataIndex) + packetIdentifier = UInt16(IdentifierResult!.res) + dataIndex = IdentifierResult!.newOffset + } + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + // 3.3.2.3.1 Property Length + // propertyLength + let propertyLengthVariableByteInteger = decodeVariableByteInteger(data: publishData, offset: dataIndex) + propertyLength = propertyLengthVariableByteInteger.res + dataIndex = propertyLengthVariableByteInteger.newOffset + mqtt5DataIndex = propertyLengthVariableByteInteger.newOffset + + let occupyIndex = dataIndex + + while dataIndex < occupyIndex + (propertyLength ?? 0) { + + let resVariableByteInteger = decodeVariableByteInteger(data: publishData, offset: dataIndex) + dataIndex = resVariableByteInteger.newOffset + let propertyNameByte = resVariableByteInteger.res + guard let propertyName = CocoaMQTTPropertyName(rawValue: UInt8(propertyNameByte)) else { + break + } + switch propertyName.rawValue { + // 3.3.2.3.2 Payload Format Indicator + case CocoaMQTTPropertyName.payloadFormatIndicator.rawValue: + if publishData[dataIndex] & 0b0000_0001 > 0 { + payloadFormatIndicator = .utf8 + } else { + payloadFormatIndicator = .unspecified + } + dataIndex += 1 + + // 3.3.2.3.3 Message Expiry Interval + case CocoaMQTTPropertyName.willExpiryInterval.rawValue: + let comRes = integerCompute(data: publishData, formatType: formatInt.formatUint32.rawValue, offset: dataIndex) + messageExpiryInterval = UInt32(comRes!.res) + dataIndex = comRes!.newOffset + + // 3.3.2.3.4 Topic Alias + case CocoaMQTTPropertyName.topicAlias.rawValue: + let comRes = integerCompute(data: publishData, formatType: formatInt.formatUint16.rawValue, offset: dataIndex) + topicAlias = UInt16(comRes!.res) + dataIndex = comRes!.newOffset + + // 3.3.2.3.5 Response Topic + case CocoaMQTTPropertyName.responseTopic.rawValue: + guard let result = unsignedByteToString(data: publishData, offset: dataIndex) else { + break + } + responseTopic = result.resStr + dataIndex = result.newOffset + + // 3.3.2.3.6 Correlation Data + case CocoaMQTTPropertyName.correlationData.rawValue: + guard let result = unsignedByteToBinary(data: publishData, offset: dataIndex) else { + break + } + correlationData = result.resStr + dataIndex = result.newOffset + + // 3.3.2.3.7 User Property + case CocoaMQTTPropertyName.userProperty.rawValue: + var key: String? + var value: String? + guard let keyRes = unsignedByteToString(data: publishData, offset: dataIndex) else { + break + } + key = keyRes.resStr + dataIndex = keyRes.newOffset + + guard let valRes = unsignedByteToString(data: publishData, offset: dataIndex) else { + break + } + value = valRes.resStr + dataIndex = valRes.newOffset + + if userProperty == nil { + userProperty = [:] + } + + userProperty![key!] = value + + // 3.3.2.3.8 Subscription Identifier + case CocoaMQTTPropertyName.subscriptionIdentifier.rawValue: + let valRes = decodeVariableByteInteger(data: publishData, offset: dataIndex) + subscriptionIdentifier = valRes.res + dataIndex = valRes.newOffset + + // 3.3.2.3.9 Content Type + case CocoaMQTTPropertyName.contentType.rawValue: + guard let valRes = unsignedByteToString(data: publishData, offset: dataIndex) else { + break + } + contentType = valRes.resStr + dataIndex = valRes.newOffset + + default: + return + } + + } + } + + } + +} diff --git a/Pods/CocoaMQTT/Source/MqttDecodeSubAck.swift b/Pods/CocoaMQTT/Source/MqttDecodeSubAck.swift new file mode 100644 index 0000000..911f646 --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttDecodeSubAck.swift @@ -0,0 +1,100 @@ +// +// MqttDecodeSubAck.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/8/12. +// + +import Foundation + +public class MqttDecodeSubAck: NSObject { + + var totalCount = 0 + var dataIndex = 0 + var propertyLength: Int = 0 + + public var reasonCodes: [CocoaMQTTSUBACKReasonCode] = [] + // public var reasonCode: CocoaMQTTSUBACKReasonCode? + public var msgid: UInt16 = 0 + public var reasonString: String? + public var userProperty: [String: String]? + + public func decodeSubAck(fixedHeader: UInt8, pubAckData: [UInt8]) { + totalCount = pubAckData.count + dataIndex = 0 + // msgid + let msgidResult = integerCompute(data: pubAckData, formatType: formatInt.formatUint16.rawValue, offset: dataIndex) + msgid = UInt16(msgidResult!.res) + dataIndex = msgidResult!.newOffset + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + // 3.9.2.1 SUBACK Properties + // 3.9.2.1.1 Property Length + let propertyLengthVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + propertyLength = propertyLengthVariableByteInteger.res + dataIndex = propertyLengthVariableByteInteger.newOffset + let occupyIndex = dataIndex + + while dataIndex < occupyIndex + propertyLength { + let resVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + dataIndex = resVariableByteInteger.newOffset + let propertyNameByte = resVariableByteInteger.res + guard let propertyName = CocoaMQTTPropertyName(rawValue: UInt8(propertyNameByte)) else { + break + } + + switch propertyName.rawValue { + // 3.9.2.1.2 Reason String + case CocoaMQTTPropertyName.reasonString.rawValue: + guard let result = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + reasonString = result.resStr + dataIndex = result.newOffset + + // 3.9.2.1.3 User Property + case CocoaMQTTPropertyName.userProperty.rawValue: + var key: String? + var value: String? + if userProperty == nil { + userProperty = [:] + } + + guard let keyRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + key = keyRes.resStr + dataIndex = keyRes.newOffset + + guard let valRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + value = valRes.resStr + dataIndex = valRes.newOffset + + userProperty![key!] = value + + default: + return + } + } + } + + if dataIndex < totalCount { + while dataIndex < totalCount { + guard let reasonCode = CocoaMQTTSUBACKReasonCode(rawValue: pubAckData[dataIndex]) else { + return + } + reasonCodes.append(reasonCode) + dataIndex += 1 + } + } + + } + +} diff --git a/Pods/CocoaMQTT/Source/MqttDecodeUnsubAck.swift b/Pods/CocoaMQTT/Source/MqttDecodeUnsubAck.swift new file mode 100644 index 0000000..ce0d3c6 --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttDecodeUnsubAck.swift @@ -0,0 +1,96 @@ +// +// MqttDecodeUnsubAck.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/8/16. +// + +import Foundation + +public class MqttDecodeUnsubAck: NSObject { + + var totalCount = 0 + var dataIndex = 0 + var propertyLength: Int = 0 + + public var reasonCodes: [CocoaMQTTUNSUBACKReasonCode] = [] + + public var msgid: UInt16 = 0 + public var reasonString: String? + public var userProperty: [String: String]? + + public func decodeUnSubAck(fixedHeader: UInt8, pubAckData: [UInt8]) { + totalCount = pubAckData.count + dataIndex = 0 + // msgid + let msgidResult = integerCompute(data: pubAckData, formatType: formatInt.formatUint16.rawValue, offset: dataIndex) + msgid = UInt16(msgidResult!.res) + dataIndex = msgidResult!.newOffset + + var protocolVersion = "" + if let storage = CocoaMQTTStorage() { + protocolVersion = storage.queryMQTTVersion() + } + + if protocolVersion == "5.0" { + // 3.11.2.1 UNSUBACK Properties + // 3.11.2.1.1 Property Length + let propertyLengthVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + propertyLength = propertyLengthVariableByteInteger.res + dataIndex = propertyLengthVariableByteInteger.newOffset + let occupyIndex = dataIndex + + while dataIndex < occupyIndex + propertyLength { + let resVariableByteInteger = decodeVariableByteInteger(data: pubAckData, offset: dataIndex) + dataIndex = resVariableByteInteger.newOffset + let propertyNameByte = resVariableByteInteger.res + guard let propertyName = CocoaMQTTPropertyName(rawValue: UInt8(propertyNameByte)) else { + break + } + + switch propertyName.rawValue { + // 3.11.2.1.2 Reason String + case CocoaMQTTPropertyName.reasonString.rawValue: + guard let result = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + reasonString = result.resStr + dataIndex = result.newOffset + + // 3.11.2.1.3 User Property + case CocoaMQTTPropertyName.userProperty.rawValue: + var key: String? + var value: String? + guard let keyRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + key = keyRes.resStr + dataIndex = keyRes.newOffset + + guard let valRes = unsignedByteToString(data: pubAckData, offset: dataIndex) else { + break + } + value = valRes.resStr + dataIndex = valRes.newOffset + + userProperty![key!] = value + + default: + return + } + } + } + + if dataIndex < totalCount { + while dataIndex < totalCount { + guard let reasonCode = CocoaMQTTUNSUBACKReasonCode(rawValue: pubAckData[dataIndex]) else { + return + } + reasonCodes.append(reasonCode) + dataIndex += 1 + } + } + + } + +} diff --git a/Pods/CocoaMQTT/Source/MqttPublishProperties.swift b/Pods/CocoaMQTT/Source/MqttPublishProperties.swift new file mode 100644 index 0000000..c772065 --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttPublishProperties.swift @@ -0,0 +1,93 @@ +// +// MqttPublishProperties.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/7/27. +// + +import Foundation + +public class MqttPublishProperties: NSObject { + + // 3.3.2.3 PUBLISH Properties + // 3.3.2.3.1 Property Length + public var propertyLength: Int? + // 3.3.2.3.2 Payload Format Indicator + public var payloadFormatIndicator: PayloadFormatIndicator? + // 3.3.2.3.3 Message Expiry Interval + public var messageExpiryInterval: UInt32? + // 3.3.2.3.4 Topic Alias + public var topicAlias: UInt16? + // 3.3.2.3.5 Response Topic + public var responseTopic: String? + // 3.3.2.3.6 Correlation Data + public var correlationData: [UInt8]? + // 3.3.2.3.7 Property + public var userProperty: [String: String]? + // 3.3.2.3.8 Subscription Identifier + public var subscriptionIdentifier: UInt32? + // 3.3.2.3.9 Content Type + public var contentType: String? + + public init( + propertyLength: Int? = nil, + payloadFormatIndicator: PayloadFormatIndicator? = nil, + messageExpiryInterval: UInt32? = nil, + topicAlias: UInt16? = nil, + responseTopic: String? = nil, + correlation: String? = nil, + userProperty: [String: String]? = nil, + subscriptionIdentifier: UInt32? = nil, + contentType: String? = nil + ) { + self.propertyLength = propertyLength + self.payloadFormatIndicator = payloadFormatIndicator + self.messageExpiryInterval = messageExpiryInterval + self.topicAlias = topicAlias + self.responseTopic = responseTopic + self.correlationData = correlation?.bytesWithLength + self.userProperty = userProperty + self.subscriptionIdentifier = subscriptionIdentifier + self.contentType = contentType + } + + public var properties: [UInt8] { + var properties = [UInt8]() + + // 3.3.2.3.2 Payload Format Indicator + if let payloadFormatIndicator = self.payloadFormatIndicator { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.payloadFormatIndicator.rawValue, value: [payloadFormatIndicator.rawValue]) + } + // 3.3.2.3.3 Message Expiry Interval + if let messageExpiryInterval = self.messageExpiryInterval { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.willExpiryInterval.rawValue, value: messageExpiryInterval.byteArrayLittleEndian) + } + // 3.3.2.3.4 Topic Alias + if let topicAlias = self.topicAlias { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.topicAlias.rawValue, value: topicAlias.hlBytes) + } + // 3.3.2.3.5 Response Topic + if let responseTopic = self.responseTopic { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.responseTopic.rawValue, value: responseTopic.bytesWithLength) + } + // 3.3.2.3.6 Correlation Data + if let correlationData = self.correlationData { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.correlationData.rawValue, value: correlationData) + } + // 3.3.2.3.7 Property Length User Property + if let userProperty = self.userProperty { + properties += userProperty.userPropertyBytes + } + // 3.3.2.3.8 Subscription Identifier + if let subscriptionIdentifier = self.subscriptionIdentifier, + let subscriptionIdentifier = beVariableByteInteger(subscriptionIdentifier) { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.subscriptionIdentifier.rawValue, value: subscriptionIdentifier) + } + // 3.3.2.3.9 Content Type + if let contentType = self.contentType { + properties += getMQTTPropertyData(type: CocoaMQTTPropertyName.contentType.rawValue, value: contentType.bytesWithLength) + } + + return properties + } +} diff --git a/Pods/CocoaMQTT/Source/MqttSubscription.swift b/Pods/CocoaMQTT/Source/MqttSubscription.swift new file mode 100644 index 0000000..721178b --- /dev/null +++ b/Pods/CocoaMQTT/Source/MqttSubscription.swift @@ -0,0 +1,76 @@ +// +// MqttSubscription.swift +// CocoaMQTT +// +// Created by liwei wang on 2021/7/15. +// + +import Foundation + +/// 3.8.3.1 Subscription Options +public class MqttSubscription { + + public var topic: String + public var qos = CocoaMQTTQoS.qos1 + public var noLocal: Bool = false + public var retainAsPublished: Bool = false + public var retainHandling: CocoaRetainHandlingOption = .sendOnSubscribe + public var subscriptionOptions: Bool = false + + public init(topic: String) { + self.topic = topic + } + + public init(topic: String, qos: CocoaMQTTQoS) { + self.topic = topic + self.qos = qos + } + + var subscriptionData: [UInt8] { + var data = [UInt8]() + + data += topic.bytesWithLength + + var options: Int = 0 + switch self.qos { + case .qos0: + options = options | 0b0000_0000 + case .qos1: + options = options | 0b0000_0001 + case .qos2: + options = options | 0b0000_0010 + default: + printDebug("topicFilter qos failure") + } + + switch self.noLocal { + case true: + options = options | 0b0000_0100 + case false: + options = options | 0b0000_0000 + } + + switch self.retainAsPublished { + case true: + options = options | 0b0000_1000 + case false: + options = options | 0b0000_0000 + } + + switch self.retainHandling { + case CocoaRetainHandlingOption.none: + options = options | 0b0010_0000 + case CocoaRetainHandlingOption.sendOnlyWhenSubscribeIsNew: + options = options | 0b0001_0000 + case CocoaRetainHandlingOption.sendOnSubscribe: + options = options | 0b0000_0000 + } + + if subscriptionOptions { + data += [UInt8(options)] + } + + return data + } + +} diff --git a/Pods/CocoaMQTT/Source/ThreadSafeDictionary.swift b/Pods/CocoaMQTT/Source/ThreadSafeDictionary.swift new file mode 100644 index 0000000..19fbc83 --- /dev/null +++ b/Pods/CocoaMQTT/Source/ThreadSafeDictionary.swift @@ -0,0 +1,78 @@ +// +// Copyright © 2022. All rights reserved. +// + +import Foundation + +/// A thread-safe dictionary +public class ThreadSafeDictionary: Collection { + private var dictionary: [K: V] + private let concurrentQueue: DispatchQueue + + public var startIndex: Dictionary.Index { + concurrentQueue.sync { + return self.dictionary.startIndex + } + } + + public var endIndex: Dictionary.Index { + concurrentQueue.sync { + return self.dictionary.endIndex + } + } + + public init(label: String, dict: [K: V] = [K: V]()) { + self.dictionary = dict + concurrentQueue = DispatchQueue(label: label, attributes: .concurrent) + } + + public func index(after i: Dictionary.Index) -> Dictionary.Index { + concurrentQueue.sync { + self.dictionary.index(after: i) + } + } + + public subscript(key: K) -> V? { + get { + concurrentQueue.sync { + self.dictionary[key] + } + } + set(newValue) { + concurrentQueue.async(flags: .barrier) {[weak self] in + self?.dictionary[key] = newValue + } + } + } + + public subscript(index: Dictionary.Index) -> Dictionary.Element { + concurrentQueue.sync { + self.dictionary[index] + } + } + + @discardableResult + public func removeValue(forKey key: K) -> V? { + concurrentQueue.sync(flags: .barrier) { + self.dictionary.removeValue(forKey: key) + } + } + + public func removeAll() { + concurrentQueue.async(flags: .barrier) {[weak self] in + self?.dictionary.removeAll() + } + } + + public func snapshot() -> [K: V] { + concurrentQueue.sync { + dictionary + } + } + + public func replace(with newDictionary: [K: V]) { + concurrentQueue.sync(flags: .barrier) { + dictionary = newDictionary + } + } +} diff --git a/Pods/CocoaMQTT/Source/utilities/ConcurrentAtomic.swift b/Pods/CocoaMQTT/Source/utilities/ConcurrentAtomic.swift new file mode 100644 index 0000000..bb03ef7 --- /dev/null +++ b/Pods/CocoaMQTT/Source/utilities/ConcurrentAtomic.swift @@ -0,0 +1,73 @@ +import Foundation + +/// A thread-safe property wrapper that uses a concurrent dispatch queue for atomic operations. +/// +/// This wrapper provides both synchronous and asynchronous access to a wrapped value in a +/// thread-safe manner using `DispatchQueue` with `.concurrent` attributes and `.barrier` writes. +/// +/// - Important: Although this wrapper provides atomicity for access, it does not make the wrapped +/// value itself thread-safe if the type is not thread-safe. Avoid wrapping types that manage +/// internal shared state without their own synchronization. +/// +/// - Example: +/// ```swift +/// @ConcurrentAtomic var counter: Int = 0 +/// counter += 1 +/// print(counter) +/// ``` +@propertyWrapper +public class ConcurrentAtomic { + private var _value: T + private let queue: DispatchQueue + + /// Provides synchronous thread-safe access to the wrapped value. + /// + /// - Note: Reads use `queue.sync` and can happen concurrently. + /// - Warning: Writes are done asynchronously with `.barrier`, so a following read may + /// not reflect the new value immediately. + public var wrappedValue: T { + get { + queue.sync { _value } + } + set { + queue.async(flags: .barrier) { + self._value = newValue + } + } + } + + /// Returns the property wrapper instance itself for advanced usage, including mutation and transformation APIs. + public var projectedValue: ConcurrentAtomic { self } + + /// Initializes the property wrapper with an initial value and a custom queue label. + /// + /// - Parameters: + /// - wrappedValue: The initial value to store. + /// - label: A debug label for the underlying `DispatchQueue`. Default is `"ConcurrentAtomic.Queue"`. + public init(wrappedValue: T, label: String = "ConcurrentAtomic.Queue") { + self._value = wrappedValue + self.queue = DispatchQueue(label: label, attributes: .concurrent) + } + + /// Synchronously sets a new value in a thread-safe manner. + /// + /// This uses `.barrier` to ensure the new value is fully written before continuing. + /// + /// - Parameter newValue: The new value to be written. + public func setSync(_ newValue: T) { + queue.sync(flags: .barrier) { + self._value = newValue + } + } + + /// Asynchronously mutates the wrapped value using a transform closure. + /// + /// The mutation is performed with `.barrier`, ensuring it does not overlap with other reads or writes. + /// + /// - Parameter transform: A closure that receives `inout` access to the wrapped value. + public func mutate(_ transform: @escaping (inout T) -> Void) { + queue.async(flags: .barrier) { + transform(&self._value) + } + } +} diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index b5bfe45..75c9e6a 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -11,6 +11,10 @@ PODS: - CocoaLumberjack/Core (3.9.1) - CocoaLumberjack/Swift (3.9.1): - CocoaLumberjack/Core + - CocoaMQTT (2.2.5): + - CocoaMQTT/Core (= 2.2.5) + - CocoaMQTT/Core (2.2.5): + - MqttCocoaAsyncSocket (~> 1.0.8) - Differentiator (5.0.0) - GTCommonSDK (3.2.3.0): - ZXSDK @@ -89,6 +93,7 @@ PODS: - Moya/Core (= 15.0.0) - Moya/Core (15.0.0): - Alamofire (~> 5.0) + - MqttCocoaAsyncSocket (1.0.8) - ObjectMapper (4.4.2) - "OpenIMSDK (3.8.3+hotfix.3.1)": - MJExtension @@ -174,6 +179,7 @@ DEPENDENCIES: - AMapLocation - AMapSearch - CocoaLumberjack/Swift + - CocoaMQTT - GYSDK - HXPHPicker - IQKeyboardManagerSwift @@ -215,6 +221,7 @@ SPEC REPOS: - AMapLocation - AMapSearch - CocoaLumberjack + - CocoaMQTT - Differentiator - GTCommonSDK - GYSDK @@ -236,6 +243,7 @@ SPEC REPOS: - MJExtension - MJRefresh - Moya + - MqttCocoaAsyncSocket - ObjectMapper - OpenIMSDK - OpenIMSDKCore @@ -277,6 +285,7 @@ SPEC CHECKSUMS: AMapLocation: 6e44f50b044dc54c6b3dcb1dee5ffd6de2689e41 AMapSearch: 29224a399b56b17da1540e4312fc4d9dc37342bb CocoaLumberjack: e4ba3b414dfca8c1916c6303d37f63b3a95134c6 + CocoaMQTT: 1e2fa493d57045d66fb1eba2bb5ffb8d77039c60 Differentiator: e8497ceab83c1b10ca233716d547b9af21b9344d GTCommonSDK: 238c6735add91e654f8564638854686ee3dcb4ac GYSDK: db5f4b3aae8df06201be5e786076211ec11791be @@ -299,6 +308,7 @@ SPEC CHECKSUMS: MJExtension: e97d164cb411aa9795cf576093a1fa208b4a8dd8 MJRefresh: ff9e531227924c84ce459338414550a05d2aea78 Moya: 138f0573e53411fb3dc17016add0b748dfbd78ee + MqttCocoaAsyncSocket: 77d3b74f76228dd5a05d1f9526eab101d415b30c ObjectMapper: e6e4d91ff7f2861df7aecc536c92d8363f4c9677 OpenIMSDK: c1880296ead605bcac2a289ad0aef9170fe6e6df OpenIMSDKCore: 75caba22be8ee484011f367711178312bd64a17d @@ -323,6 +333,6 @@ SPEC CHECKSUMS: YYImage: 1e1b62a9997399593e4b9c4ecfbbabbf1d3f3b54 ZXSDK: 786338c0a18e98e03eda00699c3bfd2700b97117 -PODFILE CHECKSUM: 6ba8ada83ccc565c9bdcc418e9a936818640882c +PODFILE CHECKSUM: 861114200722c29adba98535aef6b0494d123b44 COCOAPODS: 1.16.2 diff --git a/Pods/MqttCocoaAsyncSocket/LICENSE.txt b/Pods/MqttCocoaAsyncSocket/LICENSE.txt new file mode 100644 index 0000000..ed3d60f --- /dev/null +++ b/Pods/MqttCocoaAsyncSocket/LICENSE.txt @@ -0,0 +1,35 @@ +This library is in the public domain. +However, not all organizations are allowed to use such a license. +For example, Germany doesn't recognize the Public Domain and one is not allowed to use libraries under such license (or similar). + +Thus, the library is now dual licensed, +and one is allowed to choose which license they would like to use. + +################################################## +License Option #1 : +################################################## + +Public Domain + +################################################## +License Option #2 : +################################################## + +Software License Agreement (BSD License) + +Copyright (c) 2017, Deusty, LLC +All rights reserved. + +Redistribution and use of this software in source and binary forms, +with or without modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above + copyright notice, this list of conditions and the + following disclaimer. + +* Neither the name of Deusty LLC nor the names of its + contributors may be used to endorse or promote products + derived from this software without specific prior + written permission of Deusty LLC. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/Pods/MqttCocoaAsyncSocket/README.markdown b/Pods/MqttCocoaAsyncSocket/README.markdown new file mode 100644 index 0000000..6592dd7 --- /dev/null +++ b/Pods/MqttCocoaAsyncSocket/README.markdown @@ -0,0 +1,121 @@ +# CocoaAsyncSocket +[![Build Status](https://travis-ci.org/robbiehanson/CocoaAsyncSocket.svg?branch=master)](https://travis-ci.org/robbiehanson/CocoaAsyncSocket) [![Version Status](https://img.shields.io/cocoapods/v/CocoaAsyncSocket.svg?style=flat)](http://cocoadocs.org/docsets/CocoaAsyncSocket) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![Platform](http://img.shields.io/cocoapods/p/CocoaAsyncSocket.svg?style=flat)](http://cocoapods.org/?q=CocoaAsyncSocket) [![license Public Domain](https://img.shields.io/badge/license-Public%20Domain-orange.svg?style=flat)](https://en.wikipedia.org/wiki/Public_domain) + + +CocoaAsyncSocket provides easy-to-use and powerful asynchronous socket libraries for macOS, iOS, and tvOS. The classes are described below. + +## Installation + +#### CocoaPods + +Install using [CocoaPods](https://cocoapods.org) by adding this line to your Podfile: + +````ruby +use_frameworks! # Add this if you are targeting iOS 8+ or using Swift +pod 'CocoaAsyncSocket' +```` + +#### Carthage + +CocoaAsyncSocket is [Carthage](https://github.com/Carthage/Carthage) compatible. To include it add the following line to your `Cartfile` + +```bash +github "robbiehanson/CocoaAsyncSocket" "master" +``` + +The project is currently configured to build for **iOS**, **tvOS** and **Mac**. After building with carthage the resultant frameworks will be stored in: + +* `Carthage/Build/iOS/CocoaAsyncSocket.framework` +* `Carthage/Build/tvOS/CocoaAsyncSocket.framework` +* `Carthage/Build/Mac/CocoaAsyncSocket.framework` + +Select the correct framework(s) and drag it into your project. + +#### Swift Package Manager + +Simply add the package dependency to your Package.swift and depend on "CocoaAsyncSocket" in the necessary targets: +```swift +dependencies: [ + .package(url: "https://github.com/robbiehanson/CocoaAsyncSocket", from: "7.6.4") +] +``` + +#### Manual + +You can also include it into your project by adding the source files directly, but you should probably be using a dependency manager to keep up to date. + +### Importing + +Using Objective-C: + +```obj-c +// When using Clang Modules: +@import MqttCocoaAsyncSocket; + +// or when not: +#import "GCDAsyncSocket.h" // for TCP +#import "GCDAsyncUdpSocket.h" // for UDP +``` + +Using Swift: + +```swift +import MqttCocoaAsyncSocket +``` + +## TCP + +**GCDAsyncSocket** is a TCP/IP socket networking library built atop Grand Central Dispatch. Here are the key features available: + +- Native Objective-C, fully self-contained in one class.
+ _No need to muck around with sockets or streams. This class handles everything for you._ + +- Full delegate support
+ _Errors, connections, read completions, write completions, progress, and disconnections all result in a call to your delegate method._ + +- Queued non-blocking reads and writes, with optional timeouts.
+ _You tell it what to read or write, and it handles everything for you. Queueing, buffering, and searching for termination sequences within the stream - all handled for you automatically._ + +- Automatic socket acceptance.
+ _Spin up a server socket, tell it to accept connections, and it will call you with new instances of itself for each connection._ + +- Support for TCP streams over IPv4 and IPv6.
+ _Automatically connect to IPv4 or IPv6 hosts. Automatically accept incoming connections over both IPv4 and IPv6 with a single instance of this class. No more worrying about multiple sockets._ + +- Support for TLS / SSL
+ _Secure your socket with ease using just a single method call. Available for both client and server sockets._ + +- Fully GCD based and Thread-Safe
+ _It runs entirely within its own GCD dispatch_queue, and is completely thread-safe. Further, the delegate methods are all invoked asynchronously onto a dispatch_queue of your choosing. This means parallel operation of your socket code, and your delegate/processing code._ + +## UDP + +**GCDAsyncUdpSocket** is a UDP/IP socket networking library built atop Grand Central Dispatch. Here are the key features available: + +- Native Objective-C, fully self-contained in one class.
+ _No need to muck around with low-level sockets. This class handles everything for you._ + +- Full delegate support.
+ _Errors, send completions, receive completions, and disconnections all result in a call to your delegate method._ + +- Queued non-blocking send and receive operations, with optional timeouts.
+ _You tell it what to send or receive, and it handles everything for you. Queueing, buffering, waiting and checking errno - all handled for you automatically._ + +- Support for IPv4 and IPv6.
+ _Automatically send/recv using IPv4 and/or IPv6. No more worrying about multiple sockets._ + +- Fully GCD based and Thread-Safe
+ _It runs entirely within its own GCD dispatch_queue, and is completely thread-safe. Further, the delegate methods are all invoked asynchronously onto a dispatch_queue of your choosing. This means parallel operation of your socket code, and your delegate/processing code._ + +*** + +For those new(ish) to networking, it's recommended you **[read the wiki](https://github.com/robbiehanson/CocoaAsyncSocket/wiki)**.
_Sockets might not work exactly like you think they do..._ + +**Still got questions?** Try the **[CocoaAsyncSocket Mailing List](https://groups.google.com/group/cocoaasyncsocket)**. +*** + +Love the project? Wanna buy me a ☕️  ? (or a 🍺  😀 ): + +[![donation-bitcoin](https://bitpay.com/img/donate-sm.png)](https://onename.com/robbiehanson) +[![donation-paypal](https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2M8C699FQ8AW2) + diff --git a/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncSocket.h b/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncSocket.h new file mode 100644 index 0000000..8f1699c --- /dev/null +++ b/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncSocket.h @@ -0,0 +1,1226 @@ +// +// MGCDAsyncSocket.h +// +// This class is in the public domain. +// Originally created by Robbie Hanson in Q3 2010. +// Updated and maintained by Deusty LLC and the Apple development community. +// +// https://github.com/robbiehanson/CocoaAsyncSocket +// + +#import +#import +#import +#import +#import + +#include // AF_INET, AF_INET6 + +@class MGCDAsyncReadPacket; +@class MGCDAsyncWritePacket; +@class MGCDAsyncSocketPreBuffer; +@protocol MGCDAsyncSocketDelegate; + +NS_ASSUME_NONNULL_BEGIN + +extern NSString *const MGCDAsyncSocketException; +extern NSString *const MGCDAsyncSocketErrorDomain; + +extern NSString *const MGCDAsyncSocketQueueName; +extern NSString *const MGCDAsyncSocketThreadName; + +extern NSString *const MGCDAsyncSocketManuallyEvaluateTrust; +#if TARGET_OS_IPHONE +extern NSString *const MGCDAsyncSocketUseCFStreamForTLS; +#endif +#define MGCDAsyncSocketSSLPeerName (NSString *)kCFStreamSSLPeerName +#define MGCDAsyncSocketSSLCertificates (NSString *)kCFStreamSSLCertificates +#define MGCDAsyncSocketSSLIsServer (NSString *)kCFStreamSSLIsServer +extern NSString *const MGCDAsyncSocketSSLPeerID; +extern NSString *const MGCDAsyncSocketSSLProtocolVersionMin; +extern NSString *const MGCDAsyncSocketSSLProtocolVersionMax; +extern NSString *const MGCDAsyncSocketSSLSessionOptionFalseStart; +extern NSString *const MGCDAsyncSocketSSLSessionOptionSendOneByteRecord; +extern NSString *const MGCDAsyncSocketSSLCipherSuites; +extern NSString *const MGCDAsyncSocketSSLALPN; +#if !TARGET_OS_IPHONE +extern NSString *const MGCDAsyncSocketSSLDiffieHellmanParameters; +#endif + +#define MGCDAsyncSocketLoggingContext 65535 + + +typedef NS_ERROR_ENUM(MGCDAsyncSocketErrorDomain, MGCDAsyncSocketError) { + MGCDAsyncSocketNoError = 0, // Never used + MGCDAsyncSocketBadConfigError, // Invalid configuration + MGCDAsyncSocketBadParamError, // Invalid parameter was passed + MGCDAsyncSocketConnectTimeoutError, // A connect operation timed out + MGCDAsyncSocketReadTimeoutError, // A read operation timed out + MGCDAsyncSocketWriteTimeoutError, // A write operation timed out + MGCDAsyncSocketReadMaxedOutError, // Reached set maxLength without completing + MGCDAsyncSocketClosedError, // The remote peer closed the connection + MGCDAsyncSocketOtherError, // Description provided in userInfo +}; + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + +@interface MGCDAsyncSocket : NSObject + +/** + * MGCDAsyncSocket uses the standard delegate paradigm, + * but executes all delegate callbacks on a given delegate dispatch queue. + * This allows for maximum concurrency, while at the same time providing easy thread safety. + * + * You MUST set a delegate AND delegate dispatch queue before attempting to + * use the socket, or you will get an error. + * + * The socket queue is optional. + * If you pass NULL, MGCDAsyncSocket will automatically create it's own socket queue. + * If you choose to provide a socket queue, the socket queue must not be a concurrent queue. + * If you choose to provide a socket queue, and the socket queue has a configured target queue, + * then please see the discussion for the method markSocketQueueTargetQueue. + * + * The delegate queue and socket queue can optionally be the same. +**/ +- (instancetype)init; +- (instancetype)initWithSocketQueue:(nullable dispatch_queue_t)sq; +- (instancetype)initWithDelegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq; +- (instancetype)initWithDelegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq socketQueue:(nullable dispatch_queue_t)sq NS_DESIGNATED_INITIALIZER; + +/** + * Create MGCDAsyncSocket from already connect BSD socket file descriptor +**/ ++ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD socketQueue:(nullable dispatch_queue_t)sq error:(NSError**)error; + ++ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD delegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq error:(NSError**)error; + ++ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD delegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq socketQueue:(nullable dispatch_queue_t)sq error:(NSError **)error; + +#pragma mark Configuration + +@property (atomic, weak, readwrite, nullable) id delegate; +#if OS_OBJECT_USE_OBJC +@property (atomic, strong, readwrite, nullable) dispatch_queue_t delegateQueue; +#else +@property (atomic, assign, readwrite, nullable) dispatch_queue_t delegateQueue; +#endif + +- (void)getDelegate:(id __nullable * __nullable)delegatePtr delegateQueue:(dispatch_queue_t __nullable * __nullable)delegateQueuePtr; +- (void)setDelegate:(nullable id)delegate delegateQueue:(nullable dispatch_queue_t)delegateQueue; + +/** + * If you are setting the delegate to nil within the delegate's dealloc method, + * you may need to use the synchronous versions below. +**/ +- (void)synchronouslySetDelegate:(nullable id)delegate; +- (void)synchronouslySetDelegateQueue:(nullable dispatch_queue_t)delegateQueue; +- (void)synchronouslySetDelegate:(nullable id)delegate delegateQueue:(nullable dispatch_queue_t)delegateQueue; + +/** + * By default, both IPv4 and IPv6 are enabled. + * + * For accepting incoming connections, this means MGCDAsyncSocket automatically supports both protocols, + * and can simulataneously accept incoming connections on either protocol. + * + * For outgoing connections, this means MGCDAsyncSocket can connect to remote hosts running either protocol. + * If a DNS lookup returns only IPv4 results, MGCDAsyncSocket will automatically use IPv4. + * If a DNS lookup returns only IPv6 results, MGCDAsyncSocket will automatically use IPv6. + * If a DNS lookup returns both IPv4 and IPv6 results, the preferred protocol will be chosen. + * By default, the preferred protocol is IPv4, but may be configured as desired. +**/ + +@property (atomic, assign, readwrite, getter=isIPv4Enabled) BOOL IPv4Enabled; +@property (atomic, assign, readwrite, getter=isIPv6Enabled) BOOL IPv6Enabled; + +@property (atomic, assign, readwrite, getter=isIPv4PreferredOverIPv6) BOOL IPv4PreferredOverIPv6; + +/** + * When connecting to both IPv4 and IPv6 using Happy Eyeballs (RFC 6555) https://tools.ietf.org/html/rfc6555 + * this is the delay between connecting to the preferred protocol and the fallback protocol. + * + * Defaults to 300ms. +**/ +@property (atomic, assign, readwrite) NSTimeInterval alternateAddressDelay; + +/** + * User data allows you to associate arbitrary information with the socket. + * This data is not used internally by socket in any way. +**/ +@property (atomic, strong, readwrite, nullable) id userData; + +#pragma mark Accepting + +/** + * Tells the socket to begin listening and accepting connections on the given port. + * When a connection is accepted, a new instance of MGCDAsyncSocket will be spawned to handle it, + * and the socket:didAcceptNewSocket: delegate method will be invoked. + * + * The socket will listen on all available interfaces (e.g. wifi, ethernet, etc) +**/ +- (BOOL)acceptOnPort:(uint16_t)port error:(NSError **)errPtr; + +/** + * This method is the same as acceptOnPort:error: with the + * additional option of specifying which interface to listen on. + * + * For example, you could specify that the socket should only accept connections over ethernet, + * and not other interfaces such as wifi. + * + * The interface may be specified by name (e.g. "en1" or "lo0") or by IP address (e.g. "192.168.4.34"). + * You may also use the special strings "localhost" or "loopback" to specify that + * the socket only accept connections from the local machine. + * + * You can see the list of interfaces via the command line utility "ifconfig", + * or programmatically via the getifaddrs() function. + * + * To accept connections on any interface pass nil, or simply use the acceptOnPort:error: method. +**/ +- (BOOL)acceptOnInterface:(nullable NSString *)interface port:(uint16_t)port error:(NSError **)errPtr; + +/** + * Tells the socket to begin listening and accepting connections on the unix domain at the given url. + * When a connection is accepted, a new instance of MGCDAsyncSocket will be spawned to handle it, + * and the socket:didAcceptNewSocket: delegate method will be invoked. + * + * The socket will listen on all available interfaces (e.g. wifi, ethernet, etc) + **/ +- (BOOL)acceptOnUrl:(NSURL *)url error:(NSError **)errPtr; + +#pragma mark Connecting + +/** + * Connects to the given host and port. + * + * This method invokes connectToHost:onPort:viaInterface:withTimeout:error: + * and uses the default interface, and no timeout. +**/ +- (BOOL)connectToHost:(NSString *)host onPort:(uint16_t)port error:(NSError **)errPtr; + +/** + * Connects to the given host and port with an optional timeout. + * + * This method invokes connectToHost:onPort:viaInterface:withTimeout:error: and uses the default interface. +**/ +- (BOOL)connectToHost:(NSString *)host + onPort:(uint16_t)port + withTimeout:(NSTimeInterval)timeout + error:(NSError **)errPtr; + +/** + * Connects to the given host & port, via the optional interface, with an optional timeout. + * + * The host may be a domain name (e.g. "deusty.com") or an IP address string (e.g. "192.168.0.2"). + * The host may also be the special strings "localhost" or "loopback" to specify connecting + * to a service on the local machine. + * + * The interface may be a name (e.g. "en1" or "lo0") or the corresponding IP address (e.g. "192.168.4.35"). + * The interface may also be used to specify the local port (see below). + * + * To not time out use a negative time interval. + * + * This method will return NO if an error is detected, and set the error pointer (if one was given). + * Possible errors would be a nil host, invalid interface, or socket is already connected. + * + * If no errors are detected, this method will start a background connect operation and immediately return YES. + * The delegate callbacks are used to notify you when the socket connects, or if the host was unreachable. + * + * Since this class supports queued reads and writes, you can immediately start reading and/or writing. + * All read/write operations will be queued, and upon socket connection, + * the operations will be dequeued and processed in order. + * + * The interface may optionally contain a port number at the end of the string, separated by a colon. + * This allows you to specify the local port that should be used for the outgoing connection. (read paragraph to end) + * To specify both interface and local port: "en1:8082" or "192.168.4.35:2424". + * To specify only local port: ":8082". + * Please note this is an advanced feature, and is somewhat hidden on purpose. + * You should understand that 99.999% of the time you should NOT specify the local port for an outgoing connection. + * If you think you need to, there is a very good chance you have a fundamental misunderstanding somewhere. + * Local ports do NOT need to match remote ports. In fact, they almost never do. + * This feature is here for networking professionals using very advanced techniques. +**/ +- (BOOL)connectToHost:(NSString *)host + onPort:(uint16_t)port + viaInterface:(nullable NSString *)interface + withTimeout:(NSTimeInterval)timeout + error:(NSError **)errPtr; + +/** + * Connects to the given address, specified as a sockaddr structure wrapped in a NSData object. + * For example, a NSData object returned from NSNetService's addresses method. + * + * If you have an existing struct sockaddr you can convert it to a NSData object like so: + * struct sockaddr sa -> NSData *dsa = [NSData dataWithBytes:&remoteAddr length:remoteAddr.sa_len]; + * struct sockaddr *sa -> NSData *dsa = [NSData dataWithBytes:remoteAddr length:remoteAddr->sa_len]; + * + * This method invokes connectToAddress:remoteAddr viaInterface:nil withTimeout:-1 error:errPtr. +**/ +- (BOOL)connectToAddress:(NSData *)remoteAddr error:(NSError **)errPtr; + +/** + * This method is the same as connectToAddress:error: with an additional timeout option. + * To not time out use a negative time interval, or simply use the connectToAddress:error: method. +**/ +- (BOOL)connectToAddress:(NSData *)remoteAddr withTimeout:(NSTimeInterval)timeout error:(NSError **)errPtr; + +/** + * Connects to the given address, using the specified interface and timeout. + * + * The address is specified as a sockaddr structure wrapped in a NSData object. + * For example, a NSData object returned from NSNetService's addresses method. + * + * If you have an existing struct sockaddr you can convert it to a NSData object like so: + * struct sockaddr sa -> NSData *dsa = [NSData dataWithBytes:&remoteAddr length:remoteAddr.sa_len]; + * struct sockaddr *sa -> NSData *dsa = [NSData dataWithBytes:remoteAddr length:remoteAddr->sa_len]; + * + * The interface may be a name (e.g. "en1" or "lo0") or the corresponding IP address (e.g. "192.168.4.35"). + * The interface may also be used to specify the local port (see below). + * + * The timeout is optional. To not time out use a negative time interval. + * + * This method will return NO if an error is detected, and set the error pointer (if one was given). + * Possible errors would be a nil host, invalid interface, or socket is already connected. + * + * If no errors are detected, this method will start a background connect operation and immediately return YES. + * The delegate callbacks are used to notify you when the socket connects, or if the host was unreachable. + * + * Since this class supports queued reads and writes, you can immediately start reading and/or writing. + * All read/write operations will be queued, and upon socket connection, + * the operations will be dequeued and processed in order. + * + * The interface may optionally contain a port number at the end of the string, separated by a colon. + * This allows you to specify the local port that should be used for the outgoing connection. (read paragraph to end) + * To specify both interface and local port: "en1:8082" or "192.168.4.35:2424". + * To specify only local port: ":8082". + * Please note this is an advanced feature, and is somewhat hidden on purpose. + * You should understand that 99.999% of the time you should NOT specify the local port for an outgoing connection. + * If you think you need to, there is a very good chance you have a fundamental misunderstanding somewhere. + * Local ports do NOT need to match remote ports. In fact, they almost never do. + * This feature is here for networking professionals using very advanced techniques. +**/ +- (BOOL)connectToAddress:(NSData *)remoteAddr + viaInterface:(nullable NSString *)interface + withTimeout:(NSTimeInterval)timeout + error:(NSError **)errPtr; +/** + * Connects to the unix domain socket at the given url, using the specified timeout. + */ +- (BOOL)connectToUrl:(NSURL *)url withTimeout:(NSTimeInterval)timeout error:(NSError **)errPtr; + +/** + * Iterates over the given NetService's addresses in order, and invokes connectToAddress:error:. Stops at the + * first invocation that succeeds and returns YES; otherwise returns NO. + */ +- (BOOL)connectToNetService:(NSNetService *)netService error:(NSError **)errPtr; + +#pragma mark Disconnecting + +/** + * Disconnects immediately (synchronously). Any pending reads or writes are dropped. + * + * If the socket is not already disconnected, an invocation to the socketDidDisconnect:withError: delegate method + * will be queued onto the delegateQueue asynchronously (behind any previously queued delegate methods). + * In other words, the disconnected delegate method will be invoked sometime shortly after this method returns. + * + * Please note the recommended way of releasing a MGCDAsyncSocket instance (e.g. in a dealloc method) + * [asyncSocket setDelegate:nil]; + * [asyncSocket disconnect]; + * [asyncSocket release]; + * + * If you plan on disconnecting the socket, and then immediately asking it to connect again, + * you'll likely want to do so like this: + * [asyncSocket setDelegate:nil]; + * [asyncSocket disconnect]; + * [asyncSocket setDelegate:self]; + * [asyncSocket connect...]; +**/ +- (void)disconnect; + +/** + * Disconnects after all pending reads have completed. + * After calling this, the read and write methods will do nothing. + * The socket will disconnect even if there are still pending writes. +**/ +- (void)disconnectAfterReading; + +/** + * Disconnects after all pending writes have completed. + * After calling this, the read and write methods will do nothing. + * The socket will disconnect even if there are still pending reads. +**/ +- (void)disconnectAfterWriting; + +/** + * Disconnects after all pending reads and writes have completed. + * After calling this, the read and write methods will do nothing. +**/ +- (void)disconnectAfterReadingAndWriting; + +#pragma mark Diagnostics + +/** + * Returns whether the socket is disconnected or connected. + * + * A disconnected socket may be recycled. + * That is, it can be used again for connecting or listening. + * + * If a socket is in the process of connecting, it may be neither disconnected nor connected. +**/ +@property (atomic, readonly) BOOL isDisconnected; +@property (atomic, readonly) BOOL isConnected; + +/** + * Returns the local or remote host and port to which this socket is connected, or nil and 0 if not connected. + * The host will be an IP address. +**/ +@property (atomic, readonly, nullable) NSString *connectedHost; +@property (atomic, readonly) uint16_t connectedPort; +@property (atomic, readonly, nullable) NSURL *connectedUrl; + +@property (atomic, readonly, nullable) NSString *localHost; +@property (atomic, readonly) uint16_t localPort; + +/** + * Returns the local or remote address to which this socket is connected, + * specified as a sockaddr structure wrapped in a NSData object. + * + * @seealso connectedHost + * @seealso connectedPort + * @seealso localHost + * @seealso localPort +**/ +@property (atomic, readonly, nullable) NSData *connectedAddress; +@property (atomic, readonly, nullable) NSData *localAddress; + +/** + * Returns whether the socket is IPv4 or IPv6. + * An accepting socket may be both. +**/ +@property (atomic, readonly) BOOL isIPv4; +@property (atomic, readonly) BOOL isIPv6; + +/** + * Returns whether or not the socket has been secured via SSL/TLS. + * + * See also the startTLS method. +**/ +@property (atomic, readonly) BOOL isSecure; + +#pragma mark Reading + +// The readData and writeData methods won't block (they are asynchronous). +// +// When a read is complete the socket:didReadData:withTag: delegate method is dispatched on the delegateQueue. +// When a write is complete the socket:didWriteDataWithTag: delegate method is dispatched on the delegateQueue. +// +// You may optionally set a timeout for any read/write operation. (To not timeout, use a negative time interval.) +// If a read/write opertion times out, the corresponding "socket:shouldTimeout..." delegate method +// is called to optionally allow you to extend the timeout. +// Upon a timeout, the "socket:didDisconnectWithError:" method is called +// +// The tag is for your convenience. +// You can use it as an array index, step number, state id, pointer, etc. + +/** + * Reads the first available bytes that become available on the socket. + * + * If the timeout value is negative, the read operation will not use a timeout. +**/ +- (void)readDataWithTimeout:(NSTimeInterval)timeout tag:(long)tag; + +/** + * Reads the first available bytes that become available on the socket. + * The bytes will be appended to the given byte buffer starting at the given offset. + * The given buffer will automatically be increased in size if needed. + * + * If the timeout value is negative, the read operation will not use a timeout. + * If the buffer is nil, the socket will create a buffer for you. + * + * If the bufferOffset is greater than the length of the given buffer, + * the method will do nothing, and the delegate will not be called. + * + * If you pass a buffer, you must not alter it in any way while the socket is using it. + * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. + * That is, it will reference the bytes that were appended to the given buffer via + * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. +**/ +- (void)readDataWithTimeout:(NSTimeInterval)timeout + buffer:(nullable NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + tag:(long)tag; + +/** + * Reads the first available bytes that become available on the socket. + * The bytes will be appended to the given byte buffer starting at the given offset. + * The given buffer will automatically be increased in size if needed. + * A maximum of length bytes will be read. + * + * If the timeout value is negative, the read operation will not use a timeout. + * If the buffer is nil, a buffer will automatically be created for you. + * If maxLength is zero, no length restriction is enforced. + * + * If the bufferOffset is greater than the length of the given buffer, + * the method will do nothing, and the delegate will not be called. + * + * If you pass a buffer, you must not alter it in any way while the socket is using it. + * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. + * That is, it will reference the bytes that were appended to the given buffer via + * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. +**/ +- (void)readDataWithTimeout:(NSTimeInterval)timeout + buffer:(nullable NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + maxLength:(NSUInteger)length + tag:(long)tag; + +/** + * Reads the given number of bytes. + * + * If the timeout value is negative, the read operation will not use a timeout. + * + * If the length is 0, this method does nothing and the delegate is not called. +**/ +- (void)readDataToLength:(NSUInteger)length withTimeout:(NSTimeInterval)timeout tag:(long)tag; + +/** + * Reads the given number of bytes. + * The bytes will be appended to the given byte buffer starting at the given offset. + * The given buffer will automatically be increased in size if needed. + * + * If the timeout value is negative, the read operation will not use a timeout. + * If the buffer is nil, a buffer will automatically be created for you. + * + * If the length is 0, this method does nothing and the delegate is not called. + * If the bufferOffset is greater than the length of the given buffer, + * the method will do nothing, and the delegate will not be called. + * + * If you pass a buffer, you must not alter it in any way while AsyncSocket is using it. + * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. + * That is, it will reference the bytes that were appended to the given buffer via + * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. +**/ +- (void)readDataToLength:(NSUInteger)length + withTimeout:(NSTimeInterval)timeout + buffer:(nullable NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + tag:(long)tag; + +/** + * Reads bytes until (and including) the passed "data" parameter, which acts as a separator. + * + * If the timeout value is negative, the read operation will not use a timeout. + * + * If you pass nil or zero-length data as the "data" parameter, + * the method will do nothing (except maybe print a warning), and the delegate will not be called. + * + * To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter. + * If you're developing your own custom protocol, be sure your separator can not occur naturally as + * part of the data between separators. + * For example, imagine you want to send several small documents over a socket. + * Using CRLF as a separator is likely unwise, as a CRLF could easily exist within the documents. + * In this particular example, it would be better to use a protocol similar to HTTP with + * a header that includes the length of the document. + * Also be careful that your separator cannot occur naturally as part of the encoding for a character. + * + * The given data (separator) parameter should be immutable. + * For performance reasons, the socket will retain it, not copy it. + * So if it is immutable, don't modify it while the socket is using it. +**/ +- (void)readDataToData:(nullable NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag; + +/** + * Reads bytes until (and including) the passed "data" parameter, which acts as a separator. + * The bytes will be appended to the given byte buffer starting at the given offset. + * The given buffer will automatically be increased in size if needed. + * + * If the timeout value is negative, the read operation will not use a timeout. + * If the buffer is nil, a buffer will automatically be created for you. + * + * If the bufferOffset is greater than the length of the given buffer, + * the method will do nothing (except maybe print a warning), and the delegate will not be called. + * + * If you pass a buffer, you must not alter it in any way while the socket is using it. + * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. + * That is, it will reference the bytes that were appended to the given buffer via + * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. + * + * To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter. + * If you're developing your own custom protocol, be sure your separator can not occur naturally as + * part of the data between separators. + * For example, imagine you want to send several small documents over a socket. + * Using CRLF as a separator is likely unwise, as a CRLF could easily exist within the documents. + * In this particular example, it would be better to use a protocol similar to HTTP with + * a header that includes the length of the document. + * Also be careful that your separator cannot occur naturally as part of the encoding for a character. + * + * The given data (separator) parameter should be immutable. + * For performance reasons, the socket will retain it, not copy it. + * So if it is immutable, don't modify it while the socket is using it. +**/ +- (void)readDataToData:(NSData *)data + withTimeout:(NSTimeInterval)timeout + buffer:(nullable NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + tag:(long)tag; + +/** + * Reads bytes until (and including) the passed "data" parameter, which acts as a separator. + * + * If the timeout value is negative, the read operation will not use a timeout. + * + * If maxLength is zero, no length restriction is enforced. + * Otherwise if maxLength bytes are read without completing the read, + * it is treated similarly to a timeout - the socket is closed with a MGCDAsyncSocketReadMaxedOutError. + * The read will complete successfully if exactly maxLength bytes are read and the given data is found at the end. + * + * If you pass nil or zero-length data as the "data" parameter, + * the method will do nothing (except maybe print a warning), and the delegate will not be called. + * If you pass a maxLength parameter that is less than the length of the data parameter, + * the method will do nothing (except maybe print a warning), and the delegate will not be called. + * + * To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter. + * If you're developing your own custom protocol, be sure your separator can not occur naturally as + * part of the data between separators. + * For example, imagine you want to send several small documents over a socket. + * Using CRLF as a separator is likely unwise, as a CRLF could easily exist within the documents. + * In this particular example, it would be better to use a protocol similar to HTTP with + * a header that includes the length of the document. + * Also be careful that your separator cannot occur naturally as part of the encoding for a character. + * + * The given data (separator) parameter should be immutable. + * For performance reasons, the socket will retain it, not copy it. + * So if it is immutable, don't modify it while the socket is using it. +**/ +- (void)readDataToData:(NSData *)data withTimeout:(NSTimeInterval)timeout maxLength:(NSUInteger)length tag:(long)tag; + +/** + * Reads bytes until (and including) the passed "data" parameter, which acts as a separator. + * The bytes will be appended to the given byte buffer starting at the given offset. + * The given buffer will automatically be increased in size if needed. + * + * If the timeout value is negative, the read operation will not use a timeout. + * If the buffer is nil, a buffer will automatically be created for you. + * + * If maxLength is zero, no length restriction is enforced. + * Otherwise if maxLength bytes are read without completing the read, + * it is treated similarly to a timeout - the socket is closed with a MGCDAsyncSocketReadMaxedOutError. + * The read will complete successfully if exactly maxLength bytes are read and the given data is found at the end. + * + * If you pass a maxLength parameter that is less than the length of the data (separator) parameter, + * the method will do nothing (except maybe print a warning), and the delegate will not be called. + * If the bufferOffset is greater than the length of the given buffer, + * the method will do nothing (except maybe print a warning), and the delegate will not be called. + * + * If you pass a buffer, you must not alter it in any way while the socket is using it. + * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. + * That is, it will reference the bytes that were appended to the given buffer via + * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. + * + * To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter. + * If you're developing your own custom protocol, be sure your separator can not occur naturally as + * part of the data between separators. + * For example, imagine you want to send several small documents over a socket. + * Using CRLF as a separator is likely unwise, as a CRLF could easily exist within the documents. + * In this particular example, it would be better to use a protocol similar to HTTP with + * a header that includes the length of the document. + * Also be careful that your separator cannot occur naturally as part of the encoding for a character. + * + * The given data (separator) parameter should be immutable. + * For performance reasons, the socket will retain it, not copy it. + * So if it is immutable, don't modify it while the socket is using it. +**/ +- (void)readDataToData:(NSData *)data + withTimeout:(NSTimeInterval)timeout + buffer:(nullable NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + maxLength:(NSUInteger)length + tag:(long)tag; + +/** + * Returns progress of the current read, from 0.0 to 1.0, or NaN if no current read (use isnan() to check). + * The parameters "tag", "done" and "total" will be filled in if they aren't NULL. +**/ +- (float)progressOfReadReturningTag:(nullable long *)tagPtr bytesDone:(nullable NSUInteger *)donePtr total:(nullable NSUInteger *)totalPtr; + +#pragma mark Writing + +/** + * Writes data to the socket, and calls the delegate when finished. + * + * If you pass in nil or zero-length data, this method does nothing and the delegate will not be called. + * If the timeout value is negative, the write operation will not use a timeout. + * + * Thread-Safety Note: + * If the given data parameter is mutable (NSMutableData) then you MUST NOT alter the data while + * the socket is writing it. In other words, it's not safe to alter the data until after the delegate method + * socket:didWriteDataWithTag: is invoked signifying that this particular write operation has completed. + * This is due to the fact that MGCDAsyncSocket does NOT copy the data. It simply retains it. + * This is for performance reasons. Often times, if NSMutableData is passed, it is because + * a request/response was built up in memory. Copying this data adds an unwanted/unneeded overhead. + * If you need to write data from an immutable buffer, and you need to alter the buffer before the socket + * completes writing the bytes (which is NOT immediately after this method returns, but rather at a later time + * when the delegate method notifies you), then you should first copy the bytes, and pass the copy to this method. +**/ +- (void)writeData:(nullable NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag; + +/** + * Returns progress of the current write, from 0.0 to 1.0, or NaN if no current write (use isnan() to check). + * The parameters "tag", "done" and "total" will be filled in if they aren't NULL. +**/ +- (float)progressOfWriteReturningTag:(nullable long *)tagPtr bytesDone:(nullable NSUInteger *)donePtr total:(nullable NSUInteger *)totalPtr; + +#pragma mark Security + +/** + * Secures the connection using SSL/TLS. + * + * This method may be called at any time, and the TLS handshake will occur after all pending reads and writes + * are finished. This allows one the option of sending a protocol dependent StartTLS message, and queuing + * the upgrade to TLS at the same time, without having to wait for the write to finish. + * Any reads or writes scheduled after this method is called will occur over the secured connection. + * + * ==== The available TOP-LEVEL KEYS are: + * + * - MGCDAsyncSocketManuallyEvaluateTrust + * The value must be of type NSNumber, encapsulating a BOOL value. + * If you set this to YES, then the underlying SecureTransport system will not evaluate the SecTrustRef of the peer. + * Instead it will pause at the moment evaulation would typically occur, + * and allow us to handle the security evaluation however we see fit. + * So MGCDAsyncSocket will invoke the delegate method socket:shouldTrustPeer: passing the SecTrustRef. + * + * Note that if you set this option, then all other configuration keys are ignored. + * Evaluation will be completely up to you during the socket:didReceiveTrust:completionHandler: delegate method. + * + * For more information on trust evaluation see: + * Apple's Technical Note TN2232 - HTTPS Server Trust Evaluation + * https://developer.apple.com/library/ios/technotes/tn2232/_index.html + * + * If unspecified, the default value is NO. + * + * - MGCDAsyncSocketUseCFStreamForTLS (iOS only) + * The value must be of type NSNumber, encapsulating a BOOL value. + * By default MGCDAsyncSocket will use the SecureTransport layer to perform encryption. + * This gives us more control over the security protocol (many more configuration options), + * plus it allows us to optimize things like sys calls and buffer allocation. + * + * However, if you absolutely must, you can instruct MGCDAsyncSocket to use the old-fashioned encryption + * technique by going through the CFStream instead. So instead of using SecureTransport, MGCDAsyncSocket + * will instead setup a CFRead/CFWriteStream. And then set the kCFStreamPropertySSLSettings property + * (via CFReadStreamSetProperty / CFWriteStreamSetProperty) and will pass the given options to this method. + * + * Thus all the other keys in the given dictionary will be ignored by MGCDAsyncSocket, + * and will passed directly CFReadStreamSetProperty / CFWriteStreamSetProperty. + * For more infomation on these keys, please see the documentation for kCFStreamPropertySSLSettings. + * + * If unspecified, the default value is NO. + * + * ==== The available CONFIGURATION KEYS are: + * + * - kCFStreamSSLPeerName + * The value must be of type NSString. + * It should match the name in the X.509 certificate given by the remote party. + * See Apple's documentation for SSLSetPeerDomainName. + * + * - kCFStreamSSLCertificates + * The value must be of type NSArray. + * See Apple's documentation for SSLSetCertificate. + * + * - kCFStreamSSLIsServer + * The value must be of type NSNumber, encapsulationg a BOOL value. + * See Apple's documentation for SSLCreateContext for iOS. + * This is optional for iOS. If not supplied, a NO value is the default. + * This is not needed for Mac OS X, and the value is ignored. + * + * - MGCDAsyncSocketSSLPeerID + * The value must be of type NSData. + * You must set this value if you want to use TLS session resumption. + * See Apple's documentation for SSLSetPeerID. + * + * - MGCDAsyncSocketSSLProtocolVersionMin + * - MGCDAsyncSocketSSLProtocolVersionMax + * The value(s) must be of type NSNumber, encapsulting a SSLProtocol value. + * See Apple's documentation for SSLSetProtocolVersionMin & SSLSetProtocolVersionMax. + * See also the SSLProtocol typedef. + * + * - MGCDAsyncSocketSSLSessionOptionFalseStart + * The value must be of type NSNumber, encapsulating a BOOL value. + * See Apple's documentation for kSSLSessionOptionFalseStart. + * + * - MGCDAsyncSocketSSLSessionOptionSendOneByteRecord + * The value must be of type NSNumber, encapsulating a BOOL value. + * See Apple's documentation for kSSLSessionOptionSendOneByteRecord. + * + * - MGCDAsyncSocketSSLCipherSuites + * The values must be of type NSArray. + * Each item within the array must be a NSNumber, encapsulating an SSLCipherSuite. + * See Apple's documentation for SSLSetEnabledCiphers. + * See also the SSLCipherSuite typedef. + * + * - MGCDAsyncSocketSSLDiffieHellmanParameters (Mac OS X only) + * The value must be of type NSData. + * See Apple's documentation for SSLSetDiffieHellmanParams. + * + * ==== The following UNAVAILABLE KEYS are: (with throw an exception) + * + * - kCFStreamSSLAllowsAnyRoot (UNAVAILABLE) + * You MUST use manual trust evaluation instead (see MGCDAsyncSocketManuallyEvaluateTrust). + * Corresponding deprecated method: SSLSetAllowsAnyRoot + * + * - kCFStreamSSLAllowsExpiredRoots (UNAVAILABLE) + * You MUST use manual trust evaluation instead (see MGCDAsyncSocketManuallyEvaluateTrust). + * Corresponding deprecated method: SSLSetAllowsExpiredRoots + * + * - kCFStreamSSLAllowsExpiredCertificates (UNAVAILABLE) + * You MUST use manual trust evaluation instead (see MGCDAsyncSocketManuallyEvaluateTrust). + * Corresponding deprecated method: SSLSetAllowsExpiredCerts + * + * - kCFStreamSSLValidatesCertificateChain (UNAVAILABLE) + * You MUST use manual trust evaluation instead (see MGCDAsyncSocketManuallyEvaluateTrust). + * Corresponding deprecated method: SSLSetEnableCertVerify + * + * - kCFStreamSSLLevel (UNAVAILABLE) + * You MUST use MGCDAsyncSocketSSLProtocolVersionMin & MGCDAsyncSocketSSLProtocolVersionMin instead. + * Corresponding deprecated method: SSLSetProtocolVersionEnabled + * + * + * Please refer to Apple's documentation for corresponding SSLFunctions. + * + * If you pass in nil or an empty dictionary, the default settings will be used. + * + * IMPORTANT SECURITY NOTE: + * The default settings will check to make sure the remote party's certificate is signed by a + * trusted 3rd party certificate agency (e.g. verisign) and that the certificate is not expired. + * However it will not verify the name on the certificate unless you + * give it a name to verify against via the kCFStreamSSLPeerName key. + * The security implications of this are important to understand. + * Imagine you are attempting to create a secure connection to MySecureServer.com, + * but your socket gets directed to MaliciousServer.com because of a hacked DNS server. + * If you simply use the default settings, and MaliciousServer.com has a valid certificate, + * the default settings will not detect any problems since the certificate is valid. + * To properly secure your connection in this particular scenario you + * should set the kCFStreamSSLPeerName property to "MySecureServer.com". + * + * You can also perform additional validation in socketDidSecure. +**/ +- (void)startTLS:(nullable NSDictionary *)tlsSettings; + +#pragma mark Advanced + +/** + * Traditionally sockets are not closed until the conversation is over. + * However, it is technically possible for the remote enpoint to close its write stream. + * Our socket would then be notified that there is no more data to be read, + * but our socket would still be writeable and the remote endpoint could continue to receive our data. + * + * The argument for this confusing functionality stems from the idea that a client could shut down its + * write stream after sending a request to the server, thus notifying the server there are to be no further requests. + * In practice, however, this technique did little to help server developers. + * + * To make matters worse, from a TCP perspective there is no way to tell the difference from a read stream close + * and a full socket close. They both result in the TCP stack receiving a FIN packet. The only way to tell + * is by continuing to write to the socket. If it was only a read stream close, then writes will continue to work. + * Otherwise an error will be occur shortly (when the remote end sends us a RST packet). + * + * In addition to the technical challenges and confusion, many high level socket/stream API's provide + * no support for dealing with the problem. If the read stream is closed, the API immediately declares the + * socket to be closed, and shuts down the write stream as well. In fact, this is what Apple's CFStream API does. + * It might sound like poor design at first, but in fact it simplifies development. + * + * The vast majority of the time if the read stream is closed it's because the remote endpoint closed its socket. + * Thus it actually makes sense to close the socket at this point. + * And in fact this is what most networking developers want and expect to happen. + * However, if you are writing a server that interacts with a plethora of clients, + * you might encounter a client that uses the discouraged technique of shutting down its write stream. + * If this is the case, you can set this property to NO, + * and make use of the socketDidCloseReadStream delegate method. + * + * The default value is YES. +**/ +@property (atomic, assign, readwrite) BOOL autoDisconnectOnClosedReadStream; + +/** + * MGCDAsyncSocket maintains thread safety by using an internal serial dispatch_queue. + * In most cases, the instance creates this queue itself. + * However, to allow for maximum flexibility, the internal queue may be passed in the init method. + * This allows for some advanced options such as controlling socket priority via target queues. + * However, when one begins to use target queues like this, they open the door to some specific deadlock issues. + * + * For example, imagine there are 2 queues: + * dispatch_queue_t socketQueue; + * dispatch_queue_t socketTargetQueue; + * + * If you do this (pseudo-code): + * socketQueue.targetQueue = socketTargetQueue; + * + * Then all socketQueue operations will actually get run on the given socketTargetQueue. + * This is fine and works great in most situations. + * But if you run code directly from within the socketTargetQueue that accesses the socket, + * you could potentially get deadlock. Imagine the following code: + * + * - (BOOL)socketHasSomething + * { + * __block BOOL result = NO; + * dispatch_block_t block = ^{ + * result = [self someInternalMethodToBeRunOnlyOnSocketQueue]; + * } + * if (is_executing_on_queue(socketQueue)) + * block(); + * else + * dispatch_sync(socketQueue, block); + * + * return result; + * } + * + * What happens if you call this method from the socketTargetQueue? The result is deadlock. + * This is because the MGCD API offers no mechanism to discover a queue's targetQueue. + * Thus we have no idea if our socketQueue is configured with a targetQueue. + * If we had this information, we could easily avoid deadlock. + * But, since these API's are missing or unfeasible, you'll have to explicitly set it. + * + * IF you pass a socketQueue via the init method, + * AND you've configured the passed socketQueue with a targetQueue, + * THEN you should pass the end queue in the target hierarchy. + * + * For example, consider the following queue hierarchy: + * socketQueue -> ipQueue -> moduleQueue + * + * This example demonstrates priority shaping within some server. + * All incoming client connections from the same IP address are executed on the same target queue. + * And all connections for a particular module are executed on the same target queue. + * Thus, the priority of all networking for the entire module can be changed on the fly. + * Additionally, networking traffic from a single IP cannot monopolize the module. + * + * Here's how you would accomplish something like that: + * - (dispatch_queue_t)newSocketQueueForConnectionFromAddress:(NSData *)address onSocket:(MGCDAsyncSocket *)sock + * { + * dispatch_queue_t socketQueue = dispatch_queue_create("", NULL); + * dispatch_queue_t ipQueue = [self ipQueueForAddress:address]; + * + * dispatch_set_target_queue(socketQueue, ipQueue); + * dispatch_set_target_queue(iqQueue, moduleQueue); + * + * return socketQueue; + * } + * - (void)socket:(MGCDAsyncSocket *)sock didAcceptNewSocket:(MGCDAsyncSocket *)newSocket + * { + * [clientConnections addObject:newSocket]; + * [newSocket markSocketQueueTargetQueue:moduleQueue]; + * } + * + * Note: This workaround is ONLY needed if you intend to execute code directly on the ipQueue or moduleQueue. + * This is often NOT the case, as such queues are used solely for execution shaping. +**/ +- (void)markSocketQueueTargetQueue:(dispatch_queue_t)socketQueuesPreConfiguredTargetQueue; +- (void)unmarkSocketQueueTargetQueue:(dispatch_queue_t)socketQueuesPreviouslyConfiguredTargetQueue; + +/** + * It's not thread-safe to access certain variables from outside the socket's internal queue. + * + * For example, the socket file descriptor. + * File descriptors are simply integers which reference an index in the per-process file table. + * However, when one requests a new file descriptor (by opening a file or socket), + * the file descriptor returned is guaranteed to be the lowest numbered unused descriptor. + * So if we're not careful, the following could be possible: + * + * - Thread A invokes a method which returns the socket's file descriptor. + * - The socket is closed via the socket's internal queue on thread B. + * - Thread C opens a file, and subsequently receives the file descriptor that was previously the socket's FD. + * - Thread A is now accessing/altering the file instead of the socket. + * + * In addition to this, other variables are not actually objects, + * and thus cannot be retained/released or even autoreleased. + * An example is the sslContext, of type SSLContextRef, which is actually a malloc'd struct. + * + * Although there are internal variables that make it difficult to maintain thread-safety, + * it is important to provide access to these variables + * to ensure this class can be used in a wide array of environments. + * This method helps to accomplish this by invoking the current block on the socket's internal queue. + * The methods below can be invoked from within the block to access + * those generally thread-unsafe internal variables in a thread-safe manner. + * The given block will be invoked synchronously on the socket's internal queue. + * + * If you save references to any protected variables and use them outside the block, you do so at your own peril. +**/ +- (void)performBlock:(dispatch_block_t)block; + +/** + * These methods are only available from within the context of a performBlock: invocation. + * See the documentation for the performBlock: method above. + * + * Provides access to the socket's file descriptor(s). + * If the socket is a server socket (is accepting incoming connections), + * it might actually have multiple internal socket file descriptors - one for IPv4 and one for IPv6. +**/ +- (int)socketFD; +- (int)socket4FD; +- (int)socket6FD; + +#if TARGET_OS_IPHONE + +/** + * These methods are only available from within the context of a performBlock: invocation. + * See the documentation for the performBlock: method above. + * + * Provides access to the socket's internal CFReadStream/CFWriteStream. + * + * These streams are only used as workarounds for specific iOS shortcomings: + * + * - Apple has decided to keep the SecureTransport framework private is iOS. + * This means the only supplied way to do SSL/TLS is via CFStream or some other API layered on top of it. + * Thus, in order to provide SSL/TLS support on iOS we are forced to rely on CFStream, + * instead of the preferred and faster and more powerful SecureTransport. + * + * - If a socket doesn't have backgrounding enabled, and that socket is closed while the app is backgrounded, + * Apple only bothers to notify us via the CFStream API. + * The faster and more powerful MGCD API isn't notified properly in this case. + * + * See also: (BOOL)enableBackgroundingOnSocket +**/ +- (nullable CFReadStreamRef)readStream; +- (nullable CFWriteStreamRef)writeStream; + +/** + * This method is only available from within the context of a performBlock: invocation. + * See the documentation for the performBlock: method above. + * + * Configures the socket to allow it to operate when the iOS application has been backgrounded. + * In other words, this method creates a read & write stream, and invokes: + * + * CFReadStreamSetProperty(readStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); + * CFWriteStreamSetProperty(writeStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); + * + * Returns YES if successful, NO otherwise. + * + * Note: Apple does not officially support backgrounding server sockets. + * That is, if your socket is accepting incoming connections, Apple does not officially support + * allowing iOS applications to accept incoming connections while an app is backgrounded. + * + * Example usage: + * + * - (void)socket:(MGCDAsyncSocket *)sock didConnectToHost:(NSString *)host port:(uint16_t)port + * { + * [asyncSocket performBlock:^{ + * [asyncSocket enableBackgroundingOnSocket]; + * }]; + * } +**/ +- (BOOL)enableBackgroundingOnSocket; + +#endif + +/** + * This method is only available from within the context of a performBlock: invocation. + * See the documentation for the performBlock: method above. + * + * Provides access to the socket's SSLContext, if SSL/TLS has been started on the socket. +**/ +- (nullable SSLContextRef)sslContext; + +#pragma mark Utilities + +/** + * The address lookup utility used by the class. + * This method is synchronous, so it's recommended you use it on a background thread/queue. + * + * The special strings "localhost" and "loopback" return the loopback address for IPv4 and IPv6. + * + * @returns + * A mutable array with all IPv4 and IPv6 addresses returned by getaddrinfo. + * The addresses are specifically for TCP connections. + * You can filter the addresses, if needed, using the other utility methods provided by the class. +**/ ++ (nullable NSMutableArray *)lookupHost:(NSString *)host port:(uint16_t)port error:(NSError **)errPtr; + +/** + * Extracting host and port information from raw address data. +**/ + ++ (nullable NSString *)hostFromAddress:(NSData *)address; ++ (uint16_t)portFromAddress:(NSData *)address; + ++ (BOOL)isIPv4Address:(NSData *)address; ++ (BOOL)isIPv6Address:(NSData *)address; + ++ (BOOL)getHost:( NSString * __nullable * __nullable)hostPtr port:(nullable uint16_t *)portPtr fromAddress:(NSData *)address; + ++ (BOOL)getHost:(NSString * __nullable * __nullable)hostPtr port:(nullable uint16_t *)portPtr family:(nullable sa_family_t *)afPtr fromAddress:(NSData *)address; + +/** + * A few common line separators, for use with the readDataToData:... methods. +**/ ++ (NSData *)CRLFData; // 0x0D0A ++ (NSData *)CRData; // 0x0D ++ (NSData *)LFData; // 0x0A ++ (NSData *)ZeroData; // 0x00 + +@end + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +@protocol MGCDAsyncSocketDelegate +@optional + +/** + * This method is called immediately prior to socket:didAcceptNewSocket:. + * It optionally allows a listening socket to specify the socketQueue for a new accepted socket. + * If this method is not implemented, or returns NULL, the new accepted socket will create its own default queue. + * + * Since you cannot autorelease a dispatch_queue, + * this method uses the "new" prefix in its name to specify that the returned queue has been retained. + * + * Thus you could do something like this in the implementation: + * return dispatch_queue_create("MyQueue", NULL); + * + * If you are placing multiple sockets on the same queue, + * then care should be taken to increment the retain count each time this method is invoked. + * + * For example, your implementation might look something like this: + * dispatch_retain(myExistingQueue); + * return myExistingQueue; +**/ +- (nullable dispatch_queue_t)newSocketQueueForConnectionFromAddress:(NSData *)address onSocket:(MGCDAsyncSocket *)sock; + +/** + * Called when a socket accepts a connection. + * Another socket is automatically spawned to handle it. + * + * You must retain the newSocket if you wish to handle the connection. + * Otherwise the newSocket instance will be released and the spawned connection will be closed. + * + * By default the new socket will have the same delegate and delegateQueue. + * You may, of course, change this at any time. +**/ +- (void)socket:(MGCDAsyncSocket *)sock didAcceptNewSocket:(MGCDAsyncSocket *)newSocket; + +/** + * Called when a socket connects and is ready for reading and writing. + * The host parameter will be an IP address, not a DNS name. +**/ +- (void)socket:(MGCDAsyncSocket *)sock didConnectToHost:(NSString *)host port:(uint16_t)port; + +/** + * Called when a socket connects and is ready for reading and writing. + * The host parameter will be an IP address, not a DNS name. + **/ +- (void)socket:(MGCDAsyncSocket *)sock didConnectToUrl:(NSURL *)url; + +/** + * Called when a socket has completed reading the requested data into memory. + * Not called if there is an error. +**/ +- (void)socket:(MGCDAsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag; + +/** + * Called when a socket has read in data, but has not yet completed the read. + * This would occur if using readToData: or readToLength: methods. + * It may be used for things such as updating progress bars. +**/ +- (void)socket:(MGCDAsyncSocket *)sock didReadPartialDataOfLength:(NSUInteger)partialLength tag:(long)tag; + +/** + * Called when a socket has completed writing the requested data. Not called if there is an error. +**/ +- (void)socket:(MGCDAsyncSocket *)sock didWriteDataWithTag:(long)tag; + +/** + * Called when a socket has written some data, but has not yet completed the entire write. + * It may be used for things such as updating progress bars. +**/ +- (void)socket:(MGCDAsyncSocket *)sock didWritePartialDataOfLength:(NSUInteger)partialLength tag:(long)tag; + +/** + * Called if a read operation has reached its timeout without completing. + * This method allows you to optionally extend the timeout. + * If you return a positive time interval (> 0) the read's timeout will be extended by the given amount. + * If you don't implement this method, or return a non-positive time interval (<= 0) the read will timeout as usual. + * + * The elapsed parameter is the sum of the original timeout, plus any additions previously added via this method. + * The length parameter is the number of bytes that have been read so far for the read operation. + * + * Note that this method may be called multiple times for a single read if you return positive numbers. +**/ +- (NSTimeInterval)socket:(MGCDAsyncSocket *)sock shouldTimeoutReadWithTag:(long)tag + elapsed:(NSTimeInterval)elapsed + bytesDone:(NSUInteger)length; + +/** + * Called if a write operation has reached its timeout without completing. + * This method allows you to optionally extend the timeout. + * If you return a positive time interval (> 0) the write's timeout will be extended by the given amount. + * If you don't implement this method, or return a non-positive time interval (<= 0) the write will timeout as usual. + * + * The elapsed parameter is the sum of the original timeout, plus any additions previously added via this method. + * The length parameter is the number of bytes that have been written so far for the write operation. + * + * Note that this method may be called multiple times for a single write if you return positive numbers. +**/ +- (NSTimeInterval)socket:(MGCDAsyncSocket *)sock shouldTimeoutWriteWithTag:(long)tag + elapsed:(NSTimeInterval)elapsed + bytesDone:(NSUInteger)length; + +/** + * Conditionally called if the read stream closes, but the write stream may still be writeable. + * + * This delegate method is only called if autoDisconnectOnClosedReadStream has been set to NO. + * See the discussion on the autoDisconnectOnClosedReadStream method for more information. +**/ +- (void)socketDidCloseReadStream:(MGCDAsyncSocket *)sock; + +/** + * Called when a socket disconnects with or without error. + * + * If you call the disconnect method, and the socket wasn't already disconnected, + * then an invocation of this delegate method will be enqueued on the delegateQueue + * before the disconnect method returns. + * + * Note: If the MGCDAsyncSocket instance is deallocated while it is still connected, + * and the delegate is not also deallocated, then this method will be invoked, + * but the sock parameter will be nil. (It must necessarily be nil since it is no longer available.) + * This is a generally rare, but is possible if one writes code like this: + * + * asyncSocket = nil; // I'm implicitly disconnecting the socket + * + * In this case it may preferrable to nil the delegate beforehand, like this: + * + * asyncSocket.delegate = nil; // Don't invoke my delegate method + * asyncSocket = nil; // I'm implicitly disconnecting the socket + * + * Of course, this depends on how your state machine is configured. +**/ +- (void)socketDidDisconnect:(MGCDAsyncSocket *)sock withError:(nullable NSError *)err; + +/** + * Called after the socket has successfully completed SSL/TLS negotiation. + * This method is not called unless you use the provided startTLS method. + * + * If a SSL/TLS negotiation fails (invalid certificate, etc) then the socket will immediately close, + * and the socketDidDisconnect:withError: delegate method will be called with the specific SSL error code. +**/ +- (void)socketDidSecure:(MGCDAsyncSocket *)sock; + +/** + * Allows a socket delegate to hook into the TLS handshake and manually validate the peer it's connecting to. + * + * This is only called if startTLS is invoked with options that include: + * - MGCDAsyncSocketManuallyEvaluateTrust == YES + * + * Typically the delegate will use SecTrustEvaluate (and related functions) to properly validate the peer. + * + * Note from Apple's documentation: + * Because [SecTrustEvaluate] might look on the network for certificates in the certificate chain, + * [it] might block while attempting network access. You should never call it from your main thread; + * call it only from within a function running on a dispatch queue or on a separate thread. + * + * Thus this method uses a completionHandler block rather than a normal return value. + * The completionHandler block is thread-safe, and may be invoked from a background queue/thread. + * It is safe to invoke the completionHandler block even if the socket has been closed. +**/ +- (void)socket:(MGCDAsyncSocket *)sock didReceiveTrust:(SecTrustRef)trust + completionHandler:(void (^)(BOOL shouldTrustPeer))completionHandler; + +@end +NS_ASSUME_NONNULL_END diff --git a/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncSocket.m b/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncSocket.m new file mode 100755 index 0000000..79706ff --- /dev/null +++ b/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncSocket.m @@ -0,0 +1,8529 @@ +// +// MGCDAsyncSocket.m +// +// This class is in the public domain. +// Originally created by Robbie Hanson in Q4 2010. +// Updated and maintained by Deusty LLC and the Apple development community. +// +// https://github.com/robbiehanson/CocoaAsyncSocket +// + +#import "MGCDAsyncSocket.h" + +#if TARGET_OS_IPHONE +#import +#endif + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +#if ! __has_feature(objc_arc) +#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC). +// For more information see: https://github.com/robbiehanson/CocoaAsyncSocket/wiki/ARC +#endif + + +#ifndef MGCDAsyncSocketLoggingEnabled +#define MGCDAsyncSocketLoggingEnabled 0 +#endif + +#if MGCDAsyncSocketLoggingEnabled + +// Logging Enabled - See log level below + +// Logging uses the CocoaLumberjack framework (which is also MGCD based). +// https://github.com/robbiehanson/CocoaLumberjack +// +// It allows us to do a lot of logging without significantly slowing down the code. +#import "DDLog.h" + +#define LogAsync YES +#define LogContext MGCDAsyncSocketLoggingContext + +#define LogObjc(flg, frmt, ...) LOG_OBJC_MAYBE(LogAsync, logLevel, flg, LogContext, frmt, ##__VA_ARGS__) +#define LogC(flg, frmt, ...) LOG_C_MAYBE(LogAsync, logLevel, flg, LogContext, frmt, ##__VA_ARGS__) + +#define LogError(frmt, ...) LogObjc(LOG_FLAG_ERROR, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogWarn(frmt, ...) LogObjc(LOG_FLAG_WARN, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogInfo(frmt, ...) LogObjc(LOG_FLAG_INFO, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogVerbose(frmt, ...) LogObjc(LOG_FLAG_VERBOSE, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) + +#define LogCError(frmt, ...) LogC(LOG_FLAG_ERROR, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogCWarn(frmt, ...) LogC(LOG_FLAG_WARN, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogCInfo(frmt, ...) LogC(LOG_FLAG_INFO, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogCVerbose(frmt, ...) LogC(LOG_FLAG_VERBOSE, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) + +#define LogTrace() LogObjc(LOG_FLAG_VERBOSE, @"%@: %@", THIS_FILE, THIS_METHOD) +#define LogCTrace() LogC(LOG_FLAG_VERBOSE, @"%@: %s", THIS_FILE, __FUNCTION__) + +#ifndef MGCDAsyncSocketLogLevel +#define MGCDAsyncSocketLogLevel LOG_LEVEL_VERBOSE +#endif + +// Log levels : off, error, warn, info, verbose +static const int logLevel = MGCDAsyncSocketLogLevel; + +#else + +// Logging Disabled + +#define LogError(frmt, ...) {} +#define LogWarn(frmt, ...) {} +#define LogInfo(frmt, ...) {} +#define LogVerbose(frmt, ...) {} + +#define LogCError(frmt, ...) {} +#define LogCWarn(frmt, ...) {} +#define LogCInfo(frmt, ...) {} +#define LogCVerbose(frmt, ...) {} + +#define LogTrace() {} +#define LogCTrace(frmt, ...) {} + +#endif + +/** + * Seeing a return statements within an inner block + * can sometimes be mistaken for a return point of the enclosing method. + * This makes inline blocks a bit easier to read. +**/ +#define return_from_block return + +/** + * A socket file descriptor is really just an integer. + * It represents the index of the socket within the kernel. + * This makes invalid file descriptor comparisons easier to read. +**/ +#define SOCKET_NULL -1 + + +NSString *const MGCDAsyncSocketException = @"MGCDAsyncSocketException"; +NSString *const MGCDAsyncSocketErrorDomain = @"MGCDAsyncSocketErrorDomain"; + +NSString *const MGCDAsyncSocketQueueName = @"MGCDAsyncSocket"; +NSString *const MGCDAsyncSocketThreadName = @"MGCDAsyncSocket-CFStream"; + +NSString *const MGCDAsyncSocketManuallyEvaluateTrust = @"MGCDAsyncSocketManuallyEvaluateTrust"; +#if TARGET_OS_IPHONE +NSString *const MGCDAsyncSocketUseCFStreamForTLS = @"MGCDAsyncSocketUseCFStreamForTLS"; +#endif +NSString *const MGCDAsyncSocketSSLPeerID = @"MGCDAsyncSocketSSLPeerID"; +NSString *const MGCDAsyncSocketSSLProtocolVersionMin = @"MGCDAsyncSocketSSLProtocolVersionMin"; +NSString *const MGCDAsyncSocketSSLProtocolVersionMax = @"MGCDAsyncSocketSSLProtocolVersionMax"; +NSString *const MGCDAsyncSocketSSLSessionOptionFalseStart = @"MGCDAsyncSocketSSLSessionOptionFalseStart"; +NSString *const MGCDAsyncSocketSSLSessionOptionSendOneByteRecord = @"MGCDAsyncSocketSSLSessionOptionSendOneByteRecord"; +NSString *const MGCDAsyncSocketSSLCipherSuites = @"MGCDAsyncSocketSSLCipherSuites"; +NSString *const MGCDAsyncSocketSSLALPN = @"MGCDAsyncSocketSSLALPN"; +#if !TARGET_OS_IPHONE +NSString *const MGCDAsyncSocketSSLDiffieHellmanParameters = @"MGCDAsyncSocketSSLDiffieHellmanParameters"; +#endif + +enum MGCDAsyncSocketFlags +{ + kSocketStarted = 1 << 0, // If set, socket has been started (accepting/connecting) + kConnected = 1 << 1, // If set, the socket is connected + kForbidReadsWrites = 1 << 2, // If set, no new reads or writes are allowed + kReadsPaused = 1 << 3, // If set, reads are paused due to possible timeout + kWritesPaused = 1 << 4, // If set, writes are paused due to possible timeout + kDisconnectAfterReads = 1 << 5, // If set, disconnect after no more reads are queued + kDisconnectAfterWrites = 1 << 6, // If set, disconnect after no more writes are queued + kSocketCanAcceptBytes = 1 << 7, // If set, we know socket can accept bytes. If unset, it's unknown. + kReadSourceSuspended = 1 << 8, // If set, the read source is suspended + kWriteSourceSuspended = 1 << 9, // If set, the write source is suspended + kQueuedTLS = 1 << 10, // If set, we've queued an upgrade to TLS + kStartingReadTLS = 1 << 11, // If set, we're waiting for TLS negotiation to complete + kStartingWriteTLS = 1 << 12, // If set, we're waiting for TLS negotiation to complete + kSocketSecure = 1 << 13, // If set, socket is using secure communication via SSL/TLS + kSocketHasReadEOF = 1 << 14, // If set, we have read EOF from socket + kReadStreamClosed = 1 << 15, // If set, we've read EOF plus prebuffer has been drained + kDealloc = 1 << 16, // If set, the socket is being deallocated +#if TARGET_OS_IPHONE + kAddedStreamsToRunLoop = 1 << 17, // If set, CFStreams have been added to listener thread + kUsingCFStreamForTLS = 1 << 18, // If set, we're forced to use CFStream instead of SecureTransport + kSecureSocketHasBytesAvailable = 1 << 19, // If set, CFReadStream has notified us of bytes available +#endif +}; + +enum MGCDAsyncSocketConfig +{ + kIPv4Disabled = 1 << 0, // If set, IPv4 is disabled + kIPv6Disabled = 1 << 1, // If set, IPv6 is disabled + kPreferIPv6 = 1 << 2, // If set, IPv6 is preferred over IPv4 + kAllowHalfDuplexConnection = 1 << 3, // If set, the socket will stay open even if the read stream closes +}; + +#if TARGET_OS_IPHONE + static NSThread *cfstreamThread; // Used for CFStreams + + + static uint64_t cfstreamThreadRetainCount; // setup & teardown + static dispatch_queue_t cfstreamThreadSetupQueue; // setup & teardown +#endif + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * A PreBuffer is used when there is more data available on the socket + * than is being requested by current read request. + * In this case we slurp up all data from the socket (to minimize sys calls), + * and store additional yet unread data in a "prebuffer". + * + * The prebuffer is entirely drained before we read from the socket again. + * In other words, a large chunk of data is written is written to the prebuffer. + * The prebuffer is then drained via a series of one or more reads (for subsequent read request(s)). + * + * A ring buffer was once used for this purpose. + * But a ring buffer takes up twice as much memory as needed (double the size for mirroring). + * In fact, it generally takes up more than twice the needed size as everything has to be rounded up to vm_page_size. + * And since the prebuffer is always completely drained after being written to, a full ring buffer isn't needed. + * + * The current design is very simple and straight-forward, while also keeping memory requirements lower. +**/ + +@interface MGCDAsyncSocketPreBuffer : NSObject +{ + uint8_t *preBuffer; + size_t preBufferSize; + + uint8_t *readPointer; + uint8_t *writePointer; +} + +- (instancetype)initWithCapacity:(size_t)numBytes NS_DESIGNATED_INITIALIZER; + +- (void)ensureCapacityForWrite:(size_t)numBytes; + +- (size_t)availableBytes; +- (uint8_t *)readBuffer; + +- (void)getReadBuffer:(uint8_t **)bufferPtr availableBytes:(size_t *)availableBytesPtr; + +- (size_t)availableSpace; +- (uint8_t *)writeBuffer; + +- (void)getWriteBuffer:(uint8_t **)bufferPtr availableSpace:(size_t *)availableSpacePtr; + +- (void)didRead:(size_t)bytesRead; +- (void)didWrite:(size_t)bytesWritten; + +- (void)reset; + +@end + +@implementation MGCDAsyncSocketPreBuffer + +// Cover the superclass' designated initializer +- (instancetype)init NS_UNAVAILABLE +{ + NSAssert(0, @"Use the designated initializer"); + return nil; +} + +- (instancetype)initWithCapacity:(size_t)numBytes +{ + if ((self = [super init])) + { + preBufferSize = numBytes; + preBuffer = malloc(preBufferSize); + + readPointer = preBuffer; + writePointer = preBuffer; + } + return self; +} + +- (void)dealloc +{ + if (preBuffer) + free(preBuffer); +} + +- (void)ensureCapacityForWrite:(size_t)numBytes +{ + size_t availableSpace = [self availableSpace]; + + if (numBytes > availableSpace) + { + size_t additionalBytes = numBytes - availableSpace; + + size_t newPreBufferSize = preBufferSize + additionalBytes; + uint8_t *newPreBuffer = realloc(preBuffer, newPreBufferSize); + + size_t readPointerOffset = readPointer - preBuffer; + size_t writePointerOffset = writePointer - preBuffer; + + preBuffer = newPreBuffer; + preBufferSize = newPreBufferSize; + + readPointer = preBuffer + readPointerOffset; + writePointer = preBuffer + writePointerOffset; + } +} + +- (size_t)availableBytes +{ + return writePointer - readPointer; +} + +- (uint8_t *)readBuffer +{ + return readPointer; +} + +- (void)getReadBuffer:(uint8_t **)bufferPtr availableBytes:(size_t *)availableBytesPtr +{ + if (bufferPtr) *bufferPtr = readPointer; + if (availableBytesPtr) *availableBytesPtr = [self availableBytes]; +} + +- (void)didRead:(size_t)bytesRead +{ + readPointer += bytesRead; + + if (readPointer == writePointer) + { + // The prebuffer has been drained. Reset pointers. + readPointer = preBuffer; + writePointer = preBuffer; + } +} + +- (size_t)availableSpace +{ + return preBufferSize - (writePointer - preBuffer); +} + +- (uint8_t *)writeBuffer +{ + return writePointer; +} + +- (void)getWriteBuffer:(uint8_t **)bufferPtr availableSpace:(size_t *)availableSpacePtr +{ + if (bufferPtr) *bufferPtr = writePointer; + if (availableSpacePtr) *availableSpacePtr = [self availableSpace]; +} + +- (void)didWrite:(size_t)bytesWritten +{ + writePointer += bytesWritten; +} + +- (void)reset +{ + readPointer = preBuffer; + writePointer = preBuffer; +} + +@end + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * The MGCDAsyncReadPacket encompasses the instructions for any given read. + * The content of a read packet allows the code to determine if we're: + * - reading to a certain length + * - reading to a certain separator + * - or simply reading the first chunk of available data +**/ +@interface MGCDAsyncReadPacket : NSObject +{ + @public + NSMutableData *buffer; + NSUInteger startOffset; + NSUInteger bytesDone; + NSUInteger maxLength; + NSTimeInterval timeout; + NSUInteger readLength; + NSData *term; + BOOL bufferOwner; + NSUInteger originalBufferLength; + long tag; +} +- (instancetype)initWithData:(NSMutableData *)d + startOffset:(NSUInteger)s + maxLength:(NSUInteger)m + timeout:(NSTimeInterval)t + readLength:(NSUInteger)l + terminator:(NSData *)e + tag:(long)i NS_DESIGNATED_INITIALIZER; + +- (void)ensureCapacityForAdditionalDataOfLength:(NSUInteger)bytesToRead; + +- (NSUInteger)optimalReadLengthWithDefault:(NSUInteger)defaultValue shouldPreBuffer:(BOOL *)shouldPreBufferPtr; + +- (NSUInteger)readLengthForNonTermWithHint:(NSUInteger)bytesAvailable; +- (NSUInteger)readLengthForTermWithHint:(NSUInteger)bytesAvailable shouldPreBuffer:(BOOL *)shouldPreBufferPtr; +- (NSUInteger)readLengthForTermWithPreBuffer:(MGCDAsyncSocketPreBuffer *)preBuffer found:(BOOL *)foundPtr; + +- (NSInteger)searchForTermAfterPreBuffering:(ssize_t)numBytes; + +@end + +@implementation MGCDAsyncReadPacket + +// Cover the superclass' designated initializer +- (instancetype)init NS_UNAVAILABLE +{ + NSAssert(0, @"Use the designated initializer"); + return nil; +} + +- (instancetype)initWithData:(NSMutableData *)d + startOffset:(NSUInteger)s + maxLength:(NSUInteger)m + timeout:(NSTimeInterval)t + readLength:(NSUInteger)l + terminator:(NSData *)e + tag:(long)i +{ + if((self = [super init])) + { + bytesDone = 0; + maxLength = m; + timeout = t; + readLength = l; + term = [e copy]; + tag = i; + + if (d) + { + buffer = d; + startOffset = s; + bufferOwner = NO; + originalBufferLength = [d length]; + } + else + { + if (readLength > 0) + buffer = [[NSMutableData alloc] initWithLength:readLength]; + else + buffer = [[NSMutableData alloc] initWithLength:0]; + + startOffset = 0; + bufferOwner = YES; + originalBufferLength = 0; + } + } + return self; +} + +/** + * Increases the length of the buffer (if needed) to ensure a read of the given size will fit. +**/ +- (void)ensureCapacityForAdditionalDataOfLength:(NSUInteger)bytesToRead +{ + NSUInteger buffSize = [buffer length]; + NSUInteger buffUsed = startOffset + bytesDone; + + NSUInteger buffSpace = buffSize - buffUsed; + + if (bytesToRead > buffSpace) + { + NSUInteger buffInc = bytesToRead - buffSpace; + + [buffer increaseLengthBy:buffInc]; + } +} + +/** + * This method is used when we do NOT know how much data is available to be read from the socket. + * This method returns the default value unless it exceeds the specified readLength or maxLength. + * + * Furthermore, the shouldPreBuffer decision is based upon the packet type, + * and whether the returned value would fit in the current buffer without requiring a resize of the buffer. +**/ +- (NSUInteger)optimalReadLengthWithDefault:(NSUInteger)defaultValue shouldPreBuffer:(BOOL *)shouldPreBufferPtr +{ + NSUInteger result; + + if (readLength > 0) + { + // Read a specific length of data + result = readLength - bytesDone; + + // There is no need to prebuffer since we know exactly how much data we need to read. + // Even if the buffer isn't currently big enough to fit this amount of data, + // it would have to be resized eventually anyway. + + if (shouldPreBufferPtr) + *shouldPreBufferPtr = NO; + } + else + { + // Either reading until we find a specified terminator, + // or we're simply reading all available data. + // + // In other words, one of: + // + // - readDataToData packet + // - readDataWithTimeout packet + + if (maxLength > 0) + result = MIN(defaultValue, (maxLength - bytesDone)); + else + result = defaultValue; + + // Since we don't know the size of the read in advance, + // the shouldPreBuffer decision is based upon whether the returned value would fit + // in the current buffer without requiring a resize of the buffer. + // + // This is because, in all likelyhood, the amount read from the socket will be less than the default value. + // Thus we should avoid over-allocating the read buffer when we can simply use the pre-buffer instead. + + if (shouldPreBufferPtr) + { + NSUInteger buffSize = [buffer length]; + NSUInteger buffUsed = startOffset + bytesDone; + + NSUInteger buffSpace = buffSize - buffUsed; + + if (buffSpace >= result) + *shouldPreBufferPtr = NO; + else + *shouldPreBufferPtr = YES; + } + } + + return result; +} + +/** + * For read packets without a set terminator, returns the amount of data + * that can be read without exceeding the readLength or maxLength. + * + * The given parameter indicates the number of bytes estimated to be available on the socket, + * which is taken into consideration during the calculation. + * + * The given hint MUST be greater than zero. +**/ +- (NSUInteger)readLengthForNonTermWithHint:(NSUInteger)bytesAvailable +{ + NSAssert(term == nil, @"This method does not apply to term reads"); + NSAssert(bytesAvailable > 0, @"Invalid parameter: bytesAvailable"); + + if (readLength > 0) + { + // Read a specific length of data + + return MIN(bytesAvailable, (readLength - bytesDone)); + + // No need to avoid resizing the buffer. + // If the user provided their own buffer, + // and told us to read a certain length of data that exceeds the size of the buffer, + // then it is clear that our code will resize the buffer during the read operation. + // + // This method does not actually do any resizing. + // The resizing will happen elsewhere if needed. + } + else + { + // Read all available data + + NSUInteger result = bytesAvailable; + + if (maxLength > 0) + { + result = MIN(result, (maxLength - bytesDone)); + } + + // No need to avoid resizing the buffer. + // If the user provided their own buffer, + // and told us to read all available data without giving us a maxLength, + // then it is clear that our code might resize the buffer during the read operation. + // + // This method does not actually do any resizing. + // The resizing will happen elsewhere if needed. + + return result; + } +} + +/** + * For read packets with a set terminator, returns the amount of data + * that can be read without exceeding the maxLength. + * + * The given parameter indicates the number of bytes estimated to be available on the socket, + * which is taken into consideration during the calculation. + * + * To optimize memory allocations, mem copies, and mem moves + * the shouldPreBuffer boolean value will indicate if the data should be read into a prebuffer first, + * or if the data can be read directly into the read packet's buffer. +**/ +- (NSUInteger)readLengthForTermWithHint:(NSUInteger)bytesAvailable shouldPreBuffer:(BOOL *)shouldPreBufferPtr +{ + NSAssert(term != nil, @"This method does not apply to non-term reads"); + NSAssert(bytesAvailable > 0, @"Invalid parameter: bytesAvailable"); + + + NSUInteger result = bytesAvailable; + + if (maxLength > 0) + { + result = MIN(result, (maxLength - bytesDone)); + } + + // Should the data be read into the read packet's buffer, or into a pre-buffer first? + // + // One would imagine the preferred option is the faster one. + // So which one is faster? + // + // Reading directly into the packet's buffer requires: + // 1. Possibly resizing packet buffer (malloc/realloc) + // 2. Filling buffer (read) + // 3. Searching for term (memcmp) + // 4. Possibly copying overflow into prebuffer (malloc/realloc, memcpy) + // + // Reading into prebuffer first: + // 1. Possibly resizing prebuffer (malloc/realloc) + // 2. Filling buffer (read) + // 3. Searching for term (memcmp) + // 4. Copying underflow into packet buffer (malloc/realloc, memcpy) + // 5. Removing underflow from prebuffer (memmove) + // + // Comparing the performance of the two we can see that reading + // data into the prebuffer first is slower due to the extra memove. + // + // However: + // The implementation of NSMutableData is open source via core foundation's CFMutableData. + // Decreasing the length of a mutable data object doesn't cause a realloc. + // In other words, the capacity of a mutable data object can grow, but doesn't shrink. + // + // This means the prebuffer will rarely need a realloc. + // The packet buffer, on the other hand, may often need a realloc. + // This is especially true if we are the buffer owner. + // Furthermore, if we are constantly realloc'ing the packet buffer, + // and then moving the overflow into the prebuffer, + // then we're consistently over-allocating memory for each term read. + // And now we get into a bit of a tradeoff between speed and memory utilization. + // + // The end result is that the two perform very similarly. + // And we can answer the original question very simply by another means. + // + // If we can read all the data directly into the packet's buffer without resizing it first, + // then we do so. Otherwise we use the prebuffer. + + if (shouldPreBufferPtr) + { + NSUInteger buffSize = [buffer length]; + NSUInteger buffUsed = startOffset + bytesDone; + + if ((buffSize - buffUsed) >= result) + *shouldPreBufferPtr = NO; + else + *shouldPreBufferPtr = YES; + } + + return result; +} + +/** + * For read packets with a set terminator, + * returns the amount of data that can be read from the given preBuffer, + * without going over a terminator or the maxLength. + * + * It is assumed the terminator has not already been read. +**/ +- (NSUInteger)readLengthForTermWithPreBuffer:(MGCDAsyncSocketPreBuffer *)preBuffer found:(BOOL *)foundPtr +{ + NSAssert(term != nil, @"This method does not apply to non-term reads"); + NSAssert([preBuffer availableBytes] > 0, @"Invoked with empty pre buffer!"); + + // We know that the terminator, as a whole, doesn't exist in our own buffer. + // But it is possible that a _portion_ of it exists in our buffer. + // So we're going to look for the terminator starting with a portion of our own buffer. + // + // Example: + // + // term length = 3 bytes + // bytesDone = 5 bytes + // preBuffer length = 5 bytes + // + // If we append the preBuffer to our buffer, + // it would look like this: + // + // --------------------- + // |B|B|B|B|B|P|P|P|P|P| + // --------------------- + // + // So we start our search here: + // + // --------------------- + // |B|B|B|B|B|P|P|P|P|P| + // -------^-^-^--------- + // + // And move forwards... + // + // --------------------- + // |B|B|B|B|B|P|P|P|P|P| + // ---------^-^-^------- + // + // Until we find the terminator or reach the end. + // + // --------------------- + // |B|B|B|B|B|P|P|P|P|P| + // ---------------^-^-^- + + BOOL found = NO; + + NSUInteger termLength = [term length]; + NSUInteger preBufferLength = [preBuffer availableBytes]; + + if ((bytesDone + preBufferLength) < termLength) + { + // Not enough data for a full term sequence yet + return preBufferLength; + } + + NSUInteger maxPreBufferLength; + if (maxLength > 0) { + maxPreBufferLength = MIN(preBufferLength, (maxLength - bytesDone)); + + // Note: maxLength >= termLength + } + else { + maxPreBufferLength = preBufferLength; + } + + uint8_t seq[termLength]; + const void *termBuf = [term bytes]; + + NSUInteger bufLen = MIN(bytesDone, (termLength - 1)); + uint8_t *buf = (uint8_t *)[buffer mutableBytes] + startOffset + bytesDone - bufLen; + + NSUInteger preLen = termLength - bufLen; + const uint8_t *pre = [preBuffer readBuffer]; + + NSUInteger loopCount = bufLen + maxPreBufferLength - termLength + 1; // Plus one. See example above. + + NSUInteger result = maxPreBufferLength; + + NSUInteger i; + for (i = 0; i < loopCount; i++) + { + if (bufLen > 0) + { + // Combining bytes from buffer and preBuffer + + memcpy(seq, buf, bufLen); + memcpy(seq + bufLen, pre, preLen); + + if (memcmp(seq, termBuf, termLength) == 0) + { + result = preLen; + found = YES; + break; + } + + buf++; + bufLen--; + preLen++; + } + else + { + // Comparing directly from preBuffer + + if (memcmp(pre, termBuf, termLength) == 0) + { + NSUInteger preOffset = pre - [preBuffer readBuffer]; // pointer arithmetic + + result = preOffset + termLength; + found = YES; + break; + } + + pre++; + } + } + + // There is no need to avoid resizing the buffer in this particular situation. + + if (foundPtr) *foundPtr = found; + return result; +} + +/** + * For read packets with a set terminator, scans the packet buffer for the term. + * It is assumed the terminator had not been fully read prior to the new bytes. + * + * If the term is found, the number of excess bytes after the term are returned. + * If the term is not found, this method will return -1. + * + * Note: A return value of zero means the term was found at the very end. + * + * Prerequisites: + * The given number of bytes have been added to the end of our buffer. + * Our bytesDone variable has NOT been changed due to the prebuffered bytes. +**/ +- (NSInteger)searchForTermAfterPreBuffering:(ssize_t)numBytes +{ + NSAssert(term != nil, @"This method does not apply to non-term reads"); + + // The implementation of this method is very similar to the above method. + // See the above method for a discussion of the algorithm used here. + + uint8_t *buff = [buffer mutableBytes]; + NSUInteger buffLength = bytesDone + numBytes; + + const void *termBuff = [term bytes]; + NSUInteger termLength = [term length]; + + // Note: We are dealing with unsigned integers, + // so make sure the math doesn't go below zero. + + NSUInteger i = ((buffLength - numBytes) >= termLength) ? (buffLength - numBytes - termLength + 1) : 0; + + while (i + termLength <= buffLength) + { + uint8_t *subBuffer = buff + startOffset + i; + + if (memcmp(subBuffer, termBuff, termLength) == 0) + { + return buffLength - (i + termLength); + } + + i++; + } + + return -1; +} + + +@end + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * The MGCDAsyncWritePacket encompasses the instructions for any given write. +**/ +@interface MGCDAsyncWritePacket : NSObject +{ + @public + NSData *buffer; + NSUInteger bytesDone; + long tag; + NSTimeInterval timeout; +} +- (instancetype)initWithData:(NSData *)d timeout:(NSTimeInterval)t tag:(long)i NS_DESIGNATED_INITIALIZER; +@end + +@implementation MGCDAsyncWritePacket + +// Cover the superclass' designated initializer +- (instancetype)init NS_UNAVAILABLE +{ + NSAssert(0, @"Use the designated initializer"); + return nil; +} + +- (instancetype)initWithData:(NSData *)d timeout:(NSTimeInterval)t tag:(long)i +{ + if((self = [super init])) + { + buffer = d; // Retain not copy. For performance as documented in header file. + bytesDone = 0; + timeout = t; + tag = i; + } + return self; +} + + +@end + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * The MGCDAsyncSpecialPacket encompasses special instructions for interruptions in the read/write queues. + * This class my be altered to support more than just TLS in the future. +**/ +@interface MGCDAsyncSpecialPacket : NSObject +{ + @public + NSDictionary *tlsSettings; +} +- (instancetype)initWithTLSSettings:(NSDictionary *)settings NS_DESIGNATED_INITIALIZER; +@end + +@implementation MGCDAsyncSpecialPacket + +// Cover the superclass' designated initializer +- (instancetype)init NS_UNAVAILABLE +{ + NSAssert(0, @"Use the designated initializer"); + return nil; +} + +- (instancetype)initWithTLSSettings:(NSDictionary *)settings +{ + if((self = [super init])) + { + tlsSettings = [settings copy]; + } + return self; +} + + +@end + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +@implementation MGCDAsyncSocket +{ + uint32_t flags; + uint16_t config; + + __weak id delegate; + dispatch_queue_t delegateQueue; + + int socket4FD; + int socket6FD; + int socketUN; + NSURL *socketUrl; + int stateIndex; + NSData * connectInterface4; + NSData * connectInterface6; + NSData * connectInterfaceUN; + + dispatch_queue_t socketQueue; + + dispatch_source_t accept4Source; + dispatch_source_t accept6Source; + dispatch_source_t acceptUNSource; + dispatch_source_t connectTimer; + dispatch_source_t readSource; + dispatch_source_t writeSource; + dispatch_source_t readTimer; + dispatch_source_t writeTimer; + + NSMutableArray *readQueue; + NSMutableArray *writeQueue; + + MGCDAsyncReadPacket *currentRead; + MGCDAsyncWritePacket *currentWrite; + + unsigned long socketFDBytesAvailable; + + MGCDAsyncSocketPreBuffer *preBuffer; + +#if TARGET_OS_IPHONE + CFStreamClientContext streamContext; + CFReadStreamRef readStream; + CFWriteStreamRef writeStream; +#endif + SSLContextRef sslContext; + MGCDAsyncSocketPreBuffer *sslPreBuffer; + size_t sslWriteCachedLength; + OSStatus sslErrCode; + OSStatus lastSSLHandshakeError; + + void *IsOnSocketQueueOrTargetQueueKey; + + id userData; + NSTimeInterval alternateAddressDelay; +} + +- (instancetype)init +{ + return [self initWithDelegate:nil delegateQueue:NULL socketQueue:NULL]; +} + +- (instancetype)initWithSocketQueue:(dispatch_queue_t)sq +{ + return [self initWithDelegate:nil delegateQueue:NULL socketQueue:sq]; +} + +- (instancetype)initWithDelegate:(id)aDelegate delegateQueue:(dispatch_queue_t)dq +{ + return [self initWithDelegate:aDelegate delegateQueue:dq socketQueue:NULL]; +} + +- (instancetype)initWithDelegate:(id)aDelegate delegateQueue:(dispatch_queue_t)dq socketQueue:(dispatch_queue_t)sq +{ + if((self = [super init])) + { + delegate = aDelegate; + delegateQueue = dq; + + #if !OS_OBJECT_USE_OBJC + if (dq) dispatch_retain(dq); + #endif + + socket4FD = SOCKET_NULL; + socket6FD = SOCKET_NULL; + socketUN = SOCKET_NULL; + socketUrl = nil; + stateIndex = 0; + + if (sq) + { + NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), + @"The given socketQueue parameter must not be a concurrent queue."); + NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), + @"The given socketQueue parameter must not be a concurrent queue."); + NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), + @"The given socketQueue parameter must not be a concurrent queue."); + + socketQueue = sq; + #if !OS_OBJECT_USE_OBJC + dispatch_retain(sq); + #endif + } + else + { + socketQueue = dispatch_queue_create([MGCDAsyncSocketQueueName UTF8String], NULL); + } + + // The dispatch_queue_set_specific() and dispatch_get_specific() functions take a "void *key" parameter. + // From the documentation: + // + // > Keys are only compared as pointers and are never dereferenced. + // > Thus, you can use a pointer to a static variable for a specific subsystem or + // > any other value that allows you to identify the value uniquely. + // + // We're just going to use the memory address of an ivar. + // Specifically an ivar that is explicitly named for our purpose to make the code more readable. + // + // However, it feels tedious (and less readable) to include the "&" all the time: + // dispatch_get_specific(&IsOnSocketQueueOrTargetQueueKey) + // + // So we're going to make it so it doesn't matter if we use the '&' or not, + // by assigning the value of the ivar to the address of the ivar. + // Thus: IsOnSocketQueueOrTargetQueueKey == &IsOnSocketQueueOrTargetQueueKey; + + IsOnSocketQueueOrTargetQueueKey = &IsOnSocketQueueOrTargetQueueKey; + + void *nonNullUnusedPointer = (__bridge void *)self; + dispatch_queue_set_specific(socketQueue, IsOnSocketQueueOrTargetQueueKey, nonNullUnusedPointer, NULL); + + readQueue = [[NSMutableArray alloc] initWithCapacity:5]; + currentRead = nil; + + writeQueue = [[NSMutableArray alloc] initWithCapacity:5]; + currentWrite = nil; + + preBuffer = [[MGCDAsyncSocketPreBuffer alloc] initWithCapacity:(1024 * 4)]; + alternateAddressDelay = 0.3; + } + return self; +} + +- (void)dealloc +{ + LogInfo(@"%@ - %@ (start)", THIS_METHOD, self); + + // Set dealloc flag. + // This is used by closeWithError to ensure we don't accidentally retain ourself. + flags |= kDealloc; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + [self closeWithError:nil]; + } + else + { + dispatch_sync(socketQueue, ^{ + [self closeWithError:nil]; + }); + } + + delegate = nil; + + #if !OS_OBJECT_USE_OBJC + if (delegateQueue) dispatch_release(delegateQueue); + #endif + delegateQueue = NULL; + + #if !OS_OBJECT_USE_OBJC + if (socketQueue) dispatch_release(socketQueue); + #endif + socketQueue = NULL; + + LogInfo(@"%@ - %@ (finish)", THIS_METHOD, self); +} + +#pragma mark - + ++ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD socketQueue:(nullable dispatch_queue_t)sq error:(NSError**)error { + return [self socketFromConnectedSocketFD:socketFD delegate:nil delegateQueue:NULL socketQueue:sq error:error]; +} + ++ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD delegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq error:(NSError**)error { + return [self socketFromConnectedSocketFD:socketFD delegate:aDelegate delegateQueue:dq socketQueue:NULL error:error]; +} + ++ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD delegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq socketQueue:(nullable dispatch_queue_t)sq error:(NSError* __autoreleasing *)error +{ + __block BOOL errorOccured = NO; + __block NSError *thisError = nil; + + MGCDAsyncSocket *socket = [[[self class] alloc] initWithDelegate:aDelegate delegateQueue:dq socketQueue:sq]; + + dispatch_sync(socket->socketQueue, ^{ @autoreleasepool { + struct sockaddr addr; + socklen_t addr_size = sizeof(struct sockaddr); + int retVal = getpeername(socketFD, (struct sockaddr *)&addr, &addr_size); + if (retVal) + { + NSString *errMsg = NSLocalizedStringWithDefaultValue(@"MGCDAsyncSocketOtherError", + @"MGCDAsyncSocket", [NSBundle mainBundle], + @"Attempt to create socket from socket FD failed. getpeername() failed", nil); + + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + errorOccured = YES; + thisError = [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketOtherError userInfo:userInfo]; + return; + } + + if (addr.sa_family == AF_INET) + { + socket->socket4FD = socketFD; + } + else if (addr.sa_family == AF_INET6) + { + socket->socket6FD = socketFD; + } + else + { + NSString *errMsg = NSLocalizedStringWithDefaultValue(@"MGCDAsyncSocketOtherError", + @"MGCDAsyncSocket", [NSBundle mainBundle], + @"Attempt to create socket from socket FD failed. socket FD is neither IPv4 nor IPv6", nil); + + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + errorOccured = YES; + thisError = [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketOtherError userInfo:userInfo]; + return; + } + + socket->flags = kSocketStarted; + [socket didConnect:socket->stateIndex]; + }}); + + if (error && thisError) { + *error = thisError; + } + + return errorOccured? nil: socket; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Configuration +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (id)delegate +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return delegate; + } + else + { + __block id result; + + dispatch_sync(socketQueue, ^{ + result = self->delegate; + }); + + return result; + } +} + +- (void)setDelegate:(id)newDelegate synchronously:(BOOL)synchronously +{ + dispatch_block_t block = ^{ + self->delegate = newDelegate; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { + block(); + } + else { + if (synchronously) + dispatch_sync(socketQueue, block); + else + dispatch_async(socketQueue, block); + } +} + +- (void)setDelegate:(id)newDelegate +{ + [self setDelegate:newDelegate synchronously:NO]; +} + +- (void)synchronouslySetDelegate:(id)newDelegate +{ + [self setDelegate:newDelegate synchronously:YES]; +} + +- (dispatch_queue_t)delegateQueue +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return delegateQueue; + } + else + { + __block dispatch_queue_t result; + + dispatch_sync(socketQueue, ^{ + result = self->delegateQueue; + }); + + return result; + } +} + +- (void)setDelegateQueue:(dispatch_queue_t)newDelegateQueue synchronously:(BOOL)synchronously +{ + dispatch_block_t block = ^{ + + #if !OS_OBJECT_USE_OBJC + if (self->delegateQueue) dispatch_release(self->delegateQueue); + if (newDelegateQueue) dispatch_retain(newDelegateQueue); + #endif + + self->delegateQueue = newDelegateQueue; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { + block(); + } + else { + if (synchronously) + dispatch_sync(socketQueue, block); + else + dispatch_async(socketQueue, block); + } +} + +- (void)setDelegateQueue:(dispatch_queue_t)newDelegateQueue +{ + [self setDelegateQueue:newDelegateQueue synchronously:NO]; +} + +- (void)synchronouslySetDelegateQueue:(dispatch_queue_t)newDelegateQueue +{ + [self setDelegateQueue:newDelegateQueue synchronously:YES]; +} + +- (void)getDelegate:(id *)delegatePtr delegateQueue:(dispatch_queue_t *)delegateQueuePtr +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + if (delegatePtr) *delegatePtr = delegate; + if (delegateQueuePtr) *delegateQueuePtr = delegateQueue; + } + else + { + __block id dPtr = NULL; + __block dispatch_queue_t dqPtr = NULL; + + dispatch_sync(socketQueue, ^{ + dPtr = self->delegate; + dqPtr = self->delegateQueue; + }); + + if (delegatePtr) *delegatePtr = dPtr; + if (delegateQueuePtr) *delegateQueuePtr = dqPtr; + } +} + +- (void)setDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue synchronously:(BOOL)synchronously +{ + dispatch_block_t block = ^{ + + self->delegate = newDelegate; + + #if !OS_OBJECT_USE_OBJC + if (self->delegateQueue) dispatch_release(self->delegateQueue); + if (newDelegateQueue) dispatch_retain(newDelegateQueue); + #endif + + self->delegateQueue = newDelegateQueue; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { + block(); + } + else { + if (synchronously) + dispatch_sync(socketQueue, block); + else + dispatch_async(socketQueue, block); + } +} + +- (void)setDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue +{ + [self setDelegate:newDelegate delegateQueue:newDelegateQueue synchronously:NO]; +} + +- (void)synchronouslySetDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue +{ + [self setDelegate:newDelegate delegateQueue:newDelegateQueue synchronously:YES]; +} + +- (BOOL)isIPv4Enabled +{ + // Note: YES means kIPv4Disabled is OFF + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return ((config & kIPv4Disabled) == 0); + } + else + { + __block BOOL result; + + dispatch_sync(socketQueue, ^{ + result = ((self->config & kIPv4Disabled) == 0); + }); + + return result; + } +} + +- (void)setIPv4Enabled:(BOOL)flag +{ + // Note: YES means kIPv4Disabled is OFF + + dispatch_block_t block = ^{ + + if (flag) + self->config &= ~kIPv4Disabled; + else + self->config |= kIPv4Disabled; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (BOOL)isIPv6Enabled +{ + // Note: YES means kIPv6Disabled is OFF + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return ((config & kIPv6Disabled) == 0); + } + else + { + __block BOOL result; + + dispatch_sync(socketQueue, ^{ + result = ((self->config & kIPv6Disabled) == 0); + }); + + return result; + } +} + +- (void)setIPv6Enabled:(BOOL)flag +{ + // Note: YES means kIPv6Disabled is OFF + + dispatch_block_t block = ^{ + + if (flag) + self->config &= ~kIPv6Disabled; + else + self->config |= kIPv6Disabled; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (BOOL)isIPv4PreferredOverIPv6 +{ + // Note: YES means kPreferIPv6 is OFF + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return ((config & kPreferIPv6) == 0); + } + else + { + __block BOOL result; + + dispatch_sync(socketQueue, ^{ + result = ((self->config & kPreferIPv6) == 0); + }); + + return result; + } +} + +- (void)setIPv4PreferredOverIPv6:(BOOL)flag +{ + // Note: YES means kPreferIPv6 is OFF + + dispatch_block_t block = ^{ + + if (flag) + self->config &= ~kPreferIPv6; + else + self->config |= kPreferIPv6; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (NSTimeInterval) alternateAddressDelay { + __block NSTimeInterval delay; + dispatch_block_t block = ^{ + delay = self->alternateAddressDelay; + }; + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + return delay; +} + +- (void) setAlternateAddressDelay:(NSTimeInterval)delay { + dispatch_block_t block = ^{ + self->alternateAddressDelay = delay; + }; + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (id)userData +{ + __block id result = nil; + + dispatch_block_t block = ^{ + + result = self->userData; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (void)setUserData:(id)arbitraryUserData +{ + dispatch_block_t block = ^{ + + if (self->userData != arbitraryUserData) + { + self->userData = arbitraryUserData; + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Accepting +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (BOOL)acceptOnPort:(uint16_t)port error:(NSError **)errPtr +{ + return [self acceptOnInterface:nil port:port error:errPtr]; +} + +- (BOOL)acceptOnInterface:(NSString *)inInterface port:(uint16_t)port error:(NSError **)errPtr +{ + LogTrace(); + + // Just in-case interface parameter is immutable. + NSString *interface = [inInterface copy]; + + __block BOOL result = NO; + __block NSError *err = nil; + + // CreateSocket Block + // This block will be invoked within the dispatch block below. + + int(^createSocket)(int, NSData*) = ^int (int domain, NSData *interfaceAddr) { + + int socketFD = socket(domain, SOCK_STREAM, 0); + + if (socketFD == SOCKET_NULL) + { + NSString *reason = @"Error in socket() function"; + err = [self errorWithErrno:errno reason:reason]; + + return SOCKET_NULL; + } + + int status; + + // Set socket options + + status = fcntl(socketFD, F_SETFL, O_NONBLOCK); + if (status == -1) + { + NSString *reason = @"Error enabling non-blocking IO on socket (fcntl)"; + err = [self errorWithErrno:errno reason:reason]; + + LogVerbose(@"close(socketFD)"); + close(socketFD); + return SOCKET_NULL; + } + + int reuseOn = 1; + status = setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseOn, sizeof(reuseOn)); + if (status == -1) + { + NSString *reason = @"Error enabling address reuse (setsockopt)"; + err = [self errorWithErrno:errno reason:reason]; + + LogVerbose(@"close(socketFD)"); + close(socketFD); + return SOCKET_NULL; + } + + // Bind socket + + status = bind(socketFD, (const struct sockaddr *)[interfaceAddr bytes], (socklen_t)[interfaceAddr length]); + if (status == -1) + { + NSString *reason = @"Error in bind() function"; + err = [self errorWithErrno:errno reason:reason]; + + LogVerbose(@"close(socketFD)"); + close(socketFD); + return SOCKET_NULL; + } + + // Listen + + status = listen(socketFD, 1024); + if (status == -1) + { + NSString *reason = @"Error in listen() function"; + err = [self errorWithErrno:errno reason:reason]; + + LogVerbose(@"close(socketFD)"); + close(socketFD); + return SOCKET_NULL; + } + + return socketFD; + }; + + // Create dispatch block and run on socketQueue + + dispatch_block_t block = ^{ @autoreleasepool { + + if (self->delegate == nil) // Must have delegate set + { + NSString *msg = @"Attempting to accept without a delegate. Set a delegate first."; + err = [self badConfigError:msg]; + + return_from_block; + } + + if (self->delegateQueue == NULL) // Must have delegate queue set + { + NSString *msg = @"Attempting to accept without a delegate queue. Set a delegate queue first."; + err = [self badConfigError:msg]; + + return_from_block; + } + + BOOL isIPv4Disabled = (self->config & kIPv4Disabled) ? YES : NO; + BOOL isIPv6Disabled = (self->config & kIPv6Disabled) ? YES : NO; + + if (isIPv4Disabled && isIPv6Disabled) // Must have IPv4 or IPv6 enabled + { + NSString *msg = @"Both IPv4 and IPv6 have been disabled. Must enable at least one protocol first."; + err = [self badConfigError:msg]; + + return_from_block; + } + + if (![self isDisconnected]) // Must be disconnected + { + NSString *msg = @"Attempting to accept while connected or accepting connections. Disconnect first."; + err = [self badConfigError:msg]; + + return_from_block; + } + + // Clear queues (spurious read/write requests post disconnect) + [self->readQueue removeAllObjects]; + [self->writeQueue removeAllObjects]; + + // Resolve interface from description + + NSMutableData *interface4 = nil; + NSMutableData *interface6 = nil; + + [self getInterfaceAddress4:&interface4 address6:&interface6 fromDescription:interface port:port]; + + if ((interface4 == nil) && (interface6 == nil)) + { + NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; + err = [self badParamError:msg]; + + return_from_block; + } + + if (isIPv4Disabled && (interface6 == nil)) + { + NSString *msg = @"IPv4 has been disabled and specified interface doesn't support IPv6."; + err = [self badParamError:msg]; + + return_from_block; + } + + if (isIPv6Disabled && (interface4 == nil)) + { + NSString *msg = @"IPv6 has been disabled and specified interface doesn't support IPv4."; + err = [self badParamError:msg]; + + return_from_block; + } + + BOOL enableIPv4 = !isIPv4Disabled && (interface4 != nil); + BOOL enableIPv6 = !isIPv6Disabled && (interface6 != nil); + + // Create sockets, configure, bind, and listen + + if (enableIPv4) + { + LogVerbose(@"Creating IPv4 socket"); + self->socket4FD = createSocket(AF_INET, interface4); + + if (self->socket4FD == SOCKET_NULL) + { + return_from_block; + } + } + + if (enableIPv6) + { + LogVerbose(@"Creating IPv6 socket"); + + if (enableIPv4 && (port == 0)) + { + // No specific port was specified, so we allowed the OS to pick an available port for us. + // Now we need to make sure the IPv6 socket listens on the same port as the IPv4 socket. + + struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)[interface6 mutableBytes]; + addr6->sin6_port = htons([self localPort4]); + } + + self->socket6FD = createSocket(AF_INET6, interface6); + + if (self->socket6FD == SOCKET_NULL) + { + if (self->socket4FD != SOCKET_NULL) + { + LogVerbose(@"close(socket4FD)"); + close(self->socket4FD); + self->socket4FD = SOCKET_NULL; + } + + return_from_block; + } + } + + // Create accept sources + + if (enableIPv4) + { + self->accept4Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, self->socket4FD, 0, self->socketQueue); + + int socketFD = self->socket4FD; + dispatch_source_t acceptSource = self->accept4Source; + + __weak MGCDAsyncSocket *weakSelf = self; + + dispatch_source_set_event_handler(self->accept4Source, ^{ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf == nil) return_from_block; + + LogVerbose(@"event4Block"); + + unsigned long i = 0; + unsigned long numPendingConnections = dispatch_source_get_data(acceptSource); + + LogVerbose(@"numPendingConnections: %lu", numPendingConnections); + + while ([strongSelf doAccept:socketFD] && (++i < numPendingConnections)); + + #pragma clang diagnostic pop + }}); + + + dispatch_source_set_cancel_handler(self->accept4Source, ^{ + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + #if !OS_OBJECT_USE_OBJC + LogVerbose(@"dispatch_release(accept4Source)"); + dispatch_release(acceptSource); + #endif + + LogVerbose(@"close(socket4FD)"); + close(socketFD); + + #pragma clang diagnostic pop + }); + + LogVerbose(@"dispatch_resume(accept4Source)"); + dispatch_resume(self->accept4Source); + } + + if (enableIPv6) + { + self->accept6Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, self->socket6FD, 0, self->socketQueue); + + int socketFD = self->socket6FD; + dispatch_source_t acceptSource = self->accept6Source; + + __weak MGCDAsyncSocket *weakSelf = self; + + dispatch_source_set_event_handler(self->accept6Source, ^{ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf == nil) return_from_block; + + LogVerbose(@"event6Block"); + + unsigned long i = 0; + unsigned long numPendingConnections = dispatch_source_get_data(acceptSource); + + LogVerbose(@"numPendingConnections: %lu", numPendingConnections); + + while ([strongSelf doAccept:socketFD] && (++i < numPendingConnections)); + + #pragma clang diagnostic pop + }}); + + dispatch_source_set_cancel_handler(self->accept6Source, ^{ + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + #if !OS_OBJECT_USE_OBJC + LogVerbose(@"dispatch_release(accept6Source)"); + dispatch_release(acceptSource); + #endif + + LogVerbose(@"close(socket6FD)"); + close(socketFD); + + #pragma clang diagnostic pop + }); + + LogVerbose(@"dispatch_resume(accept6Source)"); + dispatch_resume(self->accept6Source); + } + + self->flags |= kSocketStarted; + + result = YES; + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (result == NO) + { + LogInfo(@"Error in accept: %@", err); + + if (errPtr) + *errPtr = err; + } + + return result; +} + +- (BOOL)acceptOnUrl:(NSURL *)url error:(NSError **)errPtr +{ + LogTrace(); + + __block BOOL result = NO; + __block NSError *err = nil; + + // CreateSocket Block + // This block will be invoked within the dispatch block below. + + int(^createSocket)(int, NSData*) = ^int (int domain, NSData *interfaceAddr) { + + int socketFD = socket(domain, SOCK_STREAM, 0); + + if (socketFD == SOCKET_NULL) + { + NSString *reason = @"Error in socket() function"; + err = [self errorWithErrno:errno reason:reason]; + + return SOCKET_NULL; + } + + int status; + + // Set socket options + + status = fcntl(socketFD, F_SETFL, O_NONBLOCK); + if (status == -1) + { + NSString *reason = @"Error enabling non-blocking IO on socket (fcntl)"; + err = [self errorWithErrno:errno reason:reason]; + + LogVerbose(@"close(socketFD)"); + close(socketFD); + return SOCKET_NULL; + } + + int reuseOn = 1; + status = setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseOn, sizeof(reuseOn)); + if (status == -1) + { + NSString *reason = @"Error enabling address reuse (setsockopt)"; + err = [self errorWithErrno:errno reason:reason]; + + LogVerbose(@"close(socketFD)"); + close(socketFD); + return SOCKET_NULL; + } + + // Bind socket + + status = bind(socketFD, (const struct sockaddr *)[interfaceAddr bytes], (socklen_t)[interfaceAddr length]); + if (status == -1) + { + NSString *reason = @"Error in bind() function"; + err = [self errorWithErrno:errno reason:reason]; + + LogVerbose(@"close(socketFD)"); + close(socketFD); + return SOCKET_NULL; + } + + // Listen + + status = listen(socketFD, 1024); + if (status == -1) + { + NSString *reason = @"Error in listen() function"; + err = [self errorWithErrno:errno reason:reason]; + + LogVerbose(@"close(socketFD)"); + close(socketFD); + return SOCKET_NULL; + } + + return socketFD; + }; + + // Create dispatch block and run on socketQueue + + dispatch_block_t block = ^{ @autoreleasepool { + + if (self->delegate == nil) // Must have delegate set + { + NSString *msg = @"Attempting to accept without a delegate. Set a delegate first."; + err = [self badConfigError:msg]; + + return_from_block; + } + + if (self->delegateQueue == NULL) // Must have delegate queue set + { + NSString *msg = @"Attempting to accept without a delegate queue. Set a delegate queue first."; + err = [self badConfigError:msg]; + + return_from_block; + } + + if (![self isDisconnected]) // Must be disconnected + { + NSString *msg = @"Attempting to accept while connected or accepting connections. Disconnect first."; + err = [self badConfigError:msg]; + + return_from_block; + } + + // Clear queues (spurious read/write requests post disconnect) + [self->readQueue removeAllObjects]; + [self->writeQueue removeAllObjects]; + + // Remove a previous socket + + NSError *error = nil; + NSFileManager *fileManager = [NSFileManager defaultManager]; + NSString *urlPath = url.path; + if (urlPath && [fileManager fileExistsAtPath:urlPath]) { + if (![fileManager removeItemAtURL:url error:&error]) { + NSString *msg = @"Could not remove previous unix domain socket at given url."; + err = [self otherError:msg]; + + return_from_block; + } + } + + // Resolve interface from description + + NSData *interface = [self getInterfaceAddressFromUrl:url]; + + if (interface == nil) + { + NSString *msg = @"Invalid unix domain url. Specify a valid file url that does not exist (e.g. \"file:///tmp/socket\")"; + err = [self badParamError:msg]; + + return_from_block; + } + + // Create sockets, configure, bind, and listen + + LogVerbose(@"Creating unix domain socket"); + self->socketUN = createSocket(AF_UNIX, interface); + + if (self->socketUN == SOCKET_NULL) + { + return_from_block; + } + + self->socketUrl = url; + + // Create accept sources + + self->acceptUNSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, self->socketUN, 0, self->socketQueue); + + int socketFD = self->socketUN; + dispatch_source_t acceptSource = self->acceptUNSource; + + __weak MGCDAsyncSocket *weakSelf = self; + + dispatch_source_set_event_handler(self->acceptUNSource, ^{ @autoreleasepool { + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + + LogVerbose(@"eventUNBlock"); + + unsigned long i = 0; + unsigned long numPendingConnections = dispatch_source_get_data(acceptSource); + + LogVerbose(@"numPendingConnections: %lu", numPendingConnections); + + while ([strongSelf doAccept:socketFD] && (++i < numPendingConnections)); + }}); + + dispatch_source_set_cancel_handler(self->acceptUNSource, ^{ + +#if !OS_OBJECT_USE_OBJC + LogVerbose(@"dispatch_release(acceptUNSource)"); + dispatch_release(acceptSource); +#endif + + LogVerbose(@"close(socketUN)"); + close(socketFD); + }); + + LogVerbose(@"dispatch_resume(acceptUNSource)"); + dispatch_resume(self->acceptUNSource); + + self->flags |= kSocketStarted; + + result = YES; + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (result == NO) + { + LogInfo(@"Error in accept: %@", err); + + if (errPtr) + *errPtr = err; + } + + return result; +} + +- (BOOL)doAccept:(int)parentSocketFD +{ + LogTrace(); + + int socketType; + int childSocketFD; + NSData *childSocketAddress; + + if (parentSocketFD == socket4FD) + { + socketType = 0; + + struct sockaddr_in addr; + socklen_t addrLen = sizeof(addr); + + childSocketFD = accept(parentSocketFD, (struct sockaddr *)&addr, &addrLen); + + if (childSocketFD == -1) + { + LogWarn(@"Accept failed with error: %@", [self errnoError]); + return NO; + } + + childSocketAddress = [NSData dataWithBytes:&addr length:addrLen]; + } + else if (parentSocketFD == socket6FD) + { + socketType = 1; + + struct sockaddr_in6 addr; + socklen_t addrLen = sizeof(addr); + + childSocketFD = accept(parentSocketFD, (struct sockaddr *)&addr, &addrLen); + + if (childSocketFD == -1) + { + LogWarn(@"Accept failed with error: %@", [self errnoError]); + return NO; + } + + childSocketAddress = [NSData dataWithBytes:&addr length:addrLen]; + } + else // if (parentSocketFD == socketUN) + { + socketType = 2; + + struct sockaddr_un addr; + socklen_t addrLen = sizeof(addr); + + childSocketFD = accept(parentSocketFD, (struct sockaddr *)&addr, &addrLen); + + if (childSocketFD == -1) + { + LogWarn(@"Accept failed with error: %@", [self errnoError]); + return NO; + } + + childSocketAddress = [NSData dataWithBytes:&addr length:addrLen]; + } + + // Enable non-blocking IO on the socket + + int result = fcntl(childSocketFD, F_SETFL, O_NONBLOCK); + if (result == -1) + { + LogWarn(@"Error enabling non-blocking IO on accepted socket (fcntl)"); + LogVerbose(@"close(childSocketFD)"); + close(childSocketFD); + return NO; + } + + // Prevent SIGPIPE signals + + int nosigpipe = 1; + setsockopt(childSocketFD, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe)); + + // Notify delegate + + if (delegateQueue) + { + __strong id theDelegate = delegate; + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + // Query delegate for custom socket queue + + dispatch_queue_t childSocketQueue = NULL; + + if ([theDelegate respondsToSelector:@selector(newSocketQueueForConnectionFromAddress:onSocket:)]) + { + childSocketQueue = [theDelegate newSocketQueueForConnectionFromAddress:childSocketAddress + onSocket:self]; + } + + // Create MGCDAsyncSocket instance for accepted socket + + MGCDAsyncSocket *acceptedSocket = [[[self class] alloc] initWithDelegate:theDelegate + delegateQueue:self->delegateQueue + socketQueue:childSocketQueue]; + + if (socketType == 0) + acceptedSocket->socket4FD = childSocketFD; + else if (socketType == 1) + acceptedSocket->socket6FD = childSocketFD; + else + acceptedSocket->socketUN = childSocketFD; + + acceptedSocket->flags = (kSocketStarted | kConnected); + + // Setup read and write sources for accepted socket + + dispatch_async(acceptedSocket->socketQueue, ^{ @autoreleasepool { + + [acceptedSocket setupReadAndWriteSourcesForNewlyConnectedSocket:childSocketFD]; + }}); + + // Notify delegate + + if ([theDelegate respondsToSelector:@selector(socket:didAcceptNewSocket:)]) + { + [theDelegate socket:self didAcceptNewSocket:acceptedSocket]; + } + + // Release the socket queue returned from the delegate (it was retained by acceptedSocket) + #if !OS_OBJECT_USE_OBJC + if (childSocketQueue) dispatch_release(childSocketQueue); + #endif + + // The accepted socket should have been retained by the delegate. + // Otherwise it gets properly released when exiting the block. + }}); + } + + return YES; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Connecting +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * This method runs through the various checks required prior to a connection attempt. + * It is shared between the connectToHost and connectToAddress methods. + * +**/ +- (BOOL)preConnectWithInterface:(NSString *)interface error:(NSError **)errPtr +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + if (delegate == nil) // Must have delegate set + { + if (errPtr) + { + NSString *msg = @"Attempting to connect without a delegate. Set a delegate first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + if (delegateQueue == NULL) // Must have delegate queue set + { + if (errPtr) + { + NSString *msg = @"Attempting to connect without a delegate queue. Set a delegate queue first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + if (![self isDisconnected]) // Must be disconnected + { + if (errPtr) + { + NSString *msg = @"Attempting to connect while connected or accepting connections. Disconnect first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; + BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; + + if (isIPv4Disabled && isIPv6Disabled) // Must have IPv4 or IPv6 enabled + { + if (errPtr) + { + NSString *msg = @"Both IPv4 and IPv6 have been disabled. Must enable at least one protocol first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + if (interface) + { + NSMutableData *interface4 = nil; + NSMutableData *interface6 = nil; + + [self getInterfaceAddress4:&interface4 address6:&interface6 fromDescription:interface port:0]; + + if ((interface4 == nil) && (interface6 == nil)) + { + if (errPtr) + { + NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; + *errPtr = [self badParamError:msg]; + } + return NO; + } + + if (isIPv4Disabled && (interface6 == nil)) + { + if (errPtr) + { + NSString *msg = @"IPv4 has been disabled and specified interface doesn't support IPv6."; + *errPtr = [self badParamError:msg]; + } + return NO; + } + + if (isIPv6Disabled && (interface4 == nil)) + { + if (errPtr) + { + NSString *msg = @"IPv6 has been disabled and specified interface doesn't support IPv4."; + *errPtr = [self badParamError:msg]; + } + return NO; + } + + connectInterface4 = interface4; + connectInterface6 = interface6; + } + + // Clear queues (spurious read/write requests post disconnect) + [readQueue removeAllObjects]; + [writeQueue removeAllObjects]; + + return YES; +} + +- (BOOL)preConnectWithUrl:(NSURL *)url error:(NSError **)errPtr +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + if (delegate == nil) // Must have delegate set + { + if (errPtr) + { + NSString *msg = @"Attempting to connect without a delegate. Set a delegate first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + if (delegateQueue == NULL) // Must have delegate queue set + { + if (errPtr) + { + NSString *msg = @"Attempting to connect without a delegate queue. Set a delegate queue first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + if (![self isDisconnected]) // Must be disconnected + { + if (errPtr) + { + NSString *msg = @"Attempting to connect while connected or accepting connections. Disconnect first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + NSData *interface = [self getInterfaceAddressFromUrl:url]; + + if (interface == nil) + { + if (errPtr) + { + NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; + *errPtr = [self badParamError:msg]; + } + return NO; + } + + connectInterfaceUN = interface; + + // Clear queues (spurious read/write requests post disconnect) + [readQueue removeAllObjects]; + [writeQueue removeAllObjects]; + + return YES; +} + +- (BOOL)connectToHost:(NSString*)host onPort:(uint16_t)port error:(NSError **)errPtr +{ + return [self connectToHost:host onPort:port withTimeout:-1 error:errPtr]; +} + +- (BOOL)connectToHost:(NSString *)host + onPort:(uint16_t)port + withTimeout:(NSTimeInterval)timeout + error:(NSError **)errPtr +{ + return [self connectToHost:host onPort:port viaInterface:nil withTimeout:timeout error:errPtr]; +} + +- (BOOL)connectToHost:(NSString *)inHost + onPort:(uint16_t)port + viaInterface:(NSString *)inInterface + withTimeout:(NSTimeInterval)timeout + error:(NSError **)errPtr +{ + LogTrace(); + + // Just in case immutable objects were passed + NSString *host = [inHost copy]; + NSString *interface = [inInterface copy]; + + __block BOOL result = NO; + __block NSError *preConnectErr = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + // Check for problems with host parameter + + if ([host length] == 0) + { + NSString *msg = @"Invalid host parameter (nil or \"\"). Should be a domain name or IP address string."; + preConnectErr = [self badParamError:msg]; + + return_from_block; + } + + // Run through standard pre-connect checks + + if (![self preConnectWithInterface:interface error:&preConnectErr]) + { + return_from_block; + } + + // We've made it past all the checks. + // It's time to start the connection process. + + self->flags |= kSocketStarted; + + LogVerbose(@"Dispatching DNS lookup..."); + + // It's possible that the given host parameter is actually a NSMutableString. + // So we want to copy it now, within this block that will be executed synchronously. + // This way the asynchronous lookup block below doesn't have to worry about it changing. + + NSString *hostCpy = [host copy]; + + int aStateIndex = self->stateIndex; + __weak MGCDAsyncSocket *weakSelf = self; + + dispatch_queue_t globalConcurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); + dispatch_async(globalConcurrentQueue, ^{ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + NSError *lookupErr = nil; + NSMutableArray *addresses = [[self class] lookupHost:hostCpy port:port error:&lookupErr]; + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf == nil) return_from_block; + + if (lookupErr) + { + dispatch_async(strongSelf->socketQueue, ^{ @autoreleasepool { + + [strongSelf lookup:aStateIndex didFail:lookupErr]; + }}); + } + else + { + NSData *address4 = nil; + NSData *address6 = nil; + + for (NSData *address in addresses) + { + if (!address4 && [[self class] isIPv4Address:address]) + { + address4 = address; + } + else if (!address6 && [[self class] isIPv6Address:address]) + { + address6 = address; + } + } + + dispatch_async(strongSelf->socketQueue, ^{ @autoreleasepool { + + [strongSelf lookup:aStateIndex didSucceedWithAddress4:address4 address6:address6]; + }}); + } + + #pragma clang diagnostic pop + }}); + + [self startConnectTimeout:timeout]; + + result = YES; + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + + if (errPtr) *errPtr = preConnectErr; + return result; +} + +- (BOOL)connectToAddress:(NSData *)remoteAddr error:(NSError **)errPtr +{ + return [self connectToAddress:remoteAddr viaInterface:nil withTimeout:-1 error:errPtr]; +} + +- (BOOL)connectToAddress:(NSData *)remoteAddr withTimeout:(NSTimeInterval)timeout error:(NSError **)errPtr +{ + return [self connectToAddress:remoteAddr viaInterface:nil withTimeout:timeout error:errPtr]; +} + +- (BOOL)connectToAddress:(NSData *)inRemoteAddr + viaInterface:(NSString *)inInterface + withTimeout:(NSTimeInterval)timeout + error:(NSError **)errPtr +{ + LogTrace(); + + // Just in case immutable objects were passed + NSData *remoteAddr = [inRemoteAddr copy]; + NSString *interface = [inInterface copy]; + + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + // Check for problems with remoteAddr parameter + + NSData *address4 = nil; + NSData *address6 = nil; + + if ([remoteAddr length] >= sizeof(struct sockaddr)) + { + const struct sockaddr *sockaddr = (const struct sockaddr *)[remoteAddr bytes]; + + if (sockaddr->sa_family == AF_INET) + { + if ([remoteAddr length] == sizeof(struct sockaddr_in)) + { + address4 = remoteAddr; + } + } + else if (sockaddr->sa_family == AF_INET6) + { + if ([remoteAddr length] == sizeof(struct sockaddr_in6)) + { + address6 = remoteAddr; + } + } + } + + if ((address4 == nil) && (address6 == nil)) + { + NSString *msg = @"A valid IPv4 or IPv6 address was not given"; + err = [self badParamError:msg]; + + return_from_block; + } + + BOOL isIPv4Disabled = (self->config & kIPv4Disabled) ? YES : NO; + BOOL isIPv6Disabled = (self->config & kIPv6Disabled) ? YES : NO; + + if (isIPv4Disabled && (address4 != nil)) + { + NSString *msg = @"IPv4 has been disabled and an IPv4 address was passed."; + err = [self badParamError:msg]; + + return_from_block; + } + + if (isIPv6Disabled && (address6 != nil)) + { + NSString *msg = @"IPv6 has been disabled and an IPv6 address was passed."; + err = [self badParamError:msg]; + + return_from_block; + } + + // Run through standard pre-connect checks + + if (![self preConnectWithInterface:interface error:&err]) + { + return_from_block; + } + + // We've made it past all the checks. + // It's time to start the connection process. + + if (![self connectWithAddress4:address4 address6:address6 error:&err]) + { + return_from_block; + } + + self->flags |= kSocketStarted; + + [self startConnectTimeout:timeout]; + + result = YES; + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (result == NO) + { + if (errPtr) + *errPtr = err; + } + + return result; +} + +- (BOOL)connectToUrl:(NSURL *)url withTimeout:(NSTimeInterval)timeout error:(NSError **)errPtr +{ + LogTrace(); + + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + // Check for problems with host parameter + + if ([url.path length] == 0) + { + NSString *msg = @"Invalid unix domain socket url."; + err = [self badParamError:msg]; + + return_from_block; + } + + // Run through standard pre-connect checks + + if (![self preConnectWithUrl:url error:&err]) + { + return_from_block; + } + + // We've made it past all the checks. + // It's time to start the connection process. + + self->flags |= kSocketStarted; + + // Start the normal connection process + + NSError *connectError = nil; + if (![self connectWithAddressUN:self->connectInterfaceUN error:&connectError]) + { + [self closeWithError:connectError]; + + return_from_block; + } + + [self startConnectTimeout:timeout]; + + result = YES; + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (result == NO) + { + if (errPtr) + *errPtr = err; + } + + return result; +} + +- (BOOL)connectToNetService:(NSNetService *)netService error:(NSError **)errPtr +{ + NSArray* addresses = [netService addresses]; + for (NSData* address in addresses) + { + BOOL result = [self connectToAddress:address error:errPtr]; + if (result) + { + return YES; + } + } + + return NO; +} + +- (void)lookup:(int)aStateIndex didSucceedWithAddress4:(NSData *)address4 address6:(NSData *)address6 +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert(address4 || address6, @"Expected at least one valid address"); + + if (aStateIndex != stateIndex) + { + LogInfo(@"Ignoring lookupDidSucceed, already disconnected"); + + // The connect operation has been cancelled. + // That is, socket was disconnected, or connection has already timed out. + return; + } + + // Check for problems + + BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; + BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; + + if (isIPv4Disabled && (address6 == nil)) + { + NSString *msg = @"IPv4 has been disabled and DNS lookup found no IPv6 address."; + + [self closeWithError:[self otherError:msg]]; + return; + } + + if (isIPv6Disabled && (address4 == nil)) + { + NSString *msg = @"IPv6 has been disabled and DNS lookup found no IPv4 address."; + + [self closeWithError:[self otherError:msg]]; + return; + } + + // Start the normal connection process + + NSError *err = nil; + if (![self connectWithAddress4:address4 address6:address6 error:&err]) + { + [self closeWithError:err]; + } +} + +/** + * This method is called if the DNS lookup fails. + * This method is executed on the socketQueue. + * + * Since the DNS lookup executed synchronously on a global concurrent queue, + * the original connection request may have already been cancelled or timed-out by the time this method is invoked. + * The lookupIndex tells us whether the lookup is still valid or not. +**/ +- (void)lookup:(int)aStateIndex didFail:(NSError *)error +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + + if (aStateIndex != stateIndex) + { + LogInfo(@"Ignoring lookup:didFail: - already disconnected"); + + // The connect operation has been cancelled. + // That is, socket was disconnected, or connection has already timed out. + return; + } + + [self endConnectTimeout]; + [self closeWithError:error]; +} + +- (BOOL)bindSocket:(int)socketFD toInterface:(NSData *)connectInterface error:(NSError **)errPtr +{ + // Bind the socket to the desired interface (if needed) + + if (connectInterface) + { + LogVerbose(@"Binding socket..."); + + if ([[self class] portFromAddress:connectInterface] > 0) + { + // Since we're going to be binding to a specific port, + // we should turn on reuseaddr to allow us to override sockets in time_wait. + + int reuseOn = 1; + setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseOn, sizeof(reuseOn)); + } + + const struct sockaddr *interfaceAddr = (const struct sockaddr *)[connectInterface bytes]; + + int result = bind(socketFD, interfaceAddr, (socklen_t)[connectInterface length]); + if (result != 0) + { + if (errPtr) + *errPtr = [self errorWithErrno:errno reason:@"Error in bind() function"]; + + return NO; + } + } + + return YES; +} + +- (int)createSocket:(int)family connectInterface:(NSData *)connectInterface errPtr:(NSError **)errPtr +{ + int socketFD = socket(family, SOCK_STREAM, 0); + + if (socketFD == SOCKET_NULL) + { + if (errPtr) + *errPtr = [self errorWithErrno:errno reason:@"Error in socket() function"]; + + return socketFD; + } + + if (![self bindSocket:socketFD toInterface:connectInterface error:errPtr]) + { + [self closeSocket:socketFD]; + + return SOCKET_NULL; + } + + // Prevent SIGPIPE signals + + int nosigpipe = 1; + setsockopt(socketFD, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe)); + + return socketFD; +} + +- (void)connectSocket:(int)socketFD address:(NSData *)address stateIndex:(int)aStateIndex +{ + // If there already is a socket connected, we close socketFD and return + if (self.isConnected) + { + [self closeSocket:socketFD]; + return; + } + + // Start the connection process in a background queue + + __weak MGCDAsyncSocket *weakSelf = self; + + dispatch_queue_t globalConcurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); + dispatch_async(globalConcurrentQueue, ^{ +#pragma clang diagnostic push +#pragma clang diagnostic warning "-Wimplicit-retain-self" + + int result = connect(socketFD, (const struct sockaddr *)[address bytes], (socklen_t)[address length]); + int err = errno; + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf == nil) return_from_block; + + dispatch_async(strongSelf->socketQueue, ^{ @autoreleasepool { + + if (strongSelf.isConnected) + { + [strongSelf closeSocket:socketFD]; + return_from_block; + } + + if (result == 0) + { + [self closeUnusedSocket:socketFD]; + + [strongSelf didConnect:aStateIndex]; + } + else + { + [strongSelf closeSocket:socketFD]; + + // If there are no more sockets trying to connect, we inform the error to the delegate + if (strongSelf.socket4FD == SOCKET_NULL && strongSelf.socket6FD == SOCKET_NULL) + { + NSError *error = [strongSelf errorWithErrno:err reason:@"Error in connect() function"]; + [strongSelf didNotConnect:aStateIndex error:error]; + } + } + }}); + +#pragma clang diagnostic pop + }); + + LogVerbose(@"Connecting..."); +} + +- (void)closeSocket:(int)socketFD +{ + if (socketFD != SOCKET_NULL && + (socketFD == socket6FD || socketFD == socket4FD)) + { + close(socketFD); + + if (socketFD == socket4FD) + { + LogVerbose(@"close(socket4FD)"); + socket4FD = SOCKET_NULL; + } + else if (socketFD == socket6FD) + { + LogVerbose(@"close(socket6FD)"); + socket6FD = SOCKET_NULL; + } + } +} + +- (void)closeUnusedSocket:(int)usedSocketFD +{ + if (usedSocketFD != socket4FD) + { + [self closeSocket:socket4FD]; + } + else if (usedSocketFD != socket6FD) + { + [self closeSocket:socket6FD]; + } +} + +- (BOOL)connectWithAddress4:(NSData *)address4 address6:(NSData *)address6 error:(NSError **)errPtr +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + LogVerbose(@"IPv4: %@:%hu", [[self class] hostFromAddress:address4], [[self class] portFromAddress:address4]); + LogVerbose(@"IPv6: %@:%hu", [[self class] hostFromAddress:address6], [[self class] portFromAddress:address6]); + + // Determine socket type + + BOOL preferIPv6 = (config & kPreferIPv6) ? YES : NO; + + // Create and bind the sockets + + if (address4) + { + LogVerbose(@"Creating IPv4 socket"); + + socket4FD = [self createSocket:AF_INET connectInterface:connectInterface4 errPtr:errPtr]; + } + + if (address6) + { + LogVerbose(@"Creating IPv6 socket"); + + socket6FD = [self createSocket:AF_INET6 connectInterface:connectInterface6 errPtr:errPtr]; + } + + if (socket4FD == SOCKET_NULL && socket6FD == SOCKET_NULL) + { + return NO; + } + + int socketFD, alternateSocketFD; + NSData *address, *alternateAddress; + + if ((preferIPv6 && socket6FD != SOCKET_NULL) || socket4FD == SOCKET_NULL) + { + socketFD = socket6FD; + alternateSocketFD = socket4FD; + address = address6; + alternateAddress = address4; + } + else + { + socketFD = socket4FD; + alternateSocketFD = socket6FD; + address = address4; + alternateAddress = address6; + } + + int aStateIndex = stateIndex; + + [self connectSocket:socketFD address:address stateIndex:aStateIndex]; + + if (alternateAddress) + { + dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(alternateAddressDelay * NSEC_PER_SEC)), socketQueue, ^{ + [self connectSocket:alternateSocketFD address:alternateAddress stateIndex:aStateIndex]; + }); + } + + return YES; +} + +- (BOOL)connectWithAddressUN:(NSData *)address error:(NSError **)errPtr +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + // Create the socket + + int socketFD; + + LogVerbose(@"Creating unix domain socket"); + + socketUN = socket(AF_UNIX, SOCK_STREAM, 0); + + socketFD = socketUN; + + if (socketFD == SOCKET_NULL) + { + if (errPtr) + *errPtr = [self errorWithErrno:errno reason:@"Error in socket() function"]; + + return NO; + } + + // Bind the socket to the desired interface (if needed) + + LogVerbose(@"Binding socket..."); + + int reuseOn = 1; + setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseOn, sizeof(reuseOn)); + +// const struct sockaddr *interfaceAddr = (const struct sockaddr *)[address bytes]; +// +// int result = bind(socketFD, interfaceAddr, (socklen_t)[address length]); +// if (result != 0) +// { +// if (errPtr) +// *errPtr = [self errnoErrorWithReason:@"Error in bind() function"]; +// +// return NO; +// } + + // Prevent SIGPIPE signals + + int nosigpipe = 1; + setsockopt(socketFD, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe)); + + // Start the connection process in a background queue + + int aStateIndex = stateIndex; + + dispatch_queue_t globalConcurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); + dispatch_async(globalConcurrentQueue, ^{ + + const struct sockaddr *addr = (const struct sockaddr *)[address bytes]; + int result = connect(socketFD, addr, addr->sa_len); + if (result == 0) + { + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + [self didConnect:aStateIndex]; + }}); + } + else + { + // TODO: Bad file descriptor + perror("connect"); + NSError *error = [self errorWithErrno:errno reason:@"Error in connect() function"]; + + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + [self didNotConnect:aStateIndex error:error]; + }}); + } + }); + + LogVerbose(@"Connecting..."); + + return YES; +} + +- (void)didConnect:(int)aStateIndex +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + + if (aStateIndex != stateIndex) + { + LogInfo(@"Ignoring didConnect, already disconnected"); + + // The connect operation has been cancelled. + // That is, socket was disconnected, or connection has already timed out. + return; + } + + flags |= kConnected; + + [self endConnectTimeout]; + + #if TARGET_OS_IPHONE + // The endConnectTimeout method executed above incremented the stateIndex. + aStateIndex = stateIndex; + #endif + + // Setup read/write streams (as workaround for specific shortcomings in the iOS platform) + // + // Note: + // There may be configuration options that must be set by the delegate before opening the streams. + // The primary example is the `kCFStreamNetworkServiceTypeBackground` flag, which only works on an unopened stream. + // + // Thus we wait until after the socket:didConnectToHost:port: delegate method has completed. + // This gives the delegate time to properly configure the streams if needed. + + dispatch_block_t SetupStreamsPart1 = ^{ + #if TARGET_OS_IPHONE + + if (![self createReadAndWriteStream]) + { + [self closeWithError:[self otherError:@"Error creating CFStreams"]]; + return; + } + + if (![self registerForStreamCallbacksIncludingReadWrite:NO]) + { + [self closeWithError:[self otherError:@"Error in CFStreamSetClient"]]; + return; + } + + #endif + }; + dispatch_block_t SetupStreamsPart2 = ^{ + #if TARGET_OS_IPHONE + + if (aStateIndex != self->stateIndex) + { + // The socket has been disconnected. + return; + } + + if (![self addStreamsToRunLoop]) + { + [self closeWithError:[self otherError:@"Error in CFStreamScheduleWithRunLoop"]]; + return; + } + + if (![self openStreams]) + { + [self closeWithError:[self otherError:@"Error creating CFStreams"]]; + return; + } + + #endif + }; + + // Notify delegate + + NSString *host = [self connectedHost]; + uint16_t port = [self connectedPort]; + NSURL *url = [self connectedUrl]; + + __strong id theDelegate = delegate; + + if (delegateQueue && host != nil && [theDelegate respondsToSelector:@selector(socket:didConnectToHost:port:)]) + { + SetupStreamsPart1(); + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socket:self didConnectToHost:host port:port]; + + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + SetupStreamsPart2(); + }}); + }}); + } + else if (delegateQueue && url != nil && [theDelegate respondsToSelector:@selector(socket:didConnectToUrl:)]) + { + SetupStreamsPart1(); + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socket:self didConnectToUrl:url]; + + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + SetupStreamsPart2(); + }}); + }}); + } + else + { + SetupStreamsPart1(); + SetupStreamsPart2(); + } + + // Get the connected socket + + int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; + + // Enable non-blocking IO on the socket + + int result = fcntl(socketFD, F_SETFL, O_NONBLOCK); + if (result == -1) + { + NSString *errMsg = @"Error enabling non-blocking IO on socket (fcntl)"; + [self closeWithError:[self otherError:errMsg]]; + + return; + } + + // Setup our read/write sources + + [self setupReadAndWriteSourcesForNewlyConnectedSocket:socketFD]; + + // Dequeue any pending read/write requests + + [self maybeDequeueRead]; + [self maybeDequeueWrite]; +} + +- (void)didNotConnect:(int)aStateIndex error:(NSError *)error +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + + if (aStateIndex != stateIndex) + { + LogInfo(@"Ignoring didNotConnect, already disconnected"); + + // The connect operation has been cancelled. + // That is, socket was disconnected, or connection has already timed out. + return; + } + + [self closeWithError:error]; +} + +- (void)startConnectTimeout:(NSTimeInterval)timeout +{ + if (timeout >= 0.0) + { + connectTimer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, socketQueue); + + __weak MGCDAsyncSocket *weakSelf = self; + + dispatch_source_set_event_handler(connectTimer, ^{ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf == nil) return_from_block; + + [strongSelf doConnectTimeout]; + + #pragma clang diagnostic pop + }}); + + #if !OS_OBJECT_USE_OBJC + dispatch_source_t theConnectTimer = connectTimer; + dispatch_source_set_cancel_handler(connectTimer, ^{ + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + LogVerbose(@"dispatch_release(connectTimer)"); + dispatch_release(theConnectTimer); + + #pragma clang diagnostic pop + }); + #endif + + dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeout * NSEC_PER_SEC)); + dispatch_source_set_timer(connectTimer, tt, DISPATCH_TIME_FOREVER, 0); + + dispatch_resume(connectTimer); + } +} + +- (void)endConnectTimeout +{ + LogTrace(); + + if (connectTimer) + { + dispatch_source_cancel(connectTimer); + connectTimer = NULL; + } + + // Increment stateIndex. + // This will prevent us from processing results from any related background asynchronous operations. + // + // Note: This should be called from close method even if connectTimer is NULL. + // This is because one might disconnect a socket prior to a successful connection which had no timeout. + + stateIndex++; + + if (connectInterface4) + { + connectInterface4 = nil; + } + if (connectInterface6) + { + connectInterface6 = nil; + } +} + +- (void)doConnectTimeout +{ + LogTrace(); + + [self endConnectTimeout]; + [self closeWithError:[self connectTimeoutError]]; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Disconnecting +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (void)closeWithError:(NSError *)error +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + [self endConnectTimeout]; + + if (currentRead != nil) [self endCurrentRead]; + if (currentWrite != nil) [self endCurrentWrite]; + + [readQueue removeAllObjects]; + [writeQueue removeAllObjects]; + + [preBuffer reset]; + + #if TARGET_OS_IPHONE + { + if (readStream || writeStream) + { + [self removeStreamsFromRunLoop]; + + if (readStream) + { + CFReadStreamSetClient(readStream, kCFStreamEventNone, NULL, NULL); + CFReadStreamClose(readStream); + CFRelease(readStream); + readStream = NULL; + } + if (writeStream) + { + CFWriteStreamSetClient(writeStream, kCFStreamEventNone, NULL, NULL); + CFWriteStreamClose(writeStream); + CFRelease(writeStream); + writeStream = NULL; + } + } + } + #endif + + [sslPreBuffer reset]; + sslErrCode = lastSSLHandshakeError = noErr; + + if (sslContext) + { + // Getting a linker error here about the SSLx() functions? + // You need to add the Security Framework to your application. + + SSLClose(sslContext); + + #if TARGET_OS_IPHONE || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1080) + CFRelease(sslContext); + #else + SSLDisposeContext(sslContext); + #endif + + sslContext = NULL; + } + + // For some crazy reason (in my opinion), cancelling a dispatch source doesn't + // invoke the cancel handler if the dispatch source is paused. + // So we have to unpause the source if needed. + // This allows the cancel handler to be run, which in turn releases the source and closes the socket. + + if (!accept4Source && !accept6Source && !acceptUNSource && !readSource && !writeSource) + { + LogVerbose(@"manually closing close"); + + if (socket4FD != SOCKET_NULL) + { + LogVerbose(@"close(socket4FD)"); + close(socket4FD); + socket4FD = SOCKET_NULL; + } + + if (socket6FD != SOCKET_NULL) + { + LogVerbose(@"close(socket6FD)"); + close(socket6FD); + socket6FD = SOCKET_NULL; + } + + if (socketUN != SOCKET_NULL) + { + LogVerbose(@"close(socketUN)"); + close(socketUN); + socketUN = SOCKET_NULL; + unlink(socketUrl.path.fileSystemRepresentation); + socketUrl = nil; + } + } + else + { + if (accept4Source) + { + LogVerbose(@"dispatch_source_cancel(accept4Source)"); + dispatch_source_cancel(accept4Source); + + // We never suspend accept4Source + + accept4Source = NULL; + } + + if (accept6Source) + { + LogVerbose(@"dispatch_source_cancel(accept6Source)"); + dispatch_source_cancel(accept6Source); + + // We never suspend accept6Source + + accept6Source = NULL; + } + + if (acceptUNSource) + { + LogVerbose(@"dispatch_source_cancel(acceptUNSource)"); + dispatch_source_cancel(acceptUNSource); + + // We never suspend acceptUNSource + + acceptUNSource = NULL; + } + + if (readSource) + { + LogVerbose(@"dispatch_source_cancel(readSource)"); + dispatch_source_cancel(readSource); + + [self resumeReadSource]; + + readSource = NULL; + } + + if (writeSource) + { + LogVerbose(@"dispatch_source_cancel(writeSource)"); + dispatch_source_cancel(writeSource); + + [self resumeWriteSource]; + + writeSource = NULL; + } + + // The sockets will be closed by the cancel handlers of the corresponding source + + socket4FD = SOCKET_NULL; + socket6FD = SOCKET_NULL; + socketUN = SOCKET_NULL; + } + + // If the client has passed the connect/accept method, then the connection has at least begun. + // Notify delegate that it is now ending. + BOOL shouldCallDelegate = (flags & kSocketStarted) ? YES : NO; + BOOL isDeallocating = (flags & kDealloc) ? YES : NO; + + // Clear stored socket info and all flags (config remains as is) + socketFDBytesAvailable = 0; + flags = 0; + sslWriteCachedLength = 0; + + if (shouldCallDelegate) + { + __strong id theDelegate = delegate; + __strong id theSelf = isDeallocating ? nil : self; + + if (delegateQueue && [theDelegate respondsToSelector: @selector(socketDidDisconnect:withError:)]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socketDidDisconnect:theSelf withError:error]; + }}); + } + } +} + +- (void)disconnect +{ + dispatch_block_t block = ^{ @autoreleasepool { + + if (self->flags & kSocketStarted) + { + [self closeWithError:nil]; + } + }}; + + // Synchronous disconnection, as documented in the header file + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); +} + +- (void)disconnectAfterReading +{ + dispatch_async(socketQueue, ^{ @autoreleasepool { + + if (self->flags & kSocketStarted) + { + self->flags |= (kForbidReadsWrites | kDisconnectAfterReads); + [self maybeClose]; + } + }}); +} + +- (void)disconnectAfterWriting +{ + dispatch_async(socketQueue, ^{ @autoreleasepool { + + if (self->flags & kSocketStarted) + { + self->flags |= (kForbidReadsWrites | kDisconnectAfterWrites); + [self maybeClose]; + } + }}); +} + +- (void)disconnectAfterReadingAndWriting +{ + dispatch_async(socketQueue, ^{ @autoreleasepool { + + if (self->flags & kSocketStarted) + { + self->flags |= (kForbidReadsWrites | kDisconnectAfterReads | kDisconnectAfterWrites); + [self maybeClose]; + } + }}); +} + +/** + * Closes the socket if possible. + * That is, if all writes have completed, and we're set to disconnect after writing, + * or if all reads have completed, and we're set to disconnect after reading. +**/ +- (void)maybeClose +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + BOOL shouldClose = NO; + + if (flags & kDisconnectAfterReads) + { + if (([readQueue count] == 0) && (currentRead == nil)) + { + if (flags & kDisconnectAfterWrites) + { + if (([writeQueue count] == 0) && (currentWrite == nil)) + { + shouldClose = YES; + } + } + else + { + shouldClose = YES; + } + } + } + else if (flags & kDisconnectAfterWrites) + { + if (([writeQueue count] == 0) && (currentWrite == nil)) + { + shouldClose = YES; + } + } + + if (shouldClose) + { + [self closeWithError:nil]; + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Errors +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (NSError *)badConfigError:(NSString *)errMsg +{ + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketBadConfigError userInfo:userInfo]; +} + +- (NSError *)badParamError:(NSString *)errMsg +{ + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketBadParamError userInfo:userInfo]; +} + ++ (NSError *)gaiError:(int)gai_error +{ + NSString *errMsg = [NSString stringWithCString:gai_strerror(gai_error) encoding:NSASCIIStringEncoding]; + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:@"kCFStreamErrorDomainNetDB" code:gai_error userInfo:userInfo]; +} + +- (NSError *)errorWithErrno:(int)err reason:(NSString *)reason +{ + NSString *errMsg = [NSString stringWithUTF8String:strerror(err)]; + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg, + NSLocalizedFailureReasonErrorKey : reason}; + + return [NSError errorWithDomain:NSPOSIXErrorDomain code:err userInfo:userInfo]; +} + +- (NSError *)errnoError +{ + NSString *errMsg = [NSString stringWithUTF8String:strerror(errno)]; + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:NSPOSIXErrorDomain code:errno userInfo:userInfo]; +} + +- (NSError *)sslError:(OSStatus)ssl_error +{ + NSString *msg = @"Error code definition can be found in Apple's SecureTransport.h"; + NSDictionary *userInfo = @{NSLocalizedRecoverySuggestionErrorKey : msg}; + + return [NSError errorWithDomain:@"kCFStreamErrorDomainSSL" code:ssl_error userInfo:userInfo]; +} + +- (NSError *)connectTimeoutError +{ + NSString *errMsg = NSLocalizedStringWithDefaultValue(@"MGCDAsyncSocketConnectTimeoutError", + @"MGCDAsyncSocket", [NSBundle mainBundle], + @"Attempt to connect to host timed out", nil); + + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketConnectTimeoutError userInfo:userInfo]; +} + +/** + * Returns a standard AsyncSocket maxed out error. +**/ +- (NSError *)readMaxedOutError +{ + NSString *errMsg = NSLocalizedStringWithDefaultValue(@"MGCDAsyncSocketReadMaxedOutError", + @"MGCDAsyncSocket", [NSBundle mainBundle], + @"Read operation reached set maximum length", nil); + + NSDictionary *info = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketReadMaxedOutError userInfo:info]; +} + +/** + * Returns a standard AsyncSocket write timeout error. +**/ +- (NSError *)readTimeoutError +{ + NSString *errMsg = NSLocalizedStringWithDefaultValue(@"MGCDAsyncSocketReadTimeoutError", + @"MGCDAsyncSocket", [NSBundle mainBundle], + @"Read operation timed out", nil); + + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketReadTimeoutError userInfo:userInfo]; +} + +/** + * Returns a standard AsyncSocket write timeout error. +**/ +- (NSError *)writeTimeoutError +{ + NSString *errMsg = NSLocalizedStringWithDefaultValue(@"MGCDAsyncSocketWriteTimeoutError", + @"MGCDAsyncSocket", [NSBundle mainBundle], + @"Write operation timed out", nil); + + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketWriteTimeoutError userInfo:userInfo]; +} + +- (NSError *)connectionClosedError +{ + NSString *errMsg = NSLocalizedStringWithDefaultValue(@"MGCDAsyncSocketClosedError", + @"MGCDAsyncSocket", [NSBundle mainBundle], + @"Socket closed by remote peer", nil); + + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketClosedError userInfo:userInfo]; +} + +- (NSError *)otherError:(NSString *)errMsg +{ + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncSocketErrorDomain code:MGCDAsyncSocketOtherError userInfo:userInfo]; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Diagnostics +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (BOOL)isDisconnected +{ + __block BOOL result = NO; + + dispatch_block_t block = ^{ + result = (self->flags & kSocketStarted) ? NO : YES; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (BOOL)isConnected +{ + __block BOOL result = NO; + + dispatch_block_t block = ^{ + result = (self->flags & kConnected) ? YES : NO; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (NSString *)connectedHost +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + if (socket4FD != SOCKET_NULL) + return [self connectedHostFromSocket4:socket4FD]; + if (socket6FD != SOCKET_NULL) + return [self connectedHostFromSocket6:socket6FD]; + + return nil; + } + else + { + __block NSString *result = nil; + + dispatch_sync(socketQueue, ^{ @autoreleasepool { + + if (self->socket4FD != SOCKET_NULL) + result = [self connectedHostFromSocket4:self->socket4FD]; + else if (self->socket6FD != SOCKET_NULL) + result = [self connectedHostFromSocket6:self->socket6FD]; + }}); + + return result; + } +} + +- (uint16_t)connectedPort +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + if (socket4FD != SOCKET_NULL) + return [self connectedPortFromSocket4:socket4FD]; + if (socket6FD != SOCKET_NULL) + return [self connectedPortFromSocket6:socket6FD]; + + return 0; + } + else + { + __block uint16_t result = 0; + + dispatch_sync(socketQueue, ^{ + // No need for autorelease pool + + if (self->socket4FD != SOCKET_NULL) + result = [self connectedPortFromSocket4:self->socket4FD]; + else if (self->socket6FD != SOCKET_NULL) + result = [self connectedPortFromSocket6:self->socket6FD]; + }); + + return result; + } +} + +- (NSURL *)connectedUrl +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + if (socketUN != SOCKET_NULL) + return [self connectedUrlFromSocketUN:socketUN]; + + return nil; + } + else + { + __block NSURL *result = nil; + + dispatch_sync(socketQueue, ^{ @autoreleasepool { + + if (self->socketUN != SOCKET_NULL) + result = [self connectedUrlFromSocketUN:self->socketUN]; + }}); + + return result; + } +} + +- (NSString *)localHost +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + if (socket4FD != SOCKET_NULL) + return [self localHostFromSocket4:socket4FD]; + if (socket6FD != SOCKET_NULL) + return [self localHostFromSocket6:socket6FD]; + + return nil; + } + else + { + __block NSString *result = nil; + + dispatch_sync(socketQueue, ^{ @autoreleasepool { + + if (self->socket4FD != SOCKET_NULL) + result = [self localHostFromSocket4:self->socket4FD]; + else if (self->socket6FD != SOCKET_NULL) + result = [self localHostFromSocket6:self->socket6FD]; + }}); + + return result; + } +} + +- (uint16_t)localPort +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + if (socket4FD != SOCKET_NULL) + return [self localPortFromSocket4:socket4FD]; + if (socket6FD != SOCKET_NULL) + return [self localPortFromSocket6:socket6FD]; + + return 0; + } + else + { + __block uint16_t result = 0; + + dispatch_sync(socketQueue, ^{ + // No need for autorelease pool + + if (self->socket4FD != SOCKET_NULL) + result = [self localPortFromSocket4:self->socket4FD]; + else if (self->socket6FD != SOCKET_NULL) + result = [self localPortFromSocket6:self->socket6FD]; + }); + + return result; + } +} + +- (NSString *)connectedHost4 +{ + if (socket4FD != SOCKET_NULL) + return [self connectedHostFromSocket4:socket4FD]; + + return nil; +} + +- (NSString *)connectedHost6 +{ + if (socket6FD != SOCKET_NULL) + return [self connectedHostFromSocket6:socket6FD]; + + return nil; +} + +- (uint16_t)connectedPort4 +{ + if (socket4FD != SOCKET_NULL) + return [self connectedPortFromSocket4:socket4FD]; + + return 0; +} + +- (uint16_t)connectedPort6 +{ + if (socket6FD != SOCKET_NULL) + return [self connectedPortFromSocket6:socket6FD]; + + return 0; +} + +- (NSString *)localHost4 +{ + if (socket4FD != SOCKET_NULL) + return [self localHostFromSocket4:socket4FD]; + + return nil; +} + +- (NSString *)localHost6 +{ + if (socket6FD != SOCKET_NULL) + return [self localHostFromSocket6:socket6FD]; + + return nil; +} + +- (uint16_t)localPort4 +{ + if (socket4FD != SOCKET_NULL) + return [self localPortFromSocket4:socket4FD]; + + return 0; +} + +- (uint16_t)localPort6 +{ + if (socket6FD != SOCKET_NULL) + return [self localPortFromSocket6:socket6FD]; + + return 0; +} + +- (NSString *)connectedHostFromSocket4:(int)socketFD +{ + struct sockaddr_in sockaddr4; + socklen_t sockaddr4len = sizeof(sockaddr4); + + if (getpeername(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) < 0) + { + return nil; + } + return [[self class] hostFromSockaddr4:&sockaddr4]; +} + +- (NSString *)connectedHostFromSocket6:(int)socketFD +{ + struct sockaddr_in6 sockaddr6; + socklen_t sockaddr6len = sizeof(sockaddr6); + + if (getpeername(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) < 0) + { + return nil; + } + return [[self class] hostFromSockaddr6:&sockaddr6]; +} + +- (uint16_t)connectedPortFromSocket4:(int)socketFD +{ + struct sockaddr_in sockaddr4; + socklen_t sockaddr4len = sizeof(sockaddr4); + + if (getpeername(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) < 0) + { + return 0; + } + return [[self class] portFromSockaddr4:&sockaddr4]; +} + +- (uint16_t)connectedPortFromSocket6:(int)socketFD +{ + struct sockaddr_in6 sockaddr6; + socklen_t sockaddr6len = sizeof(sockaddr6); + + if (getpeername(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) < 0) + { + return 0; + } + return [[self class] portFromSockaddr6:&sockaddr6]; +} + +- (NSURL *)connectedUrlFromSocketUN:(int)socketFD +{ + struct sockaddr_un sockaddr; + socklen_t sockaddrlen = sizeof(sockaddr); + + if (getpeername(socketFD, (struct sockaddr *)&sockaddr, &sockaddrlen) < 0) + { + return 0; + } + return [[self class] urlFromSockaddrUN:&sockaddr]; +} + +- (NSString *)localHostFromSocket4:(int)socketFD +{ + struct sockaddr_in sockaddr4; + socklen_t sockaddr4len = sizeof(sockaddr4); + + if (getsockname(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) < 0) + { + return nil; + } + return [[self class] hostFromSockaddr4:&sockaddr4]; +} + +- (NSString *)localHostFromSocket6:(int)socketFD +{ + struct sockaddr_in6 sockaddr6; + socklen_t sockaddr6len = sizeof(sockaddr6); + + if (getsockname(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) < 0) + { + return nil; + } + return [[self class] hostFromSockaddr6:&sockaddr6]; +} + +- (uint16_t)localPortFromSocket4:(int)socketFD +{ + struct sockaddr_in sockaddr4; + socklen_t sockaddr4len = sizeof(sockaddr4); + + if (getsockname(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) < 0) + { + return 0; + } + return [[self class] portFromSockaddr4:&sockaddr4]; +} + +- (uint16_t)localPortFromSocket6:(int)socketFD +{ + struct sockaddr_in6 sockaddr6; + socklen_t sockaddr6len = sizeof(sockaddr6); + + if (getsockname(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) < 0) + { + return 0; + } + return [[self class] portFromSockaddr6:&sockaddr6]; +} + +- (NSData *)connectedAddress +{ + __block NSData *result = nil; + + dispatch_block_t block = ^{ + if (self->socket4FD != SOCKET_NULL) + { + struct sockaddr_in sockaddr4; + socklen_t sockaddr4len = sizeof(sockaddr4); + + if (getpeername(self->socket4FD, (struct sockaddr *)&sockaddr4, &sockaddr4len) == 0) + { + result = [[NSData alloc] initWithBytes:&sockaddr4 length:sockaddr4len]; + } + } + + if (self->socket6FD != SOCKET_NULL) + { + struct sockaddr_in6 sockaddr6; + socklen_t sockaddr6len = sizeof(sockaddr6); + + if (getpeername(self->socket6FD, (struct sockaddr *)&sockaddr6, &sockaddr6len) == 0) + { + result = [[NSData alloc] initWithBytes:&sockaddr6 length:sockaddr6len]; + } + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (NSData *)localAddress +{ + __block NSData *result = nil; + + dispatch_block_t block = ^{ + if (self->socket4FD != SOCKET_NULL) + { + struct sockaddr_in sockaddr4; + socklen_t sockaddr4len = sizeof(sockaddr4); + + if (getsockname(self->socket4FD, (struct sockaddr *)&sockaddr4, &sockaddr4len) == 0) + { + result = [[NSData alloc] initWithBytes:&sockaddr4 length:sockaddr4len]; + } + } + + if (self->socket6FD != SOCKET_NULL) + { + struct sockaddr_in6 sockaddr6; + socklen_t sockaddr6len = sizeof(sockaddr6); + + if (getsockname(self->socket6FD, (struct sockaddr *)&sockaddr6, &sockaddr6len) == 0) + { + result = [[NSData alloc] initWithBytes:&sockaddr6 length:sockaddr6len]; + } + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (BOOL)isIPv4 +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return (socket4FD != SOCKET_NULL); + } + else + { + __block BOOL result = NO; + + dispatch_sync(socketQueue, ^{ + result = (self->socket4FD != SOCKET_NULL); + }); + + return result; + } +} + +- (BOOL)isIPv6 +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return (socket6FD != SOCKET_NULL); + } + else + { + __block BOOL result = NO; + + dispatch_sync(socketQueue, ^{ + result = (self->socket6FD != SOCKET_NULL); + }); + + return result; + } +} + +- (BOOL)isSecure +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return (flags & kSocketSecure) ? YES : NO; + } + else + { + __block BOOL result; + + dispatch_sync(socketQueue, ^{ + result = (self->flags & kSocketSecure) ? YES : NO; + }); + + return result; + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Utilities +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * Finds the address of an interface description. + * An inteface description may be an interface name (en0, en1, lo0) or corresponding IP (192.168.4.34). + * + * The interface description may optionally contain a port number at the end, separated by a colon. + * If a non-zero port parameter is provided, any port number in the interface description is ignored. + * + * The returned value is a 'struct sockaddr' wrapped in an NSMutableData object. +**/ +- (void)getInterfaceAddress4:(NSMutableData **)interfaceAddr4Ptr + address6:(NSMutableData **)interfaceAddr6Ptr + fromDescription:(NSString *)interfaceDescription + port:(uint16_t)port +{ + NSMutableData *addr4 = nil; + NSMutableData *addr6 = nil; + + NSString *interface = nil; + + NSArray *components = [interfaceDescription componentsSeparatedByString:@":"]; + if ([components count] > 0) + { + NSString *temp = [components objectAtIndex:0]; + if ([temp length] > 0) + { + interface = temp; + } + } + if ([components count] > 1 && port == 0) + { + NSString *temp = [components objectAtIndex:1]; + long portL = strtol([temp UTF8String], NULL, 10); + + if (portL > 0 && portL <= UINT16_MAX) + { + port = (uint16_t)portL; + } + } + + if (interface == nil) + { + // ANY address + + struct sockaddr_in sockaddr4; + memset(&sockaddr4, 0, sizeof(sockaddr4)); + + sockaddr4.sin_len = sizeof(sockaddr4); + sockaddr4.sin_family = AF_INET; + sockaddr4.sin_port = htons(port); + sockaddr4.sin_addr.s_addr = htonl(INADDR_ANY); + + struct sockaddr_in6 sockaddr6; + memset(&sockaddr6, 0, sizeof(sockaddr6)); + + sockaddr6.sin6_len = sizeof(sockaddr6); + sockaddr6.sin6_family = AF_INET6; + sockaddr6.sin6_port = htons(port); + sockaddr6.sin6_addr = in6addr_any; + + addr4 = [NSMutableData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]; + addr6 = [NSMutableData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]; + } + else if ([interface isEqualToString:@"localhost"] || [interface isEqualToString:@"loopback"]) + { + // LOOPBACK address + + struct sockaddr_in sockaddr4; + memset(&sockaddr4, 0, sizeof(sockaddr4)); + + sockaddr4.sin_len = sizeof(sockaddr4); + sockaddr4.sin_family = AF_INET; + sockaddr4.sin_port = htons(port); + sockaddr4.sin_addr.s_addr = htonl(INADDR_LOOPBACK); + + struct sockaddr_in6 sockaddr6; + memset(&sockaddr6, 0, sizeof(sockaddr6)); + + sockaddr6.sin6_len = sizeof(sockaddr6); + sockaddr6.sin6_family = AF_INET6; + sockaddr6.sin6_port = htons(port); + sockaddr6.sin6_addr = in6addr_loopback; + + addr4 = [NSMutableData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]; + addr6 = [NSMutableData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]; + } + else + { + const char *iface = [interface UTF8String]; + + struct ifaddrs *addrs; + const struct ifaddrs *cursor; + + if ((getifaddrs(&addrs) == 0)) + { + cursor = addrs; + while (cursor != NULL) + { + if ((addr4 == nil) && (cursor->ifa_addr->sa_family == AF_INET)) + { + // IPv4 + + struct sockaddr_in nativeAddr4; + memcpy(&nativeAddr4, cursor->ifa_addr, sizeof(nativeAddr4)); + + if (strcmp(cursor->ifa_name, iface) == 0) + { + // Name match + + nativeAddr4.sin_port = htons(port); + + addr4 = [NSMutableData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; + } + else + { + char ip[INET_ADDRSTRLEN]; + + const char *conversion = inet_ntop(AF_INET, &nativeAddr4.sin_addr, ip, sizeof(ip)); + + if ((conversion != NULL) && (strcmp(ip, iface) == 0)) + { + // IP match + + nativeAddr4.sin_port = htons(port); + + addr4 = [NSMutableData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; + } + } + } + else if ((addr6 == nil) && (cursor->ifa_addr->sa_family == AF_INET6)) + { + // IPv6 + + struct sockaddr_in6 nativeAddr6; + memcpy(&nativeAddr6, cursor->ifa_addr, sizeof(nativeAddr6)); + + if (strcmp(cursor->ifa_name, iface) == 0) + { + // Name match + + nativeAddr6.sin6_port = htons(port); + + addr6 = [NSMutableData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; + } + else + { + char ip[INET6_ADDRSTRLEN]; + + const char *conversion = inet_ntop(AF_INET6, &nativeAddr6.sin6_addr, ip, sizeof(ip)); + + if ((conversion != NULL) && (strcmp(ip, iface) == 0)) + { + // IP match + + nativeAddr6.sin6_port = htons(port); + + addr6 = [NSMutableData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; + } + } + } + + cursor = cursor->ifa_next; + } + + freeifaddrs(addrs); + } + } + + if (interfaceAddr4Ptr) *interfaceAddr4Ptr = addr4; + if (interfaceAddr6Ptr) *interfaceAddr6Ptr = addr6; +} + +- (NSData *)getInterfaceAddressFromUrl:(NSURL *)url +{ + NSString *path = url.path; + if (path.length == 0) { + return nil; + } + + struct sockaddr_un nativeAddr; + nativeAddr.sun_family = AF_UNIX; + strlcpy(nativeAddr.sun_path, path.fileSystemRepresentation, sizeof(nativeAddr.sun_path)); + nativeAddr.sun_len = (unsigned char)SUN_LEN(&nativeAddr); + NSData *interface = [NSData dataWithBytes:&nativeAddr length:sizeof(struct sockaddr_un)]; + + return interface; +} + +- (void)setupReadAndWriteSourcesForNewlyConnectedSocket:(int)socketFD +{ + readSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, socketFD, 0, socketQueue); + writeSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_WRITE, socketFD, 0, socketQueue); + + // Setup event handlers + + __weak MGCDAsyncSocket *weakSelf = self; + + dispatch_source_set_event_handler(readSource, ^{ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf == nil) return_from_block; + + LogVerbose(@"readEventBlock"); + + strongSelf->socketFDBytesAvailable = dispatch_source_get_data(strongSelf->readSource); + LogVerbose(@"socketFDBytesAvailable: %lu", strongSelf->socketFDBytesAvailable); + + if (strongSelf->socketFDBytesAvailable > 0) + [strongSelf doReadData]; + else + [strongSelf doReadEOF]; + + #pragma clang diagnostic pop + }}); + + dispatch_source_set_event_handler(writeSource, ^{ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf == nil) return_from_block; + + LogVerbose(@"writeEventBlock"); + + strongSelf->flags |= kSocketCanAcceptBytes; + [strongSelf doWriteData]; + + #pragma clang diagnostic pop + }}); + + // Setup cancel handlers + + __block int socketFDRefCount = 2; + + #if !OS_OBJECT_USE_OBJC + dispatch_source_t theReadSource = readSource; + dispatch_source_t theWriteSource = writeSource; + #endif + + dispatch_source_set_cancel_handler(readSource, ^{ + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + LogVerbose(@"readCancelBlock"); + + #if !OS_OBJECT_USE_OBJC + LogVerbose(@"dispatch_release(readSource)"); + dispatch_release(theReadSource); + #endif + + if (--socketFDRefCount == 0) + { + LogVerbose(@"close(socketFD)"); + close(socketFD); + } + + #pragma clang diagnostic pop + }); + + dispatch_source_set_cancel_handler(writeSource, ^{ + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + LogVerbose(@"writeCancelBlock"); + + #if !OS_OBJECT_USE_OBJC + LogVerbose(@"dispatch_release(writeSource)"); + dispatch_release(theWriteSource); + #endif + + if (--socketFDRefCount == 0) + { + LogVerbose(@"close(socketFD)"); + close(socketFD); + } + + #pragma clang diagnostic pop + }); + + // We will not be able to read until data arrives. + // But we should be able to write immediately. + + socketFDBytesAvailable = 0; + flags &= ~kReadSourceSuspended; + + LogVerbose(@"dispatch_resume(readSource)"); + dispatch_resume(readSource); + + flags |= kSocketCanAcceptBytes; + flags |= kWriteSourceSuspended; +} + +- (BOOL)usingCFStreamForTLS +{ + #if TARGET_OS_IPHONE + + if ((flags & kSocketSecure) && (flags & kUsingCFStreamForTLS)) + { + // The startTLS method was given the MGCDAsyncSocketUseCFStreamForTLS flag. + + return YES; + } + + #endif + + return NO; +} + +- (BOOL)usingSecureTransportForTLS +{ + // Invoking this method is equivalent to ![self usingCFStreamForTLS] (just more readable) + + #if TARGET_OS_IPHONE + + if ((flags & kSocketSecure) && (flags & kUsingCFStreamForTLS)) + { + // The startTLS method was given the MGCDAsyncSocketUseCFStreamForTLS flag. + + return NO; + } + + #endif + + return YES; +} + +- (void)suspendReadSource +{ + if (!(flags & kReadSourceSuspended)) + { + LogVerbose(@"dispatch_suspend(readSource)"); + + dispatch_suspend(readSource); + flags |= kReadSourceSuspended; + } +} + +- (void)resumeReadSource +{ + if (flags & kReadSourceSuspended) + { + LogVerbose(@"dispatch_resume(readSource)"); + + dispatch_resume(readSource); + flags &= ~kReadSourceSuspended; + } +} + +- (void)suspendWriteSource +{ + if (!(flags & kWriteSourceSuspended)) + { + LogVerbose(@"dispatch_suspend(writeSource)"); + + dispatch_suspend(writeSource); + flags |= kWriteSourceSuspended; + } +} + +- (void)resumeWriteSource +{ + if (flags & kWriteSourceSuspended) + { + LogVerbose(@"dispatch_resume(writeSource)"); + + dispatch_resume(writeSource); + flags &= ~kWriteSourceSuspended; + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Reading +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (void)readDataWithTimeout:(NSTimeInterval)timeout tag:(long)tag +{ + [self readDataWithTimeout:timeout buffer:nil bufferOffset:0 maxLength:0 tag:tag]; +} + +- (void)readDataWithTimeout:(NSTimeInterval)timeout + buffer:(NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + tag:(long)tag +{ + [self readDataWithTimeout:timeout buffer:buffer bufferOffset:offset maxLength:0 tag:tag]; +} + +- (void)readDataWithTimeout:(NSTimeInterval)timeout + buffer:(NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + maxLength:(NSUInteger)length + tag:(long)tag +{ + if (offset > [buffer length]) { + LogWarn(@"Cannot read: offset > [buffer length]"); + return; + } + + MGCDAsyncReadPacket *packet = [[MGCDAsyncReadPacket alloc] initWithData:buffer + startOffset:offset + maxLength:length + timeout:timeout + readLength:0 + terminator:nil + tag:tag]; + + dispatch_async(socketQueue, ^{ @autoreleasepool { + + LogTrace(); + + if ((self->flags & kSocketStarted) && !(self->flags & kForbidReadsWrites)) + { + [self->readQueue addObject:packet]; + [self maybeDequeueRead]; + } + }}); + + // Do not rely on the block being run in order to release the packet, + // as the queue might get released without the block completing. +} + +- (void)readDataToLength:(NSUInteger)length withTimeout:(NSTimeInterval)timeout tag:(long)tag +{ + [self readDataToLength:length withTimeout:timeout buffer:nil bufferOffset:0 tag:tag]; +} + +- (void)readDataToLength:(NSUInteger)length + withTimeout:(NSTimeInterval)timeout + buffer:(NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + tag:(long)tag +{ + if (length == 0) { + LogWarn(@"Cannot read: length == 0"); + return; + } + if (offset > [buffer length]) { + LogWarn(@"Cannot read: offset > [buffer length]"); + return; + } + + MGCDAsyncReadPacket *packet = [[MGCDAsyncReadPacket alloc] initWithData:buffer + startOffset:offset + maxLength:0 + timeout:timeout + readLength:length + terminator:nil + tag:tag]; + + dispatch_async(socketQueue, ^{ @autoreleasepool { + + LogTrace(); + + if ((self->flags & kSocketStarted) && !(self->flags & kForbidReadsWrites)) + { + [self->readQueue addObject:packet]; + [self maybeDequeueRead]; + } + }}); + + // Do not rely on the block being run in order to release the packet, + // as the queue might get released without the block completing. +} + +- (void)readDataToData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag +{ + [self readDataToData:data withTimeout:timeout buffer:nil bufferOffset:0 maxLength:0 tag:tag]; +} + +- (void)readDataToData:(NSData *)data + withTimeout:(NSTimeInterval)timeout + buffer:(NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + tag:(long)tag +{ + [self readDataToData:data withTimeout:timeout buffer:buffer bufferOffset:offset maxLength:0 tag:tag]; +} + +- (void)readDataToData:(NSData *)data withTimeout:(NSTimeInterval)timeout maxLength:(NSUInteger)length tag:(long)tag +{ + [self readDataToData:data withTimeout:timeout buffer:nil bufferOffset:0 maxLength:length tag:tag]; +} + +- (void)readDataToData:(NSData *)data + withTimeout:(NSTimeInterval)timeout + buffer:(NSMutableData *)buffer + bufferOffset:(NSUInteger)offset + maxLength:(NSUInteger)maxLength + tag:(long)tag +{ + if ([data length] == 0) { + LogWarn(@"Cannot read: [data length] == 0"); + return; + } + if (offset > [buffer length]) { + LogWarn(@"Cannot read: offset > [buffer length]"); + return; + } + if (maxLength > 0 && maxLength < [data length]) { + LogWarn(@"Cannot read: maxLength > 0 && maxLength < [data length]"); + return; + } + + MGCDAsyncReadPacket *packet = [[MGCDAsyncReadPacket alloc] initWithData:buffer + startOffset:offset + maxLength:maxLength + timeout:timeout + readLength:0 + terminator:data + tag:tag]; + + dispatch_async(socketQueue, ^{ @autoreleasepool { + + LogTrace(); + + if ((self->flags & kSocketStarted) && !(self->flags & kForbidReadsWrites)) + { + [self->readQueue addObject:packet]; + [self maybeDequeueRead]; + } + }}); + + // Do not rely on the block being run in order to release the packet, + // as the queue might get released without the block completing. +} + +- (float)progressOfReadReturningTag:(long *)tagPtr bytesDone:(NSUInteger *)donePtr total:(NSUInteger *)totalPtr +{ + __block float result = 0.0F; + + dispatch_block_t block = ^{ + + if (!self->currentRead || ![self->currentRead isKindOfClass:[MGCDAsyncReadPacket class]]) + { + // We're not reading anything right now. + + if (tagPtr != NULL) *tagPtr = 0; + if (donePtr != NULL) *donePtr = 0; + if (totalPtr != NULL) *totalPtr = 0; + + result = NAN; + } + else + { + // It's only possible to know the progress of our read if we're reading to a certain length. + // If we're reading to data, we of course have no idea when the data will arrive. + // If we're reading to timeout, then we have no idea when the next chunk of data will arrive. + + NSUInteger done = self->currentRead->bytesDone; + NSUInteger total = self->currentRead->readLength; + + if (tagPtr != NULL) *tagPtr = self->currentRead->tag; + if (donePtr != NULL) *donePtr = done; + if (totalPtr != NULL) *totalPtr = total; + + if (total > 0) + result = (float)done / (float)total; + else + result = 1.0F; + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +/** + * This method starts a new read, if needed. + * + * It is called when: + * - a user requests a read + * - after a read request has finished (to handle the next request) + * - immediately after the socket opens to handle any pending requests + * + * This method also handles auto-disconnect post read/write completion. +**/ +- (void)maybeDequeueRead +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + // If we're not currently processing a read AND we have an available read stream + if ((currentRead == nil) && (flags & kConnected)) + { + if ([readQueue count] > 0) + { + // Dequeue the next object in the write queue + currentRead = [readQueue objectAtIndex:0]; + [readQueue removeObjectAtIndex:0]; + + + if ([currentRead isKindOfClass:[MGCDAsyncSpecialPacket class]]) + { + LogVerbose(@"Dequeued MGCDAsyncSpecialPacket"); + + // Attempt to start TLS + flags |= kStartingReadTLS; + + // This method won't do anything unless both kStartingReadTLS and kStartingWriteTLS are set + [self maybeStartTLS]; + } + else + { + LogVerbose(@"Dequeued MGCDAsyncReadPacket"); + + // Setup read timer (if needed) + [self setupReadTimerWithTimeout:currentRead->timeout]; + + // Immediately read, if possible + [self doReadData]; + } + } + else if (flags & kDisconnectAfterReads) + { + if (flags & kDisconnectAfterWrites) + { + if (([writeQueue count] == 0) && (currentWrite == nil)) + { + [self closeWithError:nil]; + } + } + else + { + [self closeWithError:nil]; + } + } + else if (flags & kSocketSecure) + { + [self flushSSLBuffers]; + + // Edge case: + // + // We just drained all data from the ssl buffers, + // and all known data from the socket (socketFDBytesAvailable). + // + // If we didn't get any data from this process, + // then we may have reached the end of the TCP stream. + // + // Be sure callbacks are enabled so we're notified about a disconnection. + + if ([preBuffer availableBytes] == 0) + { + if ([self usingCFStreamForTLS]) { + // Callbacks never disabled + } + else { + [self resumeReadSource]; + } + } + } + } +} + +- (void)flushSSLBuffers +{ + LogTrace(); + + NSAssert((flags & kSocketSecure), @"Cannot flush ssl buffers on non-secure socket"); + + if ([preBuffer availableBytes] > 0) + { + // Only flush the ssl buffers if the prebuffer is empty. + // This is to avoid growing the prebuffer inifinitely large. + + return; + } + + #if TARGET_OS_IPHONE + + if ([self usingCFStreamForTLS]) + { + if ((flags & kSecureSocketHasBytesAvailable) && CFReadStreamHasBytesAvailable(readStream)) + { + LogVerbose(@"%@ - Flushing ssl buffers into prebuffer...", THIS_METHOD); + + CFIndex defaultBytesToRead = (1024 * 4); + + [preBuffer ensureCapacityForWrite:defaultBytesToRead]; + + uint8_t *buffer = [preBuffer writeBuffer]; + + CFIndex result = CFReadStreamRead(readStream, buffer, defaultBytesToRead); + LogVerbose(@"%@ - CFReadStreamRead(): result = %i", THIS_METHOD, (int)result); + + if (result > 0) + { + [preBuffer didWrite:result]; + } + + flags &= ~kSecureSocketHasBytesAvailable; + } + + return; + } + + #endif + + __block NSUInteger estimatedBytesAvailable = 0; + + dispatch_block_t updateEstimatedBytesAvailable = ^{ + + // Figure out if there is any data available to be read + // + // socketFDBytesAvailable <- Number of encrypted bytes we haven't read from the bsd socket + // [sslPreBuffer availableBytes] <- Number of encrypted bytes we've buffered from bsd socket + // sslInternalBufSize <- Number of decrypted bytes SecureTransport has buffered + // + // We call the variable "estimated" because we don't know how many decrypted bytes we'll get + // from the encrypted bytes in the sslPreBuffer. + // However, we do know this is an upper bound on the estimation. + + estimatedBytesAvailable = self->socketFDBytesAvailable + [self->sslPreBuffer availableBytes]; + + size_t sslInternalBufSize = 0; + SSLGetBufferedReadSize(self->sslContext, &sslInternalBufSize); + + estimatedBytesAvailable += sslInternalBufSize; + }; + + updateEstimatedBytesAvailable(); + + if (estimatedBytesAvailable > 0) + { + LogVerbose(@"%@ - Flushing ssl buffers into prebuffer...", THIS_METHOD); + + BOOL done = NO; + do + { + LogVerbose(@"%@ - estimatedBytesAvailable = %lu", THIS_METHOD, (unsigned long)estimatedBytesAvailable); + + // Make sure there's enough room in the prebuffer + + [preBuffer ensureCapacityForWrite:estimatedBytesAvailable]; + + // Read data into prebuffer + + uint8_t *buffer = [preBuffer writeBuffer]; + size_t bytesRead = 0; + + OSStatus result = SSLRead(sslContext, buffer, (size_t)estimatedBytesAvailable, &bytesRead); + LogVerbose(@"%@ - read from secure socket = %u", THIS_METHOD, (unsigned)bytesRead); + + if (bytesRead > 0) + { + [preBuffer didWrite:bytesRead]; + } + + LogVerbose(@"%@ - prebuffer.length = %zu", THIS_METHOD, [preBuffer availableBytes]); + + if (result != noErr) + { + done = YES; + } + else + { + updateEstimatedBytesAvailable(); + } + + } while (!done && estimatedBytesAvailable > 0); + } +} + +- (void)doReadData +{ + LogTrace(); + + // This method is called on the socketQueue. + // It might be called directly, or via the readSource when data is available to be read. + + if ((currentRead == nil) || (flags & kReadsPaused)) + { + LogVerbose(@"No currentRead or kReadsPaused"); + + // Unable to read at this time + + if (flags & kSocketSecure) + { + // Here's the situation: + // + // We have an established secure connection. + // There may not be a currentRead, but there might be encrypted data sitting around for us. + // When the user does get around to issuing a read, that encrypted data will need to be decrypted. + // + // So why make the user wait? + // We might as well get a head start on decrypting some data now. + // + // The other reason we do this has to do with detecting a socket disconnection. + // The SSL/TLS protocol has it's own disconnection handshake. + // So when a secure socket is closed, a "goodbye" packet comes across the wire. + // We want to make sure we read the "goodbye" packet so we can properly detect the TCP disconnection. + + [self flushSSLBuffers]; + } + + if ([self usingCFStreamForTLS]) + { + // CFReadStream only fires once when there is available data. + // It won't fire again until we've invoked CFReadStreamRead. + } + else + { + // If the readSource is firing, we need to pause it + // or else it will continue to fire over and over again. + // + // If the readSource is not firing, + // we want it to continue monitoring the socket. + + if (socketFDBytesAvailable > 0) + { + [self suspendReadSource]; + } + } + return; + } + + BOOL hasBytesAvailable = NO; + unsigned long estimatedBytesAvailable = 0; + + if ([self usingCFStreamForTLS]) + { + #if TARGET_OS_IPHONE + + // Requested CFStream, rather than SecureTransport, for TLS (via MGCDAsyncSocketUseCFStreamForTLS) + + estimatedBytesAvailable = 0; + if ((flags & kSecureSocketHasBytesAvailable) && CFReadStreamHasBytesAvailable(readStream)) + hasBytesAvailable = YES; + else + hasBytesAvailable = NO; + + #endif + } + else + { + estimatedBytesAvailable = socketFDBytesAvailable; + + if (flags & kSocketSecure) + { + // There are 2 buffers to be aware of here. + // + // We are using SecureTransport, a TLS/SSL security layer which sits atop TCP. + // We issue a read to the SecureTranport API, which in turn issues a read to our SSLReadFunction. + // Our SSLReadFunction then reads from the BSD socket and returns the encrypted data to SecureTransport. + // SecureTransport then decrypts the data, and finally returns the decrypted data back to us. + // + // The first buffer is one we create. + // SecureTransport often requests small amounts of data. + // This has to do with the encypted packets that are coming across the TCP stream. + // But it's non-optimal to do a bunch of small reads from the BSD socket. + // So our SSLReadFunction reads all available data from the socket (optimizing the sys call) + // and may store excess in the sslPreBuffer. + + estimatedBytesAvailable += [sslPreBuffer availableBytes]; + + // The second buffer is within SecureTransport. + // As mentioned earlier, there are encrypted packets coming across the TCP stream. + // SecureTransport needs the entire packet to decrypt it. + // But if the entire packet produces X bytes of decrypted data, + // and we only asked SecureTransport for X/2 bytes of data, + // it must store the extra X/2 bytes of decrypted data for the next read. + // + // The SSLGetBufferedReadSize function will tell us the size of this internal buffer. + // From the documentation: + // + // "This function does not block or cause any low-level read operations to occur." + + size_t sslInternalBufSize = 0; + SSLGetBufferedReadSize(sslContext, &sslInternalBufSize); + + estimatedBytesAvailable += sslInternalBufSize; + } + + hasBytesAvailable = (estimatedBytesAvailable > 0); + } + + if ((hasBytesAvailable == NO) && ([preBuffer availableBytes] == 0)) + { + LogVerbose(@"No data available to read..."); + + // No data available to read. + + if (![self usingCFStreamForTLS]) + { + // Need to wait for readSource to fire and notify us of + // available data in the socket's internal read buffer. + + [self resumeReadSource]; + } + return; + } + + if (flags & kStartingReadTLS) + { + LogVerbose(@"Waiting for SSL/TLS handshake to complete"); + + // The readQueue is waiting for SSL/TLS handshake to complete. + + if (flags & kStartingWriteTLS) + { + if ([self usingSecureTransportForTLS] && lastSSLHandshakeError == errSSLWouldBlock) + { + // We are in the process of a SSL Handshake. + // We were waiting for incoming data which has just arrived. + + [self ssl_continueSSLHandshake]; + } + } + else + { + // We are still waiting for the writeQueue to drain and start the SSL/TLS process. + // We now know data is available to read. + + if (![self usingCFStreamForTLS]) + { + // Suspend the read source or else it will continue to fire nonstop. + + [self suspendReadSource]; + } + } + + return; + } + + BOOL done = NO; // Completed read operation + NSError *error = nil; // Error occurred + + NSUInteger totalBytesReadForCurrentRead = 0; + + // + // STEP 1 - READ FROM PREBUFFER + // + + if ([preBuffer availableBytes] > 0) + { + // There are 3 types of read packets: + // + // 1) Read all available data. + // 2) Read a specific length of data. + // 3) Read up to a particular terminator. + + NSUInteger bytesToCopy; + + if (currentRead->term != nil) + { + // Read type #3 - read up to a terminator + + bytesToCopy = [currentRead readLengthForTermWithPreBuffer:preBuffer found:&done]; + } + else + { + // Read type #1 or #2 + + bytesToCopy = [currentRead readLengthForNonTermWithHint:[preBuffer availableBytes]]; + } + + // Make sure we have enough room in the buffer for our read. + + [currentRead ensureCapacityForAdditionalDataOfLength:bytesToCopy]; + + // Copy bytes from prebuffer into packet buffer + + uint8_t *buffer = (uint8_t *)[currentRead->buffer mutableBytes] + currentRead->startOffset + + currentRead->bytesDone; + + memcpy(buffer, [preBuffer readBuffer], bytesToCopy); + + // Remove the copied bytes from the preBuffer + [preBuffer didRead:bytesToCopy]; + + LogVerbose(@"copied(%lu) preBufferLength(%zu)", (unsigned long)bytesToCopy, [preBuffer availableBytes]); + + // Update totals + + currentRead->bytesDone += bytesToCopy; + totalBytesReadForCurrentRead += bytesToCopy; + + // Check to see if the read operation is done + + if (currentRead->readLength > 0) + { + // Read type #2 - read a specific length of data + + done = (currentRead->bytesDone == currentRead->readLength); + } + else if (currentRead->term != nil) + { + // Read type #3 - read up to a terminator + + // Our 'done' variable was updated via the readLengthForTermWithPreBuffer:found: method + + if (!done && currentRead->maxLength > 0) + { + // We're not done and there's a set maxLength. + // Have we reached that maxLength yet? + + if (currentRead->bytesDone >= currentRead->maxLength) + { + error = [self readMaxedOutError]; + } + } + } + else + { + // Read type #1 - read all available data + // + // We're done as soon as + // - we've read all available data (in prebuffer and socket) + // - we've read the maxLength of read packet. + + done = ((currentRead->maxLength > 0) && (currentRead->bytesDone == currentRead->maxLength)); + } + + } + + // + // STEP 2 - READ FROM SOCKET + // + + BOOL socketEOF = (flags & kSocketHasReadEOF) ? YES : NO; // Nothing more to read via socket (end of file) + BOOL waiting = !done && !error && !socketEOF && !hasBytesAvailable; // Ran out of data, waiting for more + + if (!done && !error && !socketEOF && hasBytesAvailable) + { + NSAssert(([preBuffer availableBytes] == 0), @"Invalid logic"); + + BOOL readIntoPreBuffer = NO; + uint8_t *buffer = NULL; + size_t bytesRead = 0; + + if (flags & kSocketSecure) + { + if ([self usingCFStreamForTLS]) + { + #if TARGET_OS_IPHONE + + // Using CFStream, rather than SecureTransport, for TLS + + NSUInteger defaultReadLength = (1024 * 32); + + NSUInteger bytesToRead = [currentRead optimalReadLengthWithDefault:defaultReadLength + shouldPreBuffer:&readIntoPreBuffer]; + + // Make sure we have enough room in the buffer for our read. + // + // We are either reading directly into the currentRead->buffer, + // or we're reading into the temporary preBuffer. + + if (readIntoPreBuffer) + { + [preBuffer ensureCapacityForWrite:bytesToRead]; + + buffer = [preBuffer writeBuffer]; + } + else + { + [currentRead ensureCapacityForAdditionalDataOfLength:bytesToRead]; + + buffer = (uint8_t *)[currentRead->buffer mutableBytes] + + currentRead->startOffset + + currentRead->bytesDone; + } + + // Read data into buffer + + CFIndex result = CFReadStreamRead(readStream, buffer, (CFIndex)bytesToRead); + LogVerbose(@"CFReadStreamRead(): result = %i", (int)result); + + if (result < 0) + { + error = (__bridge_transfer NSError *)CFReadStreamCopyError(readStream); + } + else if (result == 0) + { + socketEOF = YES; + } + else + { + waiting = YES; + bytesRead = (size_t)result; + } + + // We only know how many decrypted bytes were read. + // The actual number of bytes read was likely more due to the overhead of the encryption. + // So we reset our flag, and rely on the next callback to alert us of more data. + flags &= ~kSecureSocketHasBytesAvailable; + + #endif + } + else + { + // Using SecureTransport for TLS + // + // We know: + // - how many bytes are available on the socket + // - how many encrypted bytes are sitting in the sslPreBuffer + // - how many decypted bytes are sitting in the sslContext + // + // But we do NOT know: + // - how many encypted bytes are sitting in the sslContext + // + // So we play the regular game of using an upper bound instead. + + NSUInteger defaultReadLength = (1024 * 32); + + if (defaultReadLength < estimatedBytesAvailable) { + defaultReadLength = estimatedBytesAvailable + (1024 * 16); + } + + NSUInteger bytesToRead = [currentRead optimalReadLengthWithDefault:defaultReadLength + shouldPreBuffer:&readIntoPreBuffer]; + + if (bytesToRead > SIZE_MAX) { // NSUInteger may be bigger than size_t + bytesToRead = SIZE_MAX; + } + + // Make sure we have enough room in the buffer for our read. + // + // We are either reading directly into the currentRead->buffer, + // or we're reading into the temporary preBuffer. + + if (readIntoPreBuffer) + { + [preBuffer ensureCapacityForWrite:bytesToRead]; + + buffer = [preBuffer writeBuffer]; + } + else + { + [currentRead ensureCapacityForAdditionalDataOfLength:bytesToRead]; + + buffer = (uint8_t *)[currentRead->buffer mutableBytes] + + currentRead->startOffset + + currentRead->bytesDone; + } + + // The documentation from Apple states: + // + // "a read operation might return errSSLWouldBlock, + // indicating that less data than requested was actually transferred" + // + // However, starting around 10.7, the function will sometimes return noErr, + // even if it didn't read as much data as requested. So we need to watch out for that. + + OSStatus result; + do + { + void *loop_buffer = buffer + bytesRead; + size_t loop_bytesToRead = (size_t)bytesToRead - bytesRead; + size_t loop_bytesRead = 0; + + result = SSLRead(sslContext, loop_buffer, loop_bytesToRead, &loop_bytesRead); + LogVerbose(@"read from secure socket = %u", (unsigned)loop_bytesRead); + + bytesRead += loop_bytesRead; + + } while ((result == noErr) && (bytesRead < bytesToRead)); + + + if (result != noErr) + { + if (result == errSSLWouldBlock) + waiting = YES; + else + { + if (result == errSSLClosedGraceful || result == errSSLClosedAbort) + { + // We've reached the end of the stream. + // Handle this the same way we would an EOF from the socket. + socketEOF = YES; + sslErrCode = result; + } + else + { + error = [self sslError:result]; + } + } + // It's possible that bytesRead > 0, even if the result was errSSLWouldBlock. + // This happens when the SSLRead function is able to read some data, + // but not the entire amount we requested. + + if (bytesRead <= 0) + { + bytesRead = 0; + } + } + + // Do not modify socketFDBytesAvailable. + // It will be updated via the SSLReadFunction(). + } + } + else + { + // Normal socket operation + + NSUInteger bytesToRead; + + // There are 3 types of read packets: + // + // 1) Read all available data. + // 2) Read a specific length of data. + // 3) Read up to a particular terminator. + + if (currentRead->term != nil) + { + // Read type #3 - read up to a terminator + + bytesToRead = [currentRead readLengthForTermWithHint:estimatedBytesAvailable + shouldPreBuffer:&readIntoPreBuffer]; + } + else + { + // Read type #1 or #2 + + bytesToRead = [currentRead readLengthForNonTermWithHint:estimatedBytesAvailable]; + } + + if (bytesToRead > SIZE_MAX) { // NSUInteger may be bigger than size_t (read param 3) + bytesToRead = SIZE_MAX; + } + + // Make sure we have enough room in the buffer for our read. + // + // We are either reading directly into the currentRead->buffer, + // or we're reading into the temporary preBuffer. + + if (readIntoPreBuffer) + { + [preBuffer ensureCapacityForWrite:bytesToRead]; + + buffer = [preBuffer writeBuffer]; + } + else + { + [currentRead ensureCapacityForAdditionalDataOfLength:bytesToRead]; + + buffer = (uint8_t *)[currentRead->buffer mutableBytes] + + currentRead->startOffset + + currentRead->bytesDone; + } + + // Read data into buffer + + int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; + + ssize_t result = read(socketFD, buffer, (size_t)bytesToRead); + LogVerbose(@"read from socket = %i", (int)result); + + if (result < 0) + { + if (errno == EWOULDBLOCK) + waiting = YES; + else + error = [self errorWithErrno:errno reason:@"Error in read() function"]; + + socketFDBytesAvailable = 0; + } + else if (result == 0) + { + socketEOF = YES; + socketFDBytesAvailable = 0; + } + else + { + bytesRead = result; + + if (bytesRead < bytesToRead) + { + // The read returned less data than requested. + // This means socketFDBytesAvailable was a bit off due to timing, + // because we read from the socket right when the readSource event was firing. + socketFDBytesAvailable = 0; + } + else + { + if (socketFDBytesAvailable <= bytesRead) + socketFDBytesAvailable = 0; + else + socketFDBytesAvailable -= bytesRead; + } + + if (socketFDBytesAvailable == 0) + { + waiting = YES; + } + } + } + + if (bytesRead > 0) + { + // Check to see if the read operation is done + + if (currentRead->readLength > 0) + { + // Read type #2 - read a specific length of data + // + // Note: We should never be using a prebuffer when we're reading a specific length of data. + + NSAssert(readIntoPreBuffer == NO, @"Invalid logic"); + + currentRead->bytesDone += bytesRead; + totalBytesReadForCurrentRead += bytesRead; + + done = (currentRead->bytesDone == currentRead->readLength); + } + else if (currentRead->term != nil) + { + // Read type #3 - read up to a terminator + + if (readIntoPreBuffer) + { + // We just read a big chunk of data into the preBuffer + + [preBuffer didWrite:bytesRead]; + LogVerbose(@"read data into preBuffer - preBuffer.length = %zu", [preBuffer availableBytes]); + + // Search for the terminating sequence + + NSUInteger bytesToCopy = [currentRead readLengthForTermWithPreBuffer:preBuffer found:&done]; + LogVerbose(@"copying %lu bytes from preBuffer", (unsigned long)bytesToCopy); + + // Ensure there's room on the read packet's buffer + + [currentRead ensureCapacityForAdditionalDataOfLength:bytesToCopy]; + + // Copy bytes from prebuffer into read buffer + + uint8_t *readBuf = (uint8_t *)[currentRead->buffer mutableBytes] + currentRead->startOffset + + currentRead->bytesDone; + + memcpy(readBuf, [preBuffer readBuffer], bytesToCopy); + + // Remove the copied bytes from the prebuffer + [preBuffer didRead:bytesToCopy]; + LogVerbose(@"preBuffer.length = %zu", [preBuffer availableBytes]); + + // Update totals + currentRead->bytesDone += bytesToCopy; + totalBytesReadForCurrentRead += bytesToCopy; + + // Our 'done' variable was updated via the readLengthForTermWithPreBuffer:found: method above + } + else + { + // We just read a big chunk of data directly into the packet's buffer. + // We need to move any overflow into the prebuffer. + + NSInteger overflow = [currentRead searchForTermAfterPreBuffering:bytesRead]; + + if (overflow == 0) + { + // Perfect match! + // Every byte we read stays in the read buffer, + // and the last byte we read was the last byte of the term. + + currentRead->bytesDone += bytesRead; + totalBytesReadForCurrentRead += bytesRead; + done = YES; + } + else if (overflow > 0) + { + // The term was found within the data that we read, + // and there are extra bytes that extend past the end of the term. + // We need to move these excess bytes out of the read packet and into the prebuffer. + + NSInteger underflow = bytesRead - overflow; + + // Copy excess data into preBuffer + + LogVerbose(@"copying %ld overflow bytes into preBuffer", (long)overflow); + [preBuffer ensureCapacityForWrite:overflow]; + + uint8_t *overflowBuffer = buffer + underflow; + memcpy([preBuffer writeBuffer], overflowBuffer, overflow); + + [preBuffer didWrite:overflow]; + LogVerbose(@"preBuffer.length = %zu", [preBuffer availableBytes]); + + // Note: The completeCurrentRead method will trim the buffer for us. + + currentRead->bytesDone += underflow; + totalBytesReadForCurrentRead += underflow; + done = YES; + } + else + { + // The term was not found within the data that we read. + + currentRead->bytesDone += bytesRead; + totalBytesReadForCurrentRead += bytesRead; + done = NO; + } + } + + if (!done && currentRead->maxLength > 0) + { + // We're not done and there's a set maxLength. + // Have we reached that maxLength yet? + + if (currentRead->bytesDone >= currentRead->maxLength) + { + error = [self readMaxedOutError]; + } + } + } + else + { + // Read type #1 - read all available data + + if (readIntoPreBuffer) + { + // We just read a chunk of data into the preBuffer + + [preBuffer didWrite:bytesRead]; + + // Now copy the data into the read packet. + // + // Recall that we didn't read directly into the packet's buffer to avoid + // over-allocating memory since we had no clue how much data was available to be read. + // + // Ensure there's room on the read packet's buffer + + [currentRead ensureCapacityForAdditionalDataOfLength:bytesRead]; + + // Copy bytes from prebuffer into read buffer + + uint8_t *readBuf = (uint8_t *)[currentRead->buffer mutableBytes] + currentRead->startOffset + + currentRead->bytesDone; + + memcpy(readBuf, [preBuffer readBuffer], bytesRead); + + // Remove the copied bytes from the prebuffer + [preBuffer didRead:bytesRead]; + + // Update totals + currentRead->bytesDone += bytesRead; + totalBytesReadForCurrentRead += bytesRead; + } + else + { + currentRead->bytesDone += bytesRead; + totalBytesReadForCurrentRead += bytesRead; + } + + done = YES; + } + + } // if (bytesRead > 0) + + } // if (!done && !error && !socketEOF && hasBytesAvailable) + + + if (!done && currentRead->readLength == 0 && currentRead->term == nil) + { + // Read type #1 - read all available data + // + // We might arrive here if we read data from the prebuffer but not from the socket. + + done = (totalBytesReadForCurrentRead > 0); + } + + // Check to see if we're done, or if we've made progress + + if (done) + { + [self completeCurrentRead]; + + if (!error && (!socketEOF || [preBuffer availableBytes] > 0)) + { + [self maybeDequeueRead]; + } + } + else if (totalBytesReadForCurrentRead > 0) + { + // We're not done read type #2 or #3 yet, but we have read in some bytes + // + // We ensure that `waiting` is set in order to resume the readSource (if it is suspended). It is + // possible to reach this point and `waiting` not be set, if the current read's length is + // sufficiently large. In that case, we may have read to some upperbound successfully, but + // that upperbound could be smaller than the desired length. + waiting = YES; + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didReadPartialDataOfLength:tag:)]) + { + long theReadTag = currentRead->tag; + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socket:self didReadPartialDataOfLength:totalBytesReadForCurrentRead tag:theReadTag]; + }}); + } + } + + // Check for errors + + if (error) + { + [self closeWithError:error]; + } + else if (socketEOF) + { + [self doReadEOF]; + } + else if (waiting) + { + if (![self usingCFStreamForTLS]) + { + // Monitor the socket for readability (if we're not already doing so) + [self resumeReadSource]; + } + } + + // Do not add any code here without first adding return statements in the error cases above. +} + +- (void)doReadEOF +{ + LogTrace(); + + // This method may be called more than once. + // If the EOF is read while there is still data in the preBuffer, + // then this method may be called continually after invocations of doReadData to see if it's time to disconnect. + + flags |= kSocketHasReadEOF; + + if (flags & kSocketSecure) + { + // If the SSL layer has any buffered data, flush it into the preBuffer now. + + [self flushSSLBuffers]; + } + + BOOL shouldDisconnect = NO; + NSError *error = nil; + + if ((flags & kStartingReadTLS) || (flags & kStartingWriteTLS)) + { + // We received an EOF during or prior to startTLS. + // The SSL/TLS handshake is now impossible, so this is an unrecoverable situation. + + shouldDisconnect = YES; + + if ([self usingSecureTransportForTLS]) + { + error = [self sslError:errSSLClosedAbort]; + } + } + else if (flags & kReadStreamClosed) + { + // The preBuffer has already been drained. + // The config allows half-duplex connections. + // We've previously checked the socket, and it appeared writeable. + // So we marked the read stream as closed and notified the delegate. + // + // As per the half-duplex contract, the socket will be closed when a write fails, + // or when the socket is manually closed. + + shouldDisconnect = NO; + } + else if ([preBuffer availableBytes] > 0) + { + LogVerbose(@"Socket reached EOF, but there is still data available in prebuffer"); + + // Although we won't be able to read any more data from the socket, + // there is existing data that has been prebuffered that we can read. + + shouldDisconnect = NO; + } + else if (config & kAllowHalfDuplexConnection) + { + // We just received an EOF (end of file) from the socket's read stream. + // This means the remote end of the socket (the peer we're connected to) + // has explicitly stated that it will not be sending us any more data. + // + // Query the socket to see if it is still writeable. (Perhaps the peer will continue reading data from us) + + int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; + + struct pollfd pfd[1]; + pfd[0].fd = socketFD; + pfd[0].events = POLLOUT; + pfd[0].revents = 0; + + poll(pfd, 1, 0); + + if (pfd[0].revents & POLLOUT) + { + // Socket appears to still be writeable + + shouldDisconnect = NO; + flags |= kReadStreamClosed; + + // Notify the delegate that we're going half-duplex + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socketDidCloseReadStream:)]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socketDidCloseReadStream:self]; + }}); + } + } + else + { + shouldDisconnect = YES; + } + } + else + { + shouldDisconnect = YES; + } + + + if (shouldDisconnect) + { + if (error == nil) + { + if ([self usingSecureTransportForTLS]) + { + if (sslErrCode != noErr && sslErrCode != errSSLClosedGraceful) + { + error = [self sslError:sslErrCode]; + } + else + { + error = [self connectionClosedError]; + } + } + else + { + error = [self connectionClosedError]; + } + } + [self closeWithError:error]; + } + else + { + if (![self usingCFStreamForTLS]) + { + // Suspend the read source (if needed) + + [self suspendReadSource]; + } + } +} + +- (void)completeCurrentRead +{ + LogTrace(); + + NSAssert(currentRead, @"Trying to complete current read when there is no current read."); + + + NSData *result = nil; + + if (currentRead->bufferOwner) + { + // We created the buffer on behalf of the user. + // Trim our buffer to be the proper size. + [currentRead->buffer setLength:currentRead->bytesDone]; + + result = currentRead->buffer; + } + else + { + // We did NOT create the buffer. + // The buffer is owned by the caller. + // Only trim the buffer if we had to increase its size. + + if ([currentRead->buffer length] > currentRead->originalBufferLength) + { + NSUInteger readSize = currentRead->startOffset + currentRead->bytesDone; + NSUInteger origSize = currentRead->originalBufferLength; + + NSUInteger buffSize = MAX(readSize, origSize); + + [currentRead->buffer setLength:buffSize]; + } + + uint8_t *buffer = (uint8_t *)[currentRead->buffer mutableBytes] + currentRead->startOffset; + + result = [NSData dataWithBytesNoCopy:buffer length:currentRead->bytesDone freeWhenDone:NO]; + } + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didReadData:withTag:)]) + { + MGCDAsyncReadPacket *theRead = currentRead; // Ensure currentRead retained since result may not own buffer + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socket:self didReadData:result withTag:theRead->tag]; + }}); + } + + [self endCurrentRead]; +} + +- (void)endCurrentRead +{ + if (readTimer) + { + dispatch_source_cancel(readTimer); + readTimer = NULL; + } + + currentRead = nil; +} + +- (void)setupReadTimerWithTimeout:(NSTimeInterval)timeout +{ + if (timeout >= 0.0) + { + readTimer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, socketQueue); + + __weak MGCDAsyncSocket *weakSelf = self; + + dispatch_source_set_event_handler(readTimer, ^{ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf == nil) return_from_block; + + [strongSelf doReadTimeout]; + + #pragma clang diagnostic pop + }}); + + #if !OS_OBJECT_USE_OBJC + dispatch_source_t theReadTimer = readTimer; + dispatch_source_set_cancel_handler(readTimer, ^{ + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + LogVerbose(@"dispatch_release(readTimer)"); + dispatch_release(theReadTimer); + + #pragma clang diagnostic pop + }); + #endif + + dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeout * NSEC_PER_SEC)); + + dispatch_source_set_timer(readTimer, tt, DISPATCH_TIME_FOREVER, 0); + dispatch_resume(readTimer); + } +} + +- (void)doReadTimeout +{ + // This is a little bit tricky. + // Ideally we'd like to synchronously query the delegate about a timeout extension. + // But if we do so synchronously we risk a possible deadlock. + // So instead we have to do so asynchronously, and callback to ourselves from within the delegate block. + + flags |= kReadsPaused; + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:shouldTimeoutReadWithTag:elapsed:bytesDone:)]) + { + MGCDAsyncReadPacket *theRead = currentRead; + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + NSTimeInterval timeoutExtension = 0.0; + + timeoutExtension = [theDelegate socket:self shouldTimeoutReadWithTag:theRead->tag + elapsed:theRead->timeout + bytesDone:theRead->bytesDone]; + + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + [self doReadTimeoutWithExtension:timeoutExtension]; + }}); + }}); + } + else + { + [self doReadTimeoutWithExtension:0.0]; + } +} + +- (void)doReadTimeoutWithExtension:(NSTimeInterval)timeoutExtension +{ + if (currentRead) + { + if (timeoutExtension > 0.0) + { + currentRead->timeout += timeoutExtension; + + // Reschedule the timer + dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeoutExtension * NSEC_PER_SEC)); + dispatch_source_set_timer(readTimer, tt, DISPATCH_TIME_FOREVER, 0); + + // Unpause reads, and continue + flags &= ~kReadsPaused; + [self doReadData]; + } + else + { + LogVerbose(@"ReadTimeout"); + + [self closeWithError:[self readTimeoutError]]; + } + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Writing +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (void)writeData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag +{ + if ([data length] == 0) return; + + MGCDAsyncWritePacket *packet = [[MGCDAsyncWritePacket alloc] initWithData:data timeout:timeout tag:tag]; + + dispatch_async(socketQueue, ^{ @autoreleasepool { + + LogTrace(); + + if ((self->flags & kSocketStarted) && !(self->flags & kForbidReadsWrites)) + { + [self->writeQueue addObject:packet]; + [self maybeDequeueWrite]; + } + }}); + + // Do not rely on the block being run in order to release the packet, + // as the queue might get released without the block completing. +} + +- (float)progressOfWriteReturningTag:(long *)tagPtr bytesDone:(NSUInteger *)donePtr total:(NSUInteger *)totalPtr +{ + __block float result = 0.0F; + + dispatch_block_t block = ^{ + + if (!self->currentWrite || ![self->currentWrite isKindOfClass:[MGCDAsyncWritePacket class]]) + { + // We're not writing anything right now. + + if (tagPtr != NULL) *tagPtr = 0; + if (donePtr != NULL) *donePtr = 0; + if (totalPtr != NULL) *totalPtr = 0; + + result = NAN; + } + else + { + NSUInteger done = self->currentWrite->bytesDone; + NSUInteger total = [self->currentWrite->buffer length]; + + if (tagPtr != NULL) *tagPtr = self->currentWrite->tag; + if (donePtr != NULL) *donePtr = done; + if (totalPtr != NULL) *totalPtr = total; + + result = (float)done / (float)total; + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +/** + * Conditionally starts a new write. + * + * It is called when: + * - a user requests a write + * - after a write request has finished (to handle the next request) + * - immediately after the socket opens to handle any pending requests + * + * This method also handles auto-disconnect post read/write completion. +**/ +- (void)maybeDequeueWrite +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + + // If we're not currently processing a write AND we have an available write stream + if ((currentWrite == nil) && (flags & kConnected)) + { + if ([writeQueue count] > 0) + { + // Dequeue the next object in the write queue + currentWrite = [writeQueue objectAtIndex:0]; + [writeQueue removeObjectAtIndex:0]; + + + if ([currentWrite isKindOfClass:[MGCDAsyncSpecialPacket class]]) + { + LogVerbose(@"Dequeued MGCDAsyncSpecialPacket"); + + // Attempt to start TLS + flags |= kStartingWriteTLS; + + // This method won't do anything unless both kStartingReadTLS and kStartingWriteTLS are set + [self maybeStartTLS]; + } + else + { + LogVerbose(@"Dequeued MGCDAsyncWritePacket"); + + // Setup write timer (if needed) + [self setupWriteTimerWithTimeout:currentWrite->timeout]; + + // Immediately write, if possible + [self doWriteData]; + } + } + else if (flags & kDisconnectAfterWrites) + { + if (flags & kDisconnectAfterReads) + { + if (([readQueue count] == 0) && (currentRead == nil)) + { + [self closeWithError:nil]; + } + } + else + { + [self closeWithError:nil]; + } + } + } +} + +- (void)doWriteData +{ + LogTrace(); + + // This method is called by the writeSource via the socketQueue + + if ((currentWrite == nil) || (flags & kWritesPaused)) + { + LogVerbose(@"No currentWrite or kWritesPaused"); + + // Unable to write at this time + + if ([self usingCFStreamForTLS]) + { + // CFWriteStream only fires once when there is available data. + // It won't fire again until we've invoked CFWriteStreamWrite. + } + else + { + // If the writeSource is firing, we need to pause it + // or else it will continue to fire over and over again. + + if (flags & kSocketCanAcceptBytes) + { + [self suspendWriteSource]; + } + } + return; + } + + if (!(flags & kSocketCanAcceptBytes)) + { + LogVerbose(@"No space available to write..."); + + // No space available to write. + + if (![self usingCFStreamForTLS]) + { + // Need to wait for writeSource to fire and notify us of + // available space in the socket's internal write buffer. + + [self resumeWriteSource]; + } + return; + } + + if (flags & kStartingWriteTLS) + { + LogVerbose(@"Waiting for SSL/TLS handshake to complete"); + + // The writeQueue is waiting for SSL/TLS handshake to complete. + + if (flags & kStartingReadTLS) + { + if ([self usingSecureTransportForTLS] && lastSSLHandshakeError == errSSLWouldBlock) + { + // We are in the process of a SSL Handshake. + // We were waiting for available space in the socket's internal OS buffer to continue writing. + + [self ssl_continueSSLHandshake]; + } + } + else + { + // We are still waiting for the readQueue to drain and start the SSL/TLS process. + // We now know we can write to the socket. + + if (![self usingCFStreamForTLS]) + { + // Suspend the write source or else it will continue to fire nonstop. + + [self suspendWriteSource]; + } + } + + return; + } + + // Note: This method is not called if currentWrite is a MGCDAsyncSpecialPacket (startTLS packet) + + BOOL waiting = NO; + NSError *error = nil; + size_t bytesWritten = 0; + + if (flags & kSocketSecure) + { + if ([self usingCFStreamForTLS]) + { + #if TARGET_OS_IPHONE + + // + // Writing data using CFStream (over internal TLS) + // + + const uint8_t *buffer = (const uint8_t *)[currentWrite->buffer bytes] + currentWrite->bytesDone; + + NSUInteger bytesToWrite = [currentWrite->buffer length] - currentWrite->bytesDone; + + if (bytesToWrite > SIZE_MAX) // NSUInteger may be bigger than size_t (write param 3) + { + bytesToWrite = SIZE_MAX; + } + + CFIndex result = CFWriteStreamWrite(writeStream, buffer, (CFIndex)bytesToWrite); + LogVerbose(@"CFWriteStreamWrite(%lu) = %li", (unsigned long)bytesToWrite, result); + + if (result < 0) + { + error = (__bridge_transfer NSError *)CFWriteStreamCopyError(writeStream); + } + else + { + bytesWritten = (size_t)result; + + // We always set waiting to true in this scenario. + // CFStream may have altered our underlying socket to non-blocking. + // Thus if we attempt to write without a callback, we may end up blocking our queue. + waiting = YES; + } + + #endif + } + else + { + // We're going to use the SSLWrite function. + // + // OSStatus SSLWrite(SSLContextRef context, const void *data, size_t dataLength, size_t *processed) + // + // Parameters: + // context - An SSL session context reference. + // data - A pointer to the buffer of data to write. + // dataLength - The amount, in bytes, of data to write. + // processed - On return, the length, in bytes, of the data actually written. + // + // It sounds pretty straight-forward, + // but there are a few caveats you should be aware of. + // + // The SSLWrite method operates in a non-obvious (and rather annoying) manner. + // According to the documentation: + // + // Because you may configure the underlying connection to operate in a non-blocking manner, + // a write operation might return errSSLWouldBlock, indicating that less data than requested + // was actually transferred. In this case, you should repeat the call to SSLWrite until some + // other result is returned. + // + // This sounds perfect, but when our SSLWriteFunction returns errSSLWouldBlock, + // then the SSLWrite method returns (with the proper errSSLWouldBlock return value), + // but it sets processed to dataLength !! + // + // In other words, if the SSLWrite function doesn't completely write all the data we tell it to, + // then it doesn't tell us how many bytes were actually written. So, for example, if we tell it to + // write 256 bytes then it might actually write 128 bytes, but then report 0 bytes written. + // + // You might be wondering: + // If the SSLWrite function doesn't tell us how many bytes were written, + // then how in the world are we supposed to update our parameters (buffer & bytesToWrite) + // for the next time we invoke SSLWrite? + // + // The answer is that SSLWrite cached all the data we told it to write, + // and it will push out that data next time we call SSLWrite. + // If we call SSLWrite with new data, it will push out the cached data first, and then the new data. + // If we call SSLWrite with empty data, then it will simply push out the cached data. + // + // For this purpose we're going to break large writes into a series of smaller writes. + // This allows us to report progress back to the delegate. + + OSStatus result; + + BOOL hasCachedDataToWrite = (sslWriteCachedLength > 0); + BOOL hasNewDataToWrite = YES; + + if (hasCachedDataToWrite) + { + size_t processed = 0; + + result = SSLWrite(sslContext, NULL, 0, &processed); + + if (result == noErr) + { + bytesWritten = sslWriteCachedLength; + sslWriteCachedLength = 0; + + if ([currentWrite->buffer length] == (currentWrite->bytesDone + bytesWritten)) + { + // We've written all data for the current write. + hasNewDataToWrite = NO; + } + } + else + { + if (result == errSSLWouldBlock) + { + waiting = YES; + } + else + { + error = [self sslError:result]; + } + + // Can't write any new data since we were unable to write the cached data. + hasNewDataToWrite = NO; + } + } + + if (hasNewDataToWrite) + { + const uint8_t *buffer = (const uint8_t *)[currentWrite->buffer bytes] + + currentWrite->bytesDone + + bytesWritten; + + NSUInteger bytesToWrite = [currentWrite->buffer length] - currentWrite->bytesDone - bytesWritten; + + if (bytesToWrite > SIZE_MAX) // NSUInteger may be bigger than size_t (write param 3) + { + bytesToWrite = SIZE_MAX; + } + + size_t bytesRemaining = bytesToWrite; + + BOOL keepLooping = YES; + while (keepLooping) + { + const size_t sslMaxBytesToWrite = 32768; + size_t sslBytesToWrite = MIN(bytesRemaining, sslMaxBytesToWrite); + size_t sslBytesWritten = 0; + + result = SSLWrite(sslContext, buffer, sslBytesToWrite, &sslBytesWritten); + + if (result == noErr) + { + buffer += sslBytesWritten; + bytesWritten += sslBytesWritten; + bytesRemaining -= sslBytesWritten; + + keepLooping = (bytesRemaining > 0); + } + else + { + if (result == errSSLWouldBlock) + { + waiting = YES; + sslWriteCachedLength = sslBytesToWrite; + } + else + { + error = [self sslError:result]; + } + + keepLooping = NO; + } + + } // while (keepLooping) + + } // if (hasNewDataToWrite) + } + } + else + { + // + // Writing data directly over raw socket + // + + int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; + + const uint8_t *buffer = (const uint8_t *)[currentWrite->buffer bytes] + currentWrite->bytesDone; + + NSUInteger bytesToWrite = [currentWrite->buffer length] - currentWrite->bytesDone; + + if (bytesToWrite > SIZE_MAX) // NSUInteger may be bigger than size_t (write param 3) + { + bytesToWrite = SIZE_MAX; + } + + ssize_t result = write(socketFD, buffer, (size_t)bytesToWrite); + LogVerbose(@"wrote to socket = %zd", result); + + // Check results + if (result < 0) + { + if (errno == EWOULDBLOCK) + { + waiting = YES; + } + else + { + error = [self errorWithErrno:errno reason:@"Error in write() function"]; + } + } + else + { + bytesWritten = result; + } + } + + // We're done with our writing. + // If we explictly ran into a situation where the socket told us there was no room in the buffer, + // then we immediately resume listening for notifications. + // + // We must do this before we dequeue another write, + // as that may in turn invoke this method again. + // + // Note that if CFStream is involved, it may have maliciously put our socket in blocking mode. + + if (waiting) + { + flags &= ~kSocketCanAcceptBytes; + + if (![self usingCFStreamForTLS]) + { + [self resumeWriteSource]; + } + } + + // Check our results + + BOOL done = NO; + + if (bytesWritten > 0) + { + // Update total amount read for the current write + currentWrite->bytesDone += bytesWritten; + LogVerbose(@"currentWrite->bytesDone = %lu", (unsigned long)currentWrite->bytesDone); + + // Is packet done? + done = (currentWrite->bytesDone == [currentWrite->buffer length]); + } + + if (done) + { + [self completeCurrentWrite]; + + if (!error) + { + dispatch_async(socketQueue, ^{ @autoreleasepool{ + + [self maybeDequeueWrite]; + }}); + } + } + else + { + // We were unable to finish writing the data, + // so we're waiting for another callback to notify us of available space in the lower-level output buffer. + + if (!waiting && !error) + { + // This would be the case if our write was able to accept some data, but not all of it. + + flags &= ~kSocketCanAcceptBytes; + + if (![self usingCFStreamForTLS]) + { + [self resumeWriteSource]; + } + } + + if (bytesWritten > 0) + { + // We're not done with the entire write, but we have written some bytes + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didWritePartialDataOfLength:tag:)]) + { + long theWriteTag = currentWrite->tag; + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socket:self didWritePartialDataOfLength:bytesWritten tag:theWriteTag]; + }}); + } + } + } + + // Check for errors + + if (error) + { + [self closeWithError:[self errorWithErrno:errno reason:@"Error in write() function"]]; + } + + // Do not add any code here without first adding a return statement in the error case above. +} + +- (void)completeCurrentWrite +{ + LogTrace(); + + NSAssert(currentWrite, @"Trying to complete current write when there is no current write."); + + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didWriteDataWithTag:)]) + { + long theWriteTag = currentWrite->tag; + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socket:self didWriteDataWithTag:theWriteTag]; + }}); + } + + [self endCurrentWrite]; +} + +- (void)endCurrentWrite +{ + if (writeTimer) + { + dispatch_source_cancel(writeTimer); + writeTimer = NULL; + } + + currentWrite = nil; +} + +- (void)setupWriteTimerWithTimeout:(NSTimeInterval)timeout +{ + if (timeout >= 0.0) + { + writeTimer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, socketQueue); + + __weak MGCDAsyncSocket *weakSelf = self; + + dispatch_source_set_event_handler(writeTimer, ^{ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf == nil) return_from_block; + + [strongSelf doWriteTimeout]; + + #pragma clang diagnostic pop + }}); + + #if !OS_OBJECT_USE_OBJC + dispatch_source_t theWriteTimer = writeTimer; + dispatch_source_set_cancel_handler(writeTimer, ^{ + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + LogVerbose(@"dispatch_release(writeTimer)"); + dispatch_release(theWriteTimer); + + #pragma clang diagnostic pop + }); + #endif + + dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeout * NSEC_PER_SEC)); + + dispatch_source_set_timer(writeTimer, tt, DISPATCH_TIME_FOREVER, 0); + dispatch_resume(writeTimer); + } +} + +- (void)doWriteTimeout +{ + // This is a little bit tricky. + // Ideally we'd like to synchronously query the delegate about a timeout extension. + // But if we do so synchronously we risk a possible deadlock. + // So instead we have to do so asynchronously, and callback to ourselves from within the delegate block. + + flags |= kWritesPaused; + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:shouldTimeoutWriteWithTag:elapsed:bytesDone:)]) + { + MGCDAsyncWritePacket *theWrite = currentWrite; + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + NSTimeInterval timeoutExtension = 0.0; + + timeoutExtension = [theDelegate socket:self shouldTimeoutWriteWithTag:theWrite->tag + elapsed:theWrite->timeout + bytesDone:theWrite->bytesDone]; + + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + [self doWriteTimeoutWithExtension:timeoutExtension]; + }}); + }}); + } + else + { + [self doWriteTimeoutWithExtension:0.0]; + } +} + +- (void)doWriteTimeoutWithExtension:(NSTimeInterval)timeoutExtension +{ + if (currentWrite) + { + if (timeoutExtension > 0.0) + { + currentWrite->timeout += timeoutExtension; + + // Reschedule the timer + dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeoutExtension * NSEC_PER_SEC)); + dispatch_source_set_timer(writeTimer, tt, DISPATCH_TIME_FOREVER, 0); + + // Unpause writes, and continue + flags &= ~kWritesPaused; + [self doWriteData]; + } + else + { + LogVerbose(@"WriteTimeout"); + + [self closeWithError:[self writeTimeoutError]]; + } + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Security +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (void)startTLS:(NSDictionary *)tlsSettings +{ + LogTrace(); + + if (tlsSettings == nil) + { + // Passing nil/NULL to CFReadStreamSetProperty will appear to work the same as passing an empty dictionary, + // but causes problems if we later try to fetch the remote host's certificate. + // + // To be exact, it causes the following to return NULL instead of the normal result: + // CFReadStreamCopyProperty(readStream, kCFStreamPropertySSLPeerCertificates) + // + // So we use an empty dictionary instead, which works perfectly. + + tlsSettings = [NSDictionary dictionary]; + } + + MGCDAsyncSpecialPacket *packet = [[MGCDAsyncSpecialPacket alloc] initWithTLSSettings:tlsSettings]; + + dispatch_async(socketQueue, ^{ @autoreleasepool { + + if ((self->flags & kSocketStarted) && !(self->flags & kQueuedTLS) && !(self->flags & kForbidReadsWrites)) + { + [self->readQueue addObject:packet]; + [self->writeQueue addObject:packet]; + + self->flags |= kQueuedTLS; + + [self maybeDequeueRead]; + [self maybeDequeueWrite]; + } + }}); + +} + +- (void)maybeStartTLS +{ + // We can't start TLS until: + // - All queued reads prior to the user calling startTLS are complete + // - All queued writes prior to the user calling startTLS are complete + // + // We'll know these conditions are met when both kStartingReadTLS and kStartingWriteTLS are set + + if ((flags & kStartingReadTLS) && (flags & kStartingWriteTLS)) + { + BOOL useSecureTransport = YES; + + #if TARGET_OS_IPHONE + { + MGCDAsyncSpecialPacket *tlsPacket = (MGCDAsyncSpecialPacket *)currentRead; + NSDictionary *tlsSettings = @{}; + if (tlsPacket) { + tlsSettings = tlsPacket->tlsSettings; + } + NSNumber *value = [tlsSettings objectForKey:MGCDAsyncSocketUseCFStreamForTLS]; + if (value && [value boolValue]) + useSecureTransport = NO; + } + #endif + + if (useSecureTransport) + { + [self ssl_startTLS]; + } + else + { + #if TARGET_OS_IPHONE + [self cf_startTLS]; + #endif + } + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Security via SecureTransport +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (OSStatus)sslReadWithBuffer:(void *)buffer length:(size_t *)bufferLength +{ + LogVerbose(@"sslReadWithBuffer:%p length:%lu", buffer, (unsigned long)*bufferLength); + + if ((socketFDBytesAvailable == 0) && ([sslPreBuffer availableBytes] == 0)) + { + LogVerbose(@"%@ - No data available to read...", THIS_METHOD); + + // No data available to read. + // + // Need to wait for readSource to fire and notify us of + // available data in the socket's internal read buffer. + + [self resumeReadSource]; + + *bufferLength = 0; + return errSSLWouldBlock; + } + + size_t totalBytesRead = 0; + size_t totalBytesLeftToBeRead = *bufferLength; + + BOOL done = NO; + BOOL socketError = NO; + + // + // STEP 1 : READ FROM SSL PRE BUFFER + // + + size_t sslPreBufferLength = [sslPreBuffer availableBytes]; + + if (sslPreBufferLength > 0) + { + LogVerbose(@"%@: Reading from SSL pre buffer...", THIS_METHOD); + + size_t bytesToCopy; + if (sslPreBufferLength > totalBytesLeftToBeRead) + bytesToCopy = totalBytesLeftToBeRead; + else + bytesToCopy = sslPreBufferLength; + + LogVerbose(@"%@: Copying %zu bytes from sslPreBuffer", THIS_METHOD, bytesToCopy); + + memcpy(buffer, [sslPreBuffer readBuffer], bytesToCopy); + [sslPreBuffer didRead:bytesToCopy]; + + LogVerbose(@"%@: sslPreBuffer.length = %zu", THIS_METHOD, [sslPreBuffer availableBytes]); + + totalBytesRead += bytesToCopy; + totalBytesLeftToBeRead -= bytesToCopy; + + done = (totalBytesLeftToBeRead == 0); + + if (done) LogVerbose(@"%@: Complete", THIS_METHOD); + } + + // + // STEP 2 : READ FROM SOCKET + // + + if (!done && (socketFDBytesAvailable > 0)) + { + LogVerbose(@"%@: Reading from socket...", THIS_METHOD); + + int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; + + BOOL readIntoPreBuffer; + size_t bytesToRead; + uint8_t *buf; + + if (socketFDBytesAvailable > totalBytesLeftToBeRead) + { + // Read all available data from socket into sslPreBuffer. + // Then copy requested amount into dataBuffer. + + LogVerbose(@"%@: Reading into sslPreBuffer...", THIS_METHOD); + + [sslPreBuffer ensureCapacityForWrite:socketFDBytesAvailable]; + + readIntoPreBuffer = YES; + bytesToRead = (size_t)socketFDBytesAvailable; + buf = [sslPreBuffer writeBuffer]; + } + else + { + // Read available data from socket directly into dataBuffer. + + LogVerbose(@"%@: Reading directly into dataBuffer...", THIS_METHOD); + + readIntoPreBuffer = NO; + bytesToRead = totalBytesLeftToBeRead; + buf = (uint8_t *)buffer + totalBytesRead; + } + + ssize_t result = read(socketFD, buf, bytesToRead); + LogVerbose(@"%@: read from socket = %zd", THIS_METHOD, result); + + if (result < 0) + { + LogVerbose(@"%@: read errno = %i", THIS_METHOD, errno); + + if (errno != EWOULDBLOCK) + { + socketError = YES; + } + + socketFDBytesAvailable = 0; + } + else if (result == 0) + { + LogVerbose(@"%@: read EOF", THIS_METHOD); + + socketError = YES; + socketFDBytesAvailable = 0; + } + else + { + size_t bytesReadFromSocket = result; + + if (socketFDBytesAvailable > bytesReadFromSocket) + socketFDBytesAvailable -= bytesReadFromSocket; + else + socketFDBytesAvailable = 0; + + if (readIntoPreBuffer) + { + [sslPreBuffer didWrite:bytesReadFromSocket]; + + size_t bytesToCopy = MIN(totalBytesLeftToBeRead, bytesReadFromSocket); + + LogVerbose(@"%@: Copying %zu bytes out of sslPreBuffer", THIS_METHOD, bytesToCopy); + + memcpy((uint8_t *)buffer + totalBytesRead, [sslPreBuffer readBuffer], bytesToCopy); + [sslPreBuffer didRead:bytesToCopy]; + + totalBytesRead += bytesToCopy; + totalBytesLeftToBeRead -= bytesToCopy; + + LogVerbose(@"%@: sslPreBuffer.length = %zu", THIS_METHOD, [sslPreBuffer availableBytes]); + } + else + { + totalBytesRead += bytesReadFromSocket; + totalBytesLeftToBeRead -= bytesReadFromSocket; + } + + done = (totalBytesLeftToBeRead == 0); + + if (done) LogVerbose(@"%@: Complete", THIS_METHOD); + } + } + + *bufferLength = totalBytesRead; + + if (done) + return noErr; + + if (socketError) + return errSSLClosedAbort; + + return errSSLWouldBlock; +} + +- (OSStatus)sslWriteWithBuffer:(const void *)buffer length:(size_t *)bufferLength +{ + if (!(flags & kSocketCanAcceptBytes)) + { + // Unable to write. + // + // Need to wait for writeSource to fire and notify us of + // available space in the socket's internal write buffer. + + [self resumeWriteSource]; + + *bufferLength = 0; + return errSSLWouldBlock; + } + + size_t bytesToWrite = *bufferLength; + size_t bytesWritten = 0; + + BOOL done = NO; + BOOL socketError = NO; + + int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; + + ssize_t result = write(socketFD, buffer, bytesToWrite); + + if (result < 0) + { + if (errno != EWOULDBLOCK) + { + socketError = YES; + } + + flags &= ~kSocketCanAcceptBytes; + } + else if (result == 0) + { + flags &= ~kSocketCanAcceptBytes; + } + else + { + bytesWritten = result; + + done = (bytesWritten == bytesToWrite); + } + + *bufferLength = bytesWritten; + + if (done) + return noErr; + + if (socketError) + return errSSLClosedAbort; + + return errSSLWouldBlock; +} + +static OSStatus SSLReadFunction(SSLConnectionRef connection, void *data, size_t *dataLength) +{ + MGCDAsyncSocket *asyncSocket = (__bridge MGCDAsyncSocket *)connection; + + NSCAssert(dispatch_get_specific(asyncSocket->IsOnSocketQueueOrTargetQueueKey), @"What the deuce?"); + + return [asyncSocket sslReadWithBuffer:data length:dataLength]; +} + +static OSStatus SSLWriteFunction(SSLConnectionRef connection, const void *data, size_t *dataLength) +{ + MGCDAsyncSocket *asyncSocket = (__bridge MGCDAsyncSocket *)connection; + + NSCAssert(dispatch_get_specific(asyncSocket->IsOnSocketQueueOrTargetQueueKey), @"What the deuce?"); + + return [asyncSocket sslWriteWithBuffer:data length:dataLength]; +} + +- (void)ssl_startTLS +{ + LogTrace(); + + LogVerbose(@"Starting TLS (via SecureTransport)..."); + + OSStatus status; + + MGCDAsyncSpecialPacket *tlsPacket = (MGCDAsyncSpecialPacket *)currentRead; + if (tlsPacket == nil) // Code to quiet the analyzer + { + NSAssert(NO, @"Logic error"); + + [self closeWithError:[self otherError:@"Logic error"]]; + return; + } + NSDictionary *tlsSettings = tlsPacket->tlsSettings; + + // Create SSLContext, and setup IO callbacks and connection ref + + NSNumber *isServerNumber = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLIsServer]; + BOOL isServer = [isServerNumber boolValue]; + + #if TARGET_OS_IPHONE || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1080) + { + if (isServer) + sslContext = SSLCreateContext(kCFAllocatorDefault, kSSLServerSide, kSSLStreamType); + else + sslContext = SSLCreateContext(kCFAllocatorDefault, kSSLClientSide, kSSLStreamType); + + if (sslContext == NULL) + { + [self closeWithError:[self otherError:@"Error in SSLCreateContext"]]; + return; + } + } + #else // (__MAC_OS_X_VERSION_MIN_REQUIRED < 1080) + { + status = SSLNewContext(isServer, &sslContext); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLNewContext"]]; + return; + } + } + #endif + + status = SSLSetIOFuncs(sslContext, &SSLReadFunction, &SSLWriteFunction); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetIOFuncs"]]; + return; + } + + status = SSLSetConnection(sslContext, (__bridge SSLConnectionRef)self); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetConnection"]]; + return; + } + + + NSNumber *shouldManuallyEvaluateTrust = [tlsSettings objectForKey:MGCDAsyncSocketManuallyEvaluateTrust]; + if ([shouldManuallyEvaluateTrust boolValue]) + { + if (isServer) + { + [self closeWithError:[self otherError:@"Manual trust validation is not supported for server sockets"]]; + return; + } + + status = SSLSetSessionOption(sslContext, kSSLSessionOptionBreakOnServerAuth, true); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetSessionOption"]]; + return; + } + + #if !TARGET_OS_IPHONE && (__MAC_OS_X_VERSION_MIN_REQUIRED < 1080) + + // Note from Apple's documentation: + // + // It is only necessary to call SSLSetEnableCertVerify on the Mac prior to OS X 10.8. + // On OS X 10.8 and later setting kSSLSessionOptionBreakOnServerAuth always disables the + // built-in trust evaluation. All versions of iOS behave like OS X 10.8 and thus + // SSLSetEnableCertVerify is not available on that platform at all. + + status = SSLSetEnableCertVerify(sslContext, NO); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetEnableCertVerify"]]; + return; + } + + #endif + } + + // Configure SSLContext from given settings + // + // Checklist: + // 1. kCFStreamSSLPeerName + // 2. kCFStreamSSLCertificates + // 3. MGCDAsyncSocketSSLPeerID + // 4. MGCDAsyncSocketSSLProtocolVersionMin + // 5. MGCDAsyncSocketSSLProtocolVersionMax + // 6. MGCDAsyncSocketSSLSessionOptionFalseStart + // 7. MGCDAsyncSocketSSLSessionOptionSendOneByteRecord + // 8. MGCDAsyncSocketSSLCipherSuites + // 9. MGCDAsyncSocketSSLDiffieHellmanParameters (Mac) + // 10. MGCDAsyncSocketSSLALPN + // + // Deprecated (throw error): + // 10. kCFStreamSSLAllowsAnyRoot + // 11. kCFStreamSSLAllowsExpiredRoots + // 12. kCFStreamSSLAllowsExpiredCertificates + // 13. kCFStreamSSLValidatesCertificateChain + // 14. kCFStreamSSLLevel + + NSObject *value; + + // 1. kCFStreamSSLPeerName + + value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLPeerName]; + if ([value isKindOfClass:[NSString class]]) + { + NSString *peerName = (NSString *)value; + + const char *peer = [peerName UTF8String]; + size_t peerLen = strlen(peer); + + status = SSLSetPeerDomainName(sslContext, peer, peerLen); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetPeerDomainName"]]; + return; + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for kCFStreamSSLPeerName. Value must be of type NSString."); + + [self closeWithError:[self otherError:@"Invalid value for kCFStreamSSLPeerName."]]; + return; + } + + // 2. kCFStreamSSLCertificates + + value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLCertificates]; + if ([value isKindOfClass:[NSArray class]]) + { + NSArray *certs = (NSArray *)value; + + status = SSLSetCertificate(sslContext, (__bridge CFArrayRef)certs); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetCertificate"]]; + return; + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for kCFStreamSSLCertificates. Value must be of type NSArray."); + + [self closeWithError:[self otherError:@"Invalid value for kCFStreamSSLCertificates."]]; + return; + } + + // 3. MGCDAsyncSocketSSLPeerID + + value = [tlsSettings objectForKey:MGCDAsyncSocketSSLPeerID]; + if ([value isKindOfClass:[NSData class]]) + { + NSData *peerIdData = (NSData *)value; + + status = SSLSetPeerID(sslContext, [peerIdData bytes], [peerIdData length]); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetPeerID"]]; + return; + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for MGCDAsyncSocketSSLPeerID. Value must be of type NSData." + @" (You can convert strings to data using a method like" + @" [string dataUsingEncoding:NSUTF8StringEncoding])"); + + [self closeWithError:[self otherError:@"Invalid value for MGCDAsyncSocketSSLPeerID."]]; + return; + } + + // 4. MGCDAsyncSocketSSLProtocolVersionMin + + value = [tlsSettings objectForKey:MGCDAsyncSocketSSLProtocolVersionMin]; + if ([value isKindOfClass:[NSNumber class]]) + { + SSLProtocol minProtocol = (SSLProtocol)[(NSNumber *)value intValue]; + if (minProtocol != kSSLProtocolUnknown) + { + status = SSLSetProtocolVersionMin(sslContext, minProtocol); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetProtocolVersionMin"]]; + return; + } + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for MGCDAsyncSocketSSLProtocolVersionMin. Value must be of type NSNumber."); + + [self closeWithError:[self otherError:@"Invalid value for MGCDAsyncSocketSSLProtocolVersionMin."]]; + return; + } + + // 5. MGCDAsyncSocketSSLProtocolVersionMax + + value = [tlsSettings objectForKey:MGCDAsyncSocketSSLProtocolVersionMax]; + if ([value isKindOfClass:[NSNumber class]]) + { + SSLProtocol maxProtocol = (SSLProtocol)[(NSNumber *)value intValue]; + if (maxProtocol != kSSLProtocolUnknown) + { + status = SSLSetProtocolVersionMax(sslContext, maxProtocol); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetProtocolVersionMax"]]; + return; + } + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for MGCDAsyncSocketSSLProtocolVersionMax. Value must be of type NSNumber."); + + [self closeWithError:[self otherError:@"Invalid value for MGCDAsyncSocketSSLProtocolVersionMax."]]; + return; + } + + // 6. MGCDAsyncSocketSSLSessionOptionFalseStart + + value = [tlsSettings objectForKey:MGCDAsyncSocketSSLSessionOptionFalseStart]; + if ([value isKindOfClass:[NSNumber class]]) + { + NSNumber *falseStart = (NSNumber *)value; + status = SSLSetSessionOption(sslContext, kSSLSessionOptionFalseStart, [falseStart boolValue]); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetSessionOption (kSSLSessionOptionFalseStart)"]]; + return; + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for MGCDAsyncSocketSSLSessionOptionFalseStart. Value must be of type NSNumber."); + + [self closeWithError:[self otherError:@"Invalid value for MGCDAsyncSocketSSLSessionOptionFalseStart."]]; + return; + } + + // 7. MGCDAsyncSocketSSLSessionOptionSendOneByteRecord + + value = [tlsSettings objectForKey:MGCDAsyncSocketSSLSessionOptionSendOneByteRecord]; + if ([value isKindOfClass:[NSNumber class]]) + { + NSNumber *oneByteRecord = (NSNumber *)value; + status = SSLSetSessionOption(sslContext, kSSLSessionOptionSendOneByteRecord, [oneByteRecord boolValue]); + if (status != noErr) + { + [self closeWithError: + [self otherError:@"Error in SSLSetSessionOption (kSSLSessionOptionSendOneByteRecord)"]]; + return; + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for MGCDAsyncSocketSSLSessionOptionSendOneByteRecord." + @" Value must be of type NSNumber."); + + [self closeWithError:[self otherError:@"Invalid value for MGCDAsyncSocketSSLSessionOptionSendOneByteRecord."]]; + return; + } + + // 8. MGCDAsyncSocketSSLCipherSuites + + value = [tlsSettings objectForKey:MGCDAsyncSocketSSLCipherSuites]; + if ([value isKindOfClass:[NSArray class]]) + { + NSArray *cipherSuites = (NSArray *)value; + NSUInteger numberCiphers = [cipherSuites count]; + SSLCipherSuite ciphers[numberCiphers]; + + NSUInteger cipherIndex; + for (cipherIndex = 0; cipherIndex < numberCiphers; cipherIndex++) + { + NSNumber *cipherObject = [cipherSuites objectAtIndex:cipherIndex]; + ciphers[cipherIndex] = (SSLCipherSuite)[cipherObject unsignedIntValue]; + } + + status = SSLSetEnabledCiphers(sslContext, ciphers, numberCiphers); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetEnabledCiphers"]]; + return; + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for MGCDAsyncSocketSSLCipherSuites. Value must be of type NSArray."); + + [self closeWithError:[self otherError:@"Invalid value for MGCDAsyncSocketSSLCipherSuites."]]; + return; + } + + // 9. MGCDAsyncSocketSSLDiffieHellmanParameters + + #if !TARGET_OS_IPHONE + value = [tlsSettings objectForKey:MGCDAsyncSocketSSLDiffieHellmanParameters]; + if ([value isKindOfClass:[NSData class]]) + { + NSData *diffieHellmanData = (NSData *)value; + + status = SSLSetDiffieHellmanParams(sslContext, [diffieHellmanData bytes], [diffieHellmanData length]); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetDiffieHellmanParams"]]; + return; + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for MGCDAsyncSocketSSLDiffieHellmanParameters. Value must be of type NSData."); + + [self closeWithError:[self otherError:@"Invalid value for MGCDAsyncSocketSSLDiffieHellmanParameters."]]; + return; + } + #endif + + // 10. kCFStreamSSLCertificates + value = [tlsSettings objectForKey:MGCDAsyncSocketSSLALPN]; + if ([value isKindOfClass:[NSArray class]]) + { + if (@available(iOS 11.0, macOS 10.13, tvOS 11.0, *)) + { + CFArrayRef protocols = (__bridge CFArrayRef)((NSArray *) value); + status = SSLSetALPNProtocols(sslContext, protocols); + if (status != noErr) + { + [self closeWithError:[self otherError:@"Error in SSLSetALPNProtocols"]]; + return; + } + } + else + { + NSAssert(NO, @"Security option unavailable - MGCDAsyncSocketSSLALPN" + @" - iOS 11.0, macOS 10.13 required"); + [self closeWithError:[self otherError:@"Security option unavailable - MGCDAsyncSocketSSLALPN"]]; + } + } + else if (value) + { + NSAssert(NO, @"Invalid value for MGCDAsyncSocketSSLALPN. Value must be of type NSArray."); + + [self closeWithError:[self otherError:@"Invalid value for MGCDAsyncSocketSSLALPN."]]; + return; + } + + // DEPRECATED checks + + // 10. kCFStreamSSLAllowsAnyRoot + + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wdeprecated-declarations" + value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLAllowsAnyRoot]; + #pragma clang diagnostic pop + if (value) + { + NSAssert(NO, @"Security option unavailable - kCFStreamSSLAllowsAnyRoot" + @" - You must use manual trust evaluation"); + + [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLAllowsAnyRoot"]]; + return; + } + + // 11. kCFStreamSSLAllowsExpiredRoots + + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wdeprecated-declarations" + value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLAllowsExpiredRoots]; + #pragma clang diagnostic pop + if (value) + { + NSAssert(NO, @"Security option unavailable - kCFStreamSSLAllowsExpiredRoots" + @" - You must use manual trust evaluation"); + + [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLAllowsExpiredRoots"]]; + return; + } + + // 12. kCFStreamSSLValidatesCertificateChain + + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wdeprecated-declarations" + value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLValidatesCertificateChain]; + #pragma clang diagnostic pop + if (value) + { + NSAssert(NO, @"Security option unavailable - kCFStreamSSLValidatesCertificateChain" + @" - You must use manual trust evaluation"); + + [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLValidatesCertificateChain"]]; + return; + } + + // 13. kCFStreamSSLAllowsExpiredCertificates + + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wdeprecated-declarations" + value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLAllowsExpiredCertificates]; + #pragma clang diagnostic pop + if (value) + { + NSAssert(NO, @"Security option unavailable - kCFStreamSSLAllowsExpiredCertificates" + @" - You must use manual trust evaluation"); + + [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLAllowsExpiredCertificates"]]; + return; + } + + // 14. kCFStreamSSLLevel + + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wdeprecated-declarations" + value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLLevel]; + #pragma clang diagnostic pop + if (value) + { + NSAssert(NO, @"Security option unavailable - kCFStreamSSLLevel" + @" - You must use MGCDAsyncSocketSSLProtocolVersionMin & MGCDAsyncSocketSSLProtocolVersionMax"); + + [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLLevel"]]; + return; + } + + // Setup the sslPreBuffer + // + // Any data in the preBuffer needs to be moved into the sslPreBuffer, + // as this data is now part of the secure read stream. + + sslPreBuffer = [[MGCDAsyncSocketPreBuffer alloc] initWithCapacity:(1024 * 4)]; + + size_t preBufferLength = [preBuffer availableBytes]; + + if (preBufferLength > 0) + { + [sslPreBuffer ensureCapacityForWrite:preBufferLength]; + + memcpy([sslPreBuffer writeBuffer], [preBuffer readBuffer], preBufferLength); + [preBuffer didRead:preBufferLength]; + [sslPreBuffer didWrite:preBufferLength]; + } + + sslErrCode = lastSSLHandshakeError = noErr; + + // Start the SSL Handshake process + + [self ssl_continueSSLHandshake]; +} + +- (void)ssl_continueSSLHandshake +{ + LogTrace(); + + // If the return value is noErr, the session is ready for normal secure communication. + // If the return value is errSSLWouldBlock, the SSLHandshake function must be called again. + // If the return value is errSSLServerAuthCompleted, we ask delegate if we should trust the + // server and then call SSLHandshake again to resume the handshake or close the connection + // errSSLPeerBadCert SSL error. + // Otherwise, the return value indicates an error code. + + OSStatus status = SSLHandshake(sslContext); + lastSSLHandshakeError = status; + + if (status == noErr) + { + LogVerbose(@"SSLHandshake complete"); + + flags &= ~kStartingReadTLS; + flags &= ~kStartingWriteTLS; + + flags |= kSocketSecure; + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socketDidSecure:)]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socketDidSecure:self]; + }}); + } + + [self endCurrentRead]; + [self endCurrentWrite]; + + [self maybeDequeueRead]; + [self maybeDequeueWrite]; + } + else if (status == errSSLPeerAuthCompleted) + { + LogVerbose(@"SSLHandshake peerAuthCompleted - awaiting delegate approval"); + + __block SecTrustRef trust = NULL; + status = SSLCopyPeerTrust(sslContext, &trust); + if (status != noErr) + { + [self closeWithError:[self sslError:status]]; + return; + } + + int aStateIndex = stateIndex; + dispatch_queue_t theSocketQueue = socketQueue; + + __weak MGCDAsyncSocket *weakSelf = self; + + void (^comletionHandler)(BOOL) = ^(BOOL shouldTrust){ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + dispatch_async(theSocketQueue, ^{ @autoreleasepool { + + if (trust) { + CFRelease(trust); + trust = NULL; + } + + __strong MGCDAsyncSocket *strongSelf = weakSelf; + if (strongSelf) + { + [strongSelf ssl_shouldTrustPeer:shouldTrust stateIndex:aStateIndex]; + } + }}); + + #pragma clang diagnostic pop + }}; + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didReceiveTrust:completionHandler:)]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socket:self didReceiveTrust:trust completionHandler:comletionHandler]; + }}); + } + else + { + if (trust) { + CFRelease(trust); + trust = NULL; + } + + NSString *msg = @"MGCDAsyncSocketManuallyEvaluateTrust specified in tlsSettings," + @" but delegate doesn't implement socket:shouldTrustPeer:"; + + [self closeWithError:[self otherError:msg]]; + return; + } + } + else if (status == errSSLWouldBlock) + { + LogVerbose(@"SSLHandshake continues..."); + + // Handshake continues... + // + // This method will be called again from doReadData or doWriteData. + } + else + { + [self closeWithError:[self sslError:status]]; + } +} + +- (void)ssl_shouldTrustPeer:(BOOL)shouldTrust stateIndex:(int)aStateIndex +{ + LogTrace(); + + if (aStateIndex != stateIndex) + { + LogInfo(@"Ignoring ssl_shouldTrustPeer - invalid state (maybe disconnected)"); + + // One of the following is true + // - the socket was disconnected + // - the startTLS operation timed out + // - the completionHandler was already invoked once + + return; + } + + // Increment stateIndex to ensure completionHandler can only be called once. + stateIndex++; + + if (shouldTrust) + { + NSAssert(lastSSLHandshakeError == errSSLPeerAuthCompleted, @"ssl_shouldTrustPeer called when last error is %d and not errSSLPeerAuthCompleted", (int)lastSSLHandshakeError); + [self ssl_continueSSLHandshake]; + } + else + { + [self closeWithError:[self sslError:errSSLPeerBadCert]]; + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Security via CFStream +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +#if TARGET_OS_IPHONE + +- (void)cf_finishSSLHandshake +{ + LogTrace(); + + if ((flags & kStartingReadTLS) && (flags & kStartingWriteTLS)) + { + flags &= ~kStartingReadTLS; + flags &= ~kStartingWriteTLS; + + flags |= kSocketSecure; + + __strong id theDelegate = delegate; + + if (delegateQueue && [theDelegate respondsToSelector:@selector(socketDidSecure:)]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate socketDidSecure:self]; + }}); + } + + [self endCurrentRead]; + [self endCurrentWrite]; + + [self maybeDequeueRead]; + [self maybeDequeueWrite]; + } +} + +- (void)cf_abortSSLHandshake:(NSError *)error +{ + LogTrace(); + + if ((flags & kStartingReadTLS) && (flags & kStartingWriteTLS)) + { + flags &= ~kStartingReadTLS; + flags &= ~kStartingWriteTLS; + + [self closeWithError:error]; + } +} + +- (void)cf_startTLS +{ + LogTrace(); + + LogVerbose(@"Starting TLS (via CFStream)..."); + + if ([preBuffer availableBytes] > 0) + { + NSString *msg = @"Invalid TLS transition. Handshake has already been read from socket."; + + [self closeWithError:[self otherError:msg]]; + return; + } + + [self suspendReadSource]; + [self suspendWriteSource]; + + socketFDBytesAvailable = 0; + flags &= ~kSocketCanAcceptBytes; + flags &= ~kSecureSocketHasBytesAvailable; + + flags |= kUsingCFStreamForTLS; + + if (![self createReadAndWriteStream]) + { + [self closeWithError:[self otherError:@"Error in CFStreamCreatePairWithSocket"]]; + return; + } + + if (![self registerForStreamCallbacksIncludingReadWrite:YES]) + { + [self closeWithError:[self otherError:@"Error in CFStreamSetClient"]]; + return; + } + + if (![self addStreamsToRunLoop]) + { + [self closeWithError:[self otherError:@"Error in CFStreamScheduleWithRunLoop"]]; + return; + } + + NSAssert([currentRead isKindOfClass:[MGCDAsyncSpecialPacket class]], @"Invalid read packet for startTLS"); + NSAssert([currentWrite isKindOfClass:[MGCDAsyncSpecialPacket class]], @"Invalid write packet for startTLS"); + + MGCDAsyncSpecialPacket *tlsPacket = (MGCDAsyncSpecialPacket *)currentRead; + CFDictionaryRef tlsSettings = (__bridge CFDictionaryRef)tlsPacket->tlsSettings; + + // Getting an error concerning kCFStreamPropertySSLSettings ? + // You need to add the CFNetwork framework to your iOS application. + + BOOL r1 = CFReadStreamSetProperty(readStream, kCFStreamPropertySSLSettings, tlsSettings); + BOOL r2 = CFWriteStreamSetProperty(writeStream, kCFStreamPropertySSLSettings, tlsSettings); + + // For some reason, starting around the time of iOS 4.3, + // the first call to set the kCFStreamPropertySSLSettings will return true, + // but the second will return false. + // + // Order doesn't seem to matter. + // So you could call CFReadStreamSetProperty and then CFWriteStreamSetProperty, or you could reverse the order. + // Either way, the first call will return true, and the second returns false. + // + // Interestingly, this doesn't seem to affect anything. + // Which is not altogether unusual, as the documentation seems to suggest that (for many settings) + // setting it on one side of the stream automatically sets it for the other side of the stream. + // + // Although there isn't anything in the documentation to suggest that the second attempt would fail. + // + // Furthermore, this only seems to affect streams that are negotiating a security upgrade. + // In other words, the socket gets connected, there is some back-and-forth communication over the unsecure + // connection, and then a startTLS is issued. + // So this mostly affects newer protocols (XMPP, IMAP) as opposed to older protocols (HTTPS). + + if (!r1 && !r2) // Yes, the && is correct - workaround for apple bug. + { + [self closeWithError:[self otherError:@"Error in CFStreamSetProperty"]]; + return; + } + + if (![self openStreams]) + { + [self closeWithError:[self otherError:@"Error in CFStreamOpen"]]; + return; + } + + LogVerbose(@"Waiting for SSL Handshake to complete..."); +} + +#endif + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark CFStream +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +#if TARGET_OS_IPHONE + ++ (void)ignore:(id)_ +{} + ++ (void)startCFStreamThreadIfNeeded +{ + LogTrace(); + + static dispatch_once_t predicate; + dispatch_once(&predicate, ^{ + + cfstreamThreadRetainCount = 0; + cfstreamThreadSetupQueue = dispatch_queue_create("MGCDAsyncSocket-CFStreamThreadSetup", DISPATCH_QUEUE_SERIAL); + }); + + dispatch_sync(cfstreamThreadSetupQueue, ^{ @autoreleasepool { + + if (++cfstreamThreadRetainCount == 1) + { + cfstreamThread = [[NSThread alloc] initWithTarget:self + selector:@selector(cfstreamThread:) + object:nil]; + [cfstreamThread start]; + } + }}); +} + ++ (void)stopCFStreamThreadIfNeeded +{ + LogTrace(); + + // The creation of the cfstreamThread is relatively expensive. + // So we'd like to keep it available for recycling. + // However, there's a tradeoff here, because it shouldn't remain alive forever. + // So what we're going to do is use a little delay before taking it down. + // This way it can be reused properly in situations where multiple sockets are continually in flux. + + int delayInSeconds = 30; + dispatch_time_t when = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC)); + dispatch_after(when, cfstreamThreadSetupQueue, ^{ @autoreleasepool { + #pragma clang diagnostic push + #pragma clang diagnostic warning "-Wimplicit-retain-self" + + if (cfstreamThreadRetainCount == 0) + { + LogWarn(@"Logic error concerning cfstreamThread start / stop"); + return_from_block; + } + + if (--cfstreamThreadRetainCount == 0) + { + [cfstreamThread cancel]; // set isCancelled flag + + // wake up the thread + [[self class] performSelector:@selector(ignore:) + onThread:cfstreamThread + withObject:[NSNull null] + waitUntilDone:NO]; + + cfstreamThread = nil; + } + + #pragma clang diagnostic pop + }}); +} + ++ (void)cfstreamThread:(id)unused { @autoreleasepool +{ + [[NSThread currentThread] setName:MGCDAsyncSocketThreadName]; + + LogInfo(@"CFStreamThread: Started"); + + // We can't run the run loop unless it has an associated input source or a timer. + // So we'll just create a timer that will never fire - unless the server runs for decades. + [NSTimer scheduledTimerWithTimeInterval:[[NSDate distantFuture] timeIntervalSinceNow] + target:self + selector:@selector(ignore:) + userInfo:nil + repeats:YES]; + + NSThread *currentThread = [NSThread currentThread]; + NSRunLoop *currentRunLoop = [NSRunLoop currentRunLoop]; + + BOOL isCancelled = [currentThread isCancelled]; + + while (!isCancelled && [currentRunLoop runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]) + { + isCancelled = [currentThread isCancelled]; + } + + LogInfo(@"CFStreamThread: Stopped"); +}} + ++ (void)scheduleCFStreams:(MGCDAsyncSocket *)asyncSocket +{ + LogTrace(); + NSAssert([NSThread currentThread] == cfstreamThread, @"Invoked on wrong thread"); + + CFRunLoopRef runLoop = CFRunLoopGetCurrent(); + + if (asyncSocket->readStream) + CFReadStreamScheduleWithRunLoop(asyncSocket->readStream, runLoop, kCFRunLoopDefaultMode); + + if (asyncSocket->writeStream) + CFWriteStreamScheduleWithRunLoop(asyncSocket->writeStream, runLoop, kCFRunLoopDefaultMode); +} + ++ (void)unscheduleCFStreams:(MGCDAsyncSocket *)asyncSocket +{ + LogTrace(); + NSAssert([NSThread currentThread] == cfstreamThread, @"Invoked on wrong thread"); + + CFRunLoopRef runLoop = CFRunLoopGetCurrent(); + + if (asyncSocket->readStream) + CFReadStreamUnscheduleFromRunLoop(asyncSocket->readStream, runLoop, kCFRunLoopDefaultMode); + + if (asyncSocket->writeStream) + CFWriteStreamUnscheduleFromRunLoop(asyncSocket->writeStream, runLoop, kCFRunLoopDefaultMode); +} + +static void CFReadStreamCallback (CFReadStreamRef stream, CFStreamEventType type, void *pInfo) +{ + MGCDAsyncSocket *asyncSocket = (__bridge MGCDAsyncSocket *)pInfo; + + switch(type) + { + case kCFStreamEventHasBytesAvailable: + { + dispatch_async(asyncSocket->socketQueue, ^{ @autoreleasepool { + + LogCVerbose(@"CFReadStreamCallback - HasBytesAvailable"); + + if (asyncSocket->readStream != stream) + return_from_block; + + if ((asyncSocket->flags & kStartingReadTLS) && (asyncSocket->flags & kStartingWriteTLS)) + { + // If we set kCFStreamPropertySSLSettings before we opened the streams, this might be a lie. + // (A callback related to the tcp stream, but not to the SSL layer). + + if (CFReadStreamHasBytesAvailable(asyncSocket->readStream)) + { + asyncSocket->flags |= kSecureSocketHasBytesAvailable; + [asyncSocket cf_finishSSLHandshake]; + } + } + else + { + asyncSocket->flags |= kSecureSocketHasBytesAvailable; + [asyncSocket doReadData]; + } + }}); + + break; + } + default: + { + NSError *error = (__bridge_transfer NSError *)CFReadStreamCopyError(stream); + + if (error == nil && type == kCFStreamEventEndEncountered) + { + error = [asyncSocket connectionClosedError]; + } + + dispatch_async(asyncSocket->socketQueue, ^{ @autoreleasepool { + + LogCVerbose(@"CFReadStreamCallback - Other"); + + if (asyncSocket->readStream != stream) + return_from_block; + + if ((asyncSocket->flags & kStartingReadTLS) && (asyncSocket->flags & kStartingWriteTLS)) + { + [asyncSocket cf_abortSSLHandshake:error]; + } + else + { + [asyncSocket closeWithError:error]; + } + }}); + + break; + } + } + +} + +static void CFWriteStreamCallback (CFWriteStreamRef stream, CFStreamEventType type, void *pInfo) +{ + MGCDAsyncSocket *asyncSocket = (__bridge MGCDAsyncSocket *)pInfo; + + switch(type) + { + case kCFStreamEventCanAcceptBytes: + { + dispatch_async(asyncSocket->socketQueue, ^{ @autoreleasepool { + + LogCVerbose(@"CFWriteStreamCallback - CanAcceptBytes"); + + if (asyncSocket->writeStream != stream) + return_from_block; + + if ((asyncSocket->flags & kStartingReadTLS) && (asyncSocket->flags & kStartingWriteTLS)) + { + // If we set kCFStreamPropertySSLSettings before we opened the streams, this might be a lie. + // (A callback related to the tcp stream, but not to the SSL layer). + + if (CFWriteStreamCanAcceptBytes(asyncSocket->writeStream)) + { + asyncSocket->flags |= kSocketCanAcceptBytes; + [asyncSocket cf_finishSSLHandshake]; + } + } + else + { + asyncSocket->flags |= kSocketCanAcceptBytes; + [asyncSocket doWriteData]; + } + }}); + + break; + } + default: + { + NSError *error = (__bridge_transfer NSError *)CFWriteStreamCopyError(stream); + + if (error == nil && type == kCFStreamEventEndEncountered) + { + error = [asyncSocket connectionClosedError]; + } + + dispatch_async(asyncSocket->socketQueue, ^{ @autoreleasepool { + + LogCVerbose(@"CFWriteStreamCallback - Other"); + + if (asyncSocket->writeStream != stream) + return_from_block; + + if ((asyncSocket->flags & kStartingReadTLS) && (asyncSocket->flags & kStartingWriteTLS)) + { + [asyncSocket cf_abortSSLHandshake:error]; + } + else + { + [asyncSocket closeWithError:error]; + } + }}); + + break; + } + } + +} + +- (BOOL)createReadAndWriteStream +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + + if (readStream || writeStream) + { + // Streams already created + return YES; + } + + int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; + + if (socketFD == SOCKET_NULL) + { + // Cannot create streams without a file descriptor + return NO; + } + + if (![self isConnected]) + { + // Cannot create streams until file descriptor is connected + return NO; + } + + LogVerbose(@"Creating read and write stream..."); + + CFStreamCreatePairWithSocket(NULL, (CFSocketNativeHandle)socketFD, &readStream, &writeStream); + + // The kCFStreamPropertyShouldCloseNativeSocket property should be false by default (for our case). + // But let's not take any chances. + + if (readStream) + CFReadStreamSetProperty(readStream, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); + if (writeStream) + CFWriteStreamSetProperty(writeStream, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); + + if ((readStream == NULL) || (writeStream == NULL)) + { + LogWarn(@"Unable to create read and write stream..."); + + if (readStream) + { + CFReadStreamClose(readStream); + CFRelease(readStream); + readStream = NULL; + } + if (writeStream) + { + CFWriteStreamClose(writeStream); + CFRelease(writeStream); + writeStream = NULL; + } + + return NO; + } + + return YES; +} + +- (BOOL)registerForStreamCallbacksIncludingReadWrite:(BOOL)includeReadWrite +{ + LogVerbose(@"%@ %@", THIS_METHOD, (includeReadWrite ? @"YES" : @"NO")); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert((readStream != NULL && writeStream != NULL), @"Read/Write stream is null"); + + streamContext.version = 0; + streamContext.info = (__bridge void *)(self); + streamContext.retain = nil; + streamContext.release = nil; + streamContext.copyDescription = nil; + + CFOptionFlags readStreamEvents = kCFStreamEventErrorOccurred | kCFStreamEventEndEncountered; + if (includeReadWrite) + readStreamEvents |= kCFStreamEventHasBytesAvailable; + + if (!CFReadStreamSetClient(readStream, readStreamEvents, &CFReadStreamCallback, &streamContext)) + { + return NO; + } + + CFOptionFlags writeStreamEvents = kCFStreamEventErrorOccurred | kCFStreamEventEndEncountered; + if (includeReadWrite) + writeStreamEvents |= kCFStreamEventCanAcceptBytes; + + if (!CFWriteStreamSetClient(writeStream, writeStreamEvents, &CFWriteStreamCallback, &streamContext)) + { + return NO; + } + + return YES; +} + +- (BOOL)addStreamsToRunLoop +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert((readStream != NULL && writeStream != NULL), @"Read/Write stream is null"); + + if (!(flags & kAddedStreamsToRunLoop)) + { + LogVerbose(@"Adding streams to runloop..."); + + [[self class] startCFStreamThreadIfNeeded]; + dispatch_sync(cfstreamThreadSetupQueue, ^{ + [[self class] performSelector:@selector(scheduleCFStreams:) + onThread:cfstreamThread + withObject:self + waitUntilDone:YES]; + }); + flags |= kAddedStreamsToRunLoop; + } + + return YES; +} + +- (void)removeStreamsFromRunLoop +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert((readStream != NULL && writeStream != NULL), @"Read/Write stream is null"); + + if (flags & kAddedStreamsToRunLoop) + { + LogVerbose(@"Removing streams from runloop..."); + + dispatch_sync(cfstreamThreadSetupQueue, ^{ + [[self class] performSelector:@selector(unscheduleCFStreams:) + onThread:cfstreamThread + withObject:self + waitUntilDone:YES]; + }); + [[self class] stopCFStreamThreadIfNeeded]; + + flags &= ~kAddedStreamsToRunLoop; + } +} + +- (BOOL)openStreams +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert((readStream != NULL && writeStream != NULL), @"Read/Write stream is null"); + + CFStreamStatus readStatus = CFReadStreamGetStatus(readStream); + CFStreamStatus writeStatus = CFWriteStreamGetStatus(writeStream); + + if ((readStatus == kCFStreamStatusNotOpen) || (writeStatus == kCFStreamStatusNotOpen)) + { + LogVerbose(@"Opening read and write stream..."); + + BOOL r1 = CFReadStreamOpen(readStream); + BOOL r2 = CFWriteStreamOpen(writeStream); + + if (!r1 || !r2) + { + LogError(@"Error in CFStreamOpen"); + return NO; + } + } + + return YES; +} + +#endif + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Advanced +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * See header file for big discussion of this method. +**/ +- (BOOL)autoDisconnectOnClosedReadStream +{ + // Note: YES means kAllowHalfDuplexConnection is OFF + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return ((config & kAllowHalfDuplexConnection) == 0); + } + else + { + __block BOOL result; + + dispatch_sync(socketQueue, ^{ + result = ((self->config & kAllowHalfDuplexConnection) == 0); + }); + + return result; + } +} + +/** + * See header file for big discussion of this method. +**/ +- (void)setAutoDisconnectOnClosedReadStream:(BOOL)flag +{ + // Note: YES means kAllowHalfDuplexConnection is OFF + + dispatch_block_t block = ^{ + + if (flag) + self->config &= ~kAllowHalfDuplexConnection; + else + self->config |= kAllowHalfDuplexConnection; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + + +/** + * See header file for big discussion of this method. +**/ +- (void)markSocketQueueTargetQueue:(dispatch_queue_t)socketNewTargetQueue +{ + void *nonNullUnusedPointer = (__bridge void *)self; + dispatch_queue_set_specific(socketNewTargetQueue, IsOnSocketQueueOrTargetQueueKey, nonNullUnusedPointer, NULL); +} + +/** + * See header file for big discussion of this method. +**/ +- (void)unmarkSocketQueueTargetQueue:(dispatch_queue_t)socketOldTargetQueue +{ + dispatch_queue_set_specific(socketOldTargetQueue, IsOnSocketQueueOrTargetQueueKey, NULL, NULL); +} + +/** + * See header file for big discussion of this method. +**/ +- (void)performBlock:(dispatch_block_t)block +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); +} + +/** + * Questions? Have you read the header file? +**/ +- (int)socketFD +{ + if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); + return SOCKET_NULL; + } + + if (socket4FD != SOCKET_NULL) + return socket4FD; + else + return socket6FD; +} + +/** + * Questions? Have you read the header file? +**/ +- (int)socket4FD +{ + if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); + return SOCKET_NULL; + } + + return socket4FD; +} + +/** + * Questions? Have you read the header file? +**/ +- (int)socket6FD +{ + if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); + return SOCKET_NULL; + } + + return socket6FD; +} + +#if TARGET_OS_IPHONE + +/** + * Questions? Have you read the header file? +**/ +- (CFReadStreamRef)readStream +{ + if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); + return NULL; + } + + if (readStream == NULL) + [self createReadAndWriteStream]; + + return readStream; +} + +/** + * Questions? Have you read the header file? +**/ +- (CFWriteStreamRef)writeStream +{ + if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); + return NULL; + } + + if (writeStream == NULL) + [self createReadAndWriteStream]; + + return writeStream; +} + +- (BOOL)enableBackgroundingOnSocketWithCaveat:(BOOL)caveat +{ + if (![self createReadAndWriteStream]) + { + // Error occurred creating streams (perhaps socket isn't open) + return NO; + } + + BOOL r1, r2; + + LogVerbose(@"Enabling backgrouding on socket"); + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" + r1 = CFReadStreamSetProperty(readStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); + r2 = CFWriteStreamSetProperty(writeStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); +#pragma clang diagnostic pop + + if (!r1 || !r2) + { + return NO; + } + + if (!caveat) + { + if (![self openStreams]) + { + return NO; + } + } + + return YES; +} + +/** + * Questions? Have you read the header file? +**/ +- (BOOL)enableBackgroundingOnSocket +{ + LogTrace(); + + if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); + return NO; + } + + return [self enableBackgroundingOnSocketWithCaveat:NO]; +} + +- (BOOL)enableBackgroundingOnSocketWithCaveat // Deprecated in iOS 4.??? +{ + // This method was created as a workaround for a bug in iOS. + // Apple has since fixed this bug. + // I'm not entirely sure which version of iOS they fixed it in... + + LogTrace(); + + if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); + return NO; + } + + return [self enableBackgroundingOnSocketWithCaveat:YES]; +} + +#endif + +- (SSLContextRef)sslContext +{ + if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); + return NULL; + } + + return sslContext; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Class Utilities +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + ++ (NSMutableArray *)lookupHost:(NSString *)host port:(uint16_t)port error:(NSError **)errPtr +{ + LogTrace(); + + NSMutableArray *addresses = nil; + NSError *error = nil; + + if ([host isEqualToString:@"localhost"] || [host isEqualToString:@"loopback"]) + { + // Use LOOPBACK address + struct sockaddr_in nativeAddr4; + nativeAddr4.sin_len = sizeof(struct sockaddr_in); + nativeAddr4.sin_family = AF_INET; + nativeAddr4.sin_port = htons(port); + nativeAddr4.sin_addr.s_addr = htonl(INADDR_LOOPBACK); + memset(&(nativeAddr4.sin_zero), 0, sizeof(nativeAddr4.sin_zero)); + + struct sockaddr_in6 nativeAddr6; + nativeAddr6.sin6_len = sizeof(struct sockaddr_in6); + nativeAddr6.sin6_family = AF_INET6; + nativeAddr6.sin6_port = htons(port); + nativeAddr6.sin6_flowinfo = 0; + nativeAddr6.sin6_addr = in6addr_loopback; + nativeAddr6.sin6_scope_id = 0; + + // Wrap the native address structures + + NSData *address4 = [NSData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; + NSData *address6 = [NSData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; + + addresses = [NSMutableArray arrayWithCapacity:2]; + [addresses addObject:address4]; + [addresses addObject:address6]; + } + else + { + NSString *portStr = [NSString stringWithFormat:@"%hu", port]; + + struct addrinfo hints, *res, *res0; + + memset(&hints, 0, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_socktype = SOCK_STREAM; + hints.ai_protocol = IPPROTO_TCP; + + int gai_error = getaddrinfo([host UTF8String], [portStr UTF8String], &hints, &res0); + + if (gai_error) + { + error = [self gaiError:gai_error]; + } + else + { + NSUInteger capacity = 0; + for (res = res0; res; res = res->ai_next) + { + if (res->ai_family == AF_INET || res->ai_family == AF_INET6) { + capacity++; + } + } + + addresses = [NSMutableArray arrayWithCapacity:capacity]; + + for (res = res0; res; res = res->ai_next) + { + if (res->ai_family == AF_INET) + { + // Found IPv4 address. + // Wrap the native address structure, and add to results. + + NSData *address4 = [NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]; + [addresses addObject:address4]; + } + else if (res->ai_family == AF_INET6) + { + // Fixes connection issues with IPv6 + // https://github.com/robbiehanson/CocoaAsyncSocket/issues/429#issuecomment-222477158 + + // Found IPv6 address. + // Wrap the native address structure, and add to results. + + struct sockaddr_in6 *sockaddr = (struct sockaddr_in6 *)(void *)res->ai_addr; + in_port_t *portPtr = &sockaddr->sin6_port; + if ((portPtr != NULL) && (*portPtr == 0)) { + *portPtr = htons(port); + } + + NSData *address6 = [NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]; + [addresses addObject:address6]; + } + } + freeaddrinfo(res0); + + if ([addresses count] == 0) + { + error = [self gaiError:EAI_FAIL]; + } + } + } + + if (errPtr) *errPtr = error; + return addresses; +} + ++ (NSString *)hostFromSockaddr4:(const struct sockaddr_in *)pSockaddr4 +{ + char addrBuf[INET_ADDRSTRLEN]; + + if (inet_ntop(AF_INET, &pSockaddr4->sin_addr, addrBuf, (socklen_t)sizeof(addrBuf)) == NULL) + { + addrBuf[0] = '\0'; + } + + return [NSString stringWithCString:addrBuf encoding:NSASCIIStringEncoding]; +} + ++ (NSString *)hostFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6 +{ + char addrBuf[INET6_ADDRSTRLEN]; + + if (inet_ntop(AF_INET6, &pSockaddr6->sin6_addr, addrBuf, (socklen_t)sizeof(addrBuf)) == NULL) + { + addrBuf[0] = '\0'; + } + + return [NSString stringWithCString:addrBuf encoding:NSASCIIStringEncoding]; +} + ++ (uint16_t)portFromSockaddr4:(const struct sockaddr_in *)pSockaddr4 +{ + return ntohs(pSockaddr4->sin_port); +} + ++ (uint16_t)portFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6 +{ + return ntohs(pSockaddr6->sin6_port); +} + ++ (NSURL *)urlFromSockaddrUN:(const struct sockaddr_un *)pSockaddr +{ + NSString *path = [NSString stringWithUTF8String:pSockaddr->sun_path]; + return [NSURL fileURLWithPath:path]; +} + ++ (NSString *)hostFromAddress:(NSData *)address +{ + NSString *host; + + if ([self getHost:&host port:NULL fromAddress:address]) + return host; + else + return nil; +} + ++ (uint16_t)portFromAddress:(NSData *)address +{ + uint16_t port; + + if ([self getHost:NULL port:&port fromAddress:address]) + return port; + else + return 0; +} + ++ (BOOL)isIPv4Address:(NSData *)address +{ + if ([address length] >= sizeof(struct sockaddr)) + { + const struct sockaddr *sockaddrX = [address bytes]; + + if (sockaddrX->sa_family == AF_INET) { + return YES; + } + } + + return NO; +} + ++ (BOOL)isIPv6Address:(NSData *)address +{ + if ([address length] >= sizeof(struct sockaddr)) + { + const struct sockaddr *sockaddrX = [address bytes]; + + if (sockaddrX->sa_family == AF_INET6) { + return YES; + } + } + + return NO; +} + ++ (BOOL)getHost:(NSString **)hostPtr port:(uint16_t *)portPtr fromAddress:(NSData *)address +{ + return [self getHost:hostPtr port:portPtr family:NULL fromAddress:address]; +} + ++ (BOOL)getHost:(NSString **)hostPtr port:(uint16_t *)portPtr family:(sa_family_t *)afPtr fromAddress:(NSData *)address +{ + if ([address length] >= sizeof(struct sockaddr)) + { + const struct sockaddr *sockaddrX = [address bytes]; + + if (sockaddrX->sa_family == AF_INET) + { + if ([address length] >= sizeof(struct sockaddr_in)) + { + struct sockaddr_in sockaddr4; + memcpy(&sockaddr4, sockaddrX, sizeof(sockaddr4)); + + if (hostPtr) *hostPtr = [self hostFromSockaddr4:&sockaddr4]; + if (portPtr) *portPtr = [self portFromSockaddr4:&sockaddr4]; + if (afPtr) *afPtr = AF_INET; + + return YES; + } + } + else if (sockaddrX->sa_family == AF_INET6) + { + if ([address length] >= sizeof(struct sockaddr_in6)) + { + struct sockaddr_in6 sockaddr6; + memcpy(&sockaddr6, sockaddrX, sizeof(sockaddr6)); + + if (hostPtr) *hostPtr = [self hostFromSockaddr6:&sockaddr6]; + if (portPtr) *portPtr = [self portFromSockaddr6:&sockaddr6]; + if (afPtr) *afPtr = AF_INET6; + + return YES; + } + } + } + + return NO; +} + ++ (NSData *)CRLFData +{ + return [NSData dataWithBytes:"\x0D\x0A" length:2]; +} + ++ (NSData *)CRData +{ + return [NSData dataWithBytes:"\x0D" length:1]; +} + ++ (NSData *)LFData +{ + return [NSData dataWithBytes:"\x0A" length:1]; +} + ++ (NSData *)ZeroData +{ + return [NSData dataWithBytes:"" length:1]; +} + +@end diff --git a/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncUdpSocket.h b/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncUdpSocket.h new file mode 100644 index 0000000..99fa715 --- /dev/null +++ b/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncUdpSocket.h @@ -0,0 +1,1036 @@ +// +// MGCDAsyncUdpSocket +// +// This class is in the public domain. +// Originally created by Robbie Hanson of Deusty LLC. +// Updated and maintained by Deusty LLC and the Apple development community. +// +// https://github.com/robbiehanson/CocoaAsyncSocket +// + +#import +#import +#import +#import + +NS_ASSUME_NONNULL_BEGIN +extern NSString *const MGCDAsyncUdpSocketException; +extern NSString *const MGCDAsyncUdpSocketErrorDomain; + +extern NSString *const MGCDAsyncUdpSocketQueueName; +extern NSString *const MGCDAsyncUdpSocketThreadName; + +typedef NS_ERROR_ENUM(MGCDAsyncUdpSocketErrorDomain, MGCDAsyncUdpSocketError) { + MGCDAsyncUdpSocketNoError = 0, // Never used + MGCDAsyncUdpSocketBadConfigError, // Invalid configuration + MGCDAsyncUdpSocketBadParamError, // Invalid parameter was passed + MGCDAsyncUdpSocketSendTimeoutError, // A send operation timed out + MGCDAsyncUdpSocketClosedError, // The socket was closed + MGCDAsyncUdpSocketOtherError, // Description provided in userInfo +}; + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +@class MGCDAsyncUdpSocket; + +@protocol MGCDAsyncUdpSocketDelegate +@optional + +/** + * By design, UDP is a connectionless protocol, and connecting is not needed. + * However, you may optionally choose to connect to a particular host for reasons + * outlined in the documentation for the various connect methods listed above. + * + * This method is called if one of the connect methods are invoked, and the connection is successful. +**/ +- (void)udpSocket:(MGCDAsyncUdpSocket *)sock didConnectToAddress:(NSData *)address; + +/** + * By design, UDP is a connectionless protocol, and connecting is not needed. + * However, you may optionally choose to connect to a particular host for reasons + * outlined in the documentation for the various connect methods listed above. + * + * This method is called if one of the connect methods are invoked, and the connection fails. + * This may happen, for example, if a domain name is given for the host and the domain name is unable to be resolved. +**/ +- (void)udpSocket:(MGCDAsyncUdpSocket *)sock didNotConnect:(NSError * _Nullable)error; + +/** + * Called when the datagram with the given tag has been sent. +**/ +- (void)udpSocket:(MGCDAsyncUdpSocket *)sock didSendDataWithTag:(long)tag; + +/** + * Called if an error occurs while trying to send a datagram. + * This could be due to a timeout, or something more serious such as the data being too large to fit in a sigle packet. +**/ +- (void)udpSocket:(MGCDAsyncUdpSocket *)sock didNotSendDataWithTag:(long)tag dueToError:(NSError * _Nullable)error; + +/** + * Called when the socket has received the requested datagram. +**/ +- (void)udpSocket:(MGCDAsyncUdpSocket *)sock didReceiveData:(NSData *)data + fromAddress:(NSData *)address + withFilterContext:(nullable id)filterContext; + +/** + * Called when the socket is closed. +**/ +- (void)udpSocketDidClose:(MGCDAsyncUdpSocket *)sock withError:(NSError * _Nullable)error; + +@end + +/** + * You may optionally set a receive filter for the socket. + * A filter can provide several useful features: + * + * 1. Many times udp packets need to be parsed. + * Since the filter can run in its own independent queue, you can parallelize this parsing quite easily. + * The end result is a parallel socket io, datagram parsing, and packet processing. + * + * 2. Many times udp packets are discarded because they are duplicate/unneeded/unsolicited. + * The filter can prevent such packets from arriving at the delegate. + * And because the filter can run in its own independent queue, this doesn't slow down the delegate. + * + * - Since the udp protocol does not guarantee delivery, udp packets may be lost. + * Many protocols built atop udp thus provide various resend/re-request algorithms. + * This sometimes results in duplicate packets arriving. + * A filter may allow you to architect the duplicate detection code to run in parallel to normal processing. + * + * - Since the udp socket may be connectionless, its possible for unsolicited packets to arrive. + * Such packets need to be ignored. + * + * 3. Sometimes traffic shapers are needed to simulate real world environments. + * A filter allows you to write custom code to simulate such environments. + * The ability to code this yourself is especially helpful when your simulated environment + * is more complicated than simple traffic shaping (e.g. simulating a cone port restricted router), + * or the system tools to handle this aren't available (e.g. on a mobile device). + * + * @param data - The packet that was received. + * @param address - The address the data was received from. + * See utilities section for methods to extract info from address. + * @param context - Out parameter you may optionally set, which will then be passed to the delegate method. + * For example, filter block can parse the data and then, + * pass the parsed data to the delegate. + * + * @returns - YES if the received packet should be passed onto the delegate. + * NO if the received packet should be discarded, and not reported to the delegete. + * + * Example: + * + * MGCDAsyncUdpSocketReceiveFilterBlock filter = ^BOOL (NSData *data, NSData *address, id *context) { + * + * MyProtocolMessage *msg = [MyProtocol parseMessage:data]; + * + * *context = response; + * return (response != nil); + * }; + * [udpSocket setReceiveFilter:filter withQueue:myParsingQueue]; + * +**/ +typedef BOOL (^MGCDAsyncUdpSocketReceiveFilterBlock)(NSData *data, NSData *address, id __nullable * __nonnull context); + +/** + * You may optionally set a send filter for the socket. + * A filter can provide several interesting possibilities: + * + * 1. Optional caching of resolved addresses for domain names. + * The cache could later be consulted, resulting in fewer system calls to getaddrinfo. + * + * 2. Reusable modules of code for bandwidth monitoring. + * + * 3. Sometimes traffic shapers are needed to simulate real world environments. + * A filter allows you to write custom code to simulate such environments. + * The ability to code this yourself is especially helpful when your simulated environment + * is more complicated than simple traffic shaping (e.g. simulating a cone port restricted router), + * or the system tools to handle this aren't available (e.g. on a mobile device). + * + * @param data - The packet that was received. + * @param address - The address the data was received from. + * See utilities section for methods to extract info from address. + * @param tag - The tag that was passed in the send method. + * + * @returns - YES if the packet should actually be sent over the socket. + * NO if the packet should be silently dropped (not sent over the socket). + * + * Regardless of the return value, the delegate will be informed that the packet was successfully sent. + * +**/ +typedef BOOL (^MGCDAsyncUdpSocketSendFilterBlock)(NSData *data, NSData *address, long tag); + + +@interface MGCDAsyncUdpSocket : NSObject + +/** + * MGCDAsyncUdpSocket uses the standard delegate paradigm, + * but executes all delegate callbacks on a given delegate dispatch queue. + * This allows for maximum concurrency, while at the same time providing easy thread safety. + * + * You MUST set a delegate AND delegate dispatch queue before attempting to + * use the socket, or you will get an error. + * + * The socket queue is optional. + * If you pass NULL, MGCDAsyncSocket will automatically create its own socket queue. + * If you choose to provide a socket queue, the socket queue must not be a concurrent queue, + * then please see the discussion for the method markSocketQueueTargetQueue. + * + * The delegate queue and socket queue can optionally be the same. +**/ +- (instancetype)init; +- (instancetype)initWithSocketQueue:(nullable dispatch_queue_t)sq; +- (instancetype)initWithDelegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq; +- (instancetype)initWithDelegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq socketQueue:(nullable dispatch_queue_t)sq NS_DESIGNATED_INITIALIZER; + +#pragma mark Configuration + +- (nullable id)delegate; +- (void)setDelegate:(nullable id)delegate; +- (void)synchronouslySetDelegate:(nullable id)delegate; + +- (nullable dispatch_queue_t)delegateQueue; +- (void)setDelegateQueue:(nullable dispatch_queue_t)delegateQueue; +- (void)synchronouslySetDelegateQueue:(nullable dispatch_queue_t)delegateQueue; + +- (void)getDelegate:(id __nullable * __nullable)delegatePtr delegateQueue:(dispatch_queue_t __nullable * __nullable)delegateQueuePtr; +- (void)setDelegate:(nullable id)delegate delegateQueue:(nullable dispatch_queue_t)delegateQueue; +- (void)synchronouslySetDelegate:(nullable id)delegate delegateQueue:(nullable dispatch_queue_t)delegateQueue; + +/** + * By default, both IPv4 and IPv6 are enabled. + * + * This means MGCDAsyncUdpSocket automatically supports both protocols, + * and can send to IPv4 or IPv6 addresses, + * as well as receive over IPv4 and IPv6. + * + * For operations that require DNS resolution, MGCDAsyncUdpSocket supports both IPv4 and IPv6. + * If a DNS lookup returns only IPv4 results, MGCDAsyncUdpSocket will automatically use IPv4. + * If a DNS lookup returns only IPv6 results, MGCDAsyncUdpSocket will automatically use IPv6. + * If a DNS lookup returns both IPv4 and IPv6 results, then the protocol used depends on the configured preference. + * If IPv4 is preferred, then IPv4 is used. + * If IPv6 is preferred, then IPv6 is used. + * If neutral, then the first IP version in the resolved array will be used. + * + * Starting with Mac OS X 10.7 Lion and iOS 5, the default IP preference is neutral. + * On prior systems the default IP preference is IPv4. + **/ +- (BOOL)isIPv4Enabled; +- (void)setIPv4Enabled:(BOOL)flag; + +- (BOOL)isIPv6Enabled; +- (void)setIPv6Enabled:(BOOL)flag; + +- (BOOL)isIPv4Preferred; +- (BOOL)isIPv6Preferred; +- (BOOL)isIPVersionNeutral; + +- (void)setPreferIPv4; +- (void)setPreferIPv6; +- (void)setIPVersionNeutral; + +/** + * Gets/Sets the maximum size of the buffer that will be allocated for receive operations. + * The default maximum size is 65535 bytes. + * + * The theoretical maximum size of any IPv4 UDP packet is UINT16_MAX = 65535. + * The theoretical maximum size of any IPv6 UDP packet is UINT32_MAX = 4294967295. + * + * Since the OS/MGCD notifies us of the size of each received UDP packet, + * the actual allocated buffer size for each packet is exact. + * And in practice the size of UDP packets is generally much smaller than the max. + * Indeed most protocols will send and receive packets of only a few bytes, + * or will set a limit on the size of packets to prevent fragmentation in the IP layer. + * + * If you set the buffer size too small, the sockets API in the OS will silently discard + * any extra data, and you will not be notified of the error. +**/ +- (uint16_t)maxReceiveIPv4BufferSize; +- (void)setMaxReceiveIPv4BufferSize:(uint16_t)max; + +- (uint32_t)maxReceiveIPv6BufferSize; +- (void)setMaxReceiveIPv6BufferSize:(uint32_t)max; + +/** + * Gets/Sets the maximum size of the buffer that will be allocated for send operations. + * The default maximum size is 65535 bytes. + * + * Given that a typical link MTU is 1500 bytes, a large UDP datagram will have to be + * fragmented, and that’s both expensive and risky (if one fragment goes missing, the + * entire datagram is lost). You are much better off sending a large number of smaller + * UDP datagrams, preferably using a path MTU algorithm to avoid fragmentation. + * + * You must set it before the sockt is created otherwise it won't work. + * + **/ +- (uint16_t)maxSendBufferSize; +- (void)setMaxSendBufferSize:(uint16_t)max; + +/** + * User data allows you to associate arbitrary information with the socket. + * This data is not used internally in any way. +**/ +- (nullable id)userData; +- (void)setUserData:(nullable id)arbitraryUserData; + +#pragma mark Diagnostics + +/** + * Returns the local address info for the socket. + * + * The localAddress method returns a sockaddr structure wrapped in a NSData object. + * The localHost method returns the human readable IP address as a string. + * + * Note: Address info may not be available until after the socket has been binded, connected + * or until after data has been sent. +**/ +- (nullable NSData *)localAddress; +- (nullable NSString *)localHost; +- (uint16_t)localPort; + +- (nullable NSData *)localAddress_IPv4; +- (nullable NSString *)localHost_IPv4; +- (uint16_t)localPort_IPv4; + +- (nullable NSData *)localAddress_IPv6; +- (nullable NSString *)localHost_IPv6; +- (uint16_t)localPort_IPv6; + +/** + * Returns the remote address info for the socket. + * + * The connectedAddress method returns a sockaddr structure wrapped in a NSData object. + * The connectedHost method returns the human readable IP address as a string. + * + * Note: Since UDP is connectionless by design, connected address info + * will not be available unless the socket is explicitly connected to a remote host/port. + * If the socket is not connected, these methods will return nil / 0. +**/ +- (nullable NSData *)connectedAddress; +- (nullable NSString *)connectedHost; +- (uint16_t)connectedPort; + +/** + * Returns whether or not this socket has been connected to a single host. + * By design, UDP is a connectionless protocol, and connecting is not needed. + * If connected, the socket will only be able to send/receive data to/from the connected host. +**/ +- (BOOL)isConnected; + +/** + * Returns whether or not this socket has been closed. + * The only way a socket can be closed is if you explicitly call one of the close methods. +**/ +- (BOOL)isClosed; + +/** + * Returns whether or not this socket is IPv4. + * + * By default this will be true, unless: + * - IPv4 is disabled (via setIPv4Enabled:) + * - The socket is explicitly bound to an IPv6 address + * - The socket is connected to an IPv6 address +**/ +- (BOOL)isIPv4; + +/** + * Returns whether or not this socket is IPv6. + * + * By default this will be true, unless: + * - IPv6 is disabled (via setIPv6Enabled:) + * - The socket is explicitly bound to an IPv4 address + * _ The socket is connected to an IPv4 address + * + * This method will also return false on platforms that do not support IPv6. + * Note: The iPhone does not currently support IPv6. +**/ +- (BOOL)isIPv6; + +#pragma mark Binding + +/** + * Binds the UDP socket to the given port. + * Binding should be done for server sockets that receive data prior to sending it. + * Client sockets can skip binding, + * as the OS will automatically assign the socket an available port when it starts sending data. + * + * You may optionally pass a port number of zero to immediately bind the socket, + * yet still allow the OS to automatically assign an available port. + * + * You cannot bind a socket after its been connected. + * You can only bind a socket once. + * You can still connect a socket (if desired) after binding. + * + * On success, returns YES. + * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass NULL for errPtr. +**/ +- (BOOL)bindToPort:(uint16_t)port error:(NSError **)errPtr; + +/** + * Binds the UDP socket to the given port and optional interface. + * Binding should be done for server sockets that receive data prior to sending it. + * Client sockets can skip binding, + * as the OS will automatically assign the socket an available port when it starts sending data. + * + * You may optionally pass a port number of zero to immediately bind the socket, + * yet still allow the OS to automatically assign an available port. + * + * The interface may be a name (e.g. "en1" or "lo0") or the corresponding IP address (e.g. "192.168.4.35"). + * You may also use the special strings "localhost" or "loopback" to specify that + * the socket only accept packets from the local machine. + * + * You cannot bind a socket after its been connected. + * You can only bind a socket once. + * You can still connect a socket (if desired) after binding. + * + * On success, returns YES. + * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass NULL for errPtr. +**/ +- (BOOL)bindToPort:(uint16_t)port interface:(nullable NSString *)interface error:(NSError **)errPtr; + +/** + * Binds the UDP socket to the given address, specified as a sockaddr structure wrapped in a NSData object. + * + * If you have an existing struct sockaddr you can convert it to a NSData object like so: + * struct sockaddr sa -> NSData *dsa = [NSData dataWithBytes:&remoteAddr length:remoteAddr.sa_len]; + * struct sockaddr *sa -> NSData *dsa = [NSData dataWithBytes:remoteAddr length:remoteAddr->sa_len]; + * + * Binding should be done for server sockets that receive data prior to sending it. + * Client sockets can skip binding, + * as the OS will automatically assign the socket an available port when it starts sending data. + * + * You cannot bind a socket after its been connected. + * You can only bind a socket once. + * You can still connect a socket (if desired) after binding. + * + * On success, returns YES. + * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass NULL for errPtr. +**/ +- (BOOL)bindToAddress:(NSData *)localAddr error:(NSError **)errPtr; + +#pragma mark Connecting + +/** + * Connects the UDP socket to the given host and port. + * By design, UDP is a connectionless protocol, and connecting is not needed. + * + * Choosing to connect to a specific host/port has the following effect: + * - You will only be able to send data to the connected host/port. + * - You will only be able to receive data from the connected host/port. + * - You will receive ICMP messages that come from the connected host/port, such as "connection refused". + * + * The actual process of connecting a UDP socket does not result in any communication on the socket. + * It simply changes the internal state of the socket. + * + * You cannot bind a socket after it has been connected. + * You can only connect a socket once. + * + * The host may be a domain name (e.g. "deusty.com") or an IP address string (e.g. "192.168.0.2"). + * + * This method is asynchronous as it requires a DNS lookup to resolve the given host name. + * If an obvious error is detected, this method immediately returns NO and sets errPtr. + * If you don't care about the error, you can pass nil for errPtr. + * Otherwise, this method returns YES and begins the asynchronous connection process. + * The result of the asynchronous connection process will be reported via the delegate methods. + **/ +- (BOOL)connectToHost:(NSString *)host onPort:(uint16_t)port error:(NSError **)errPtr; + +/** + * Connects the UDP socket to the given address, specified as a sockaddr structure wrapped in a NSData object. + * + * If you have an existing struct sockaddr you can convert it to a NSData object like so: + * struct sockaddr sa -> NSData *dsa = [NSData dataWithBytes:&remoteAddr length:remoteAddr.sa_len]; + * struct sockaddr *sa -> NSData *dsa = [NSData dataWithBytes:remoteAddr length:remoteAddr->sa_len]; + * + * By design, UDP is a connectionless protocol, and connecting is not needed. + * + * Choosing to connect to a specific address has the following effect: + * - You will only be able to send data to the connected address. + * - You will only be able to receive data from the connected address. + * - You will receive ICMP messages that come from the connected address, such as "connection refused". + * + * Connecting a UDP socket does not result in any communication on the socket. + * It simply changes the internal state of the socket. + * + * You cannot bind a socket after its been connected. + * You can only connect a socket once. + * + * On success, returns YES. + * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass nil for errPtr. + * + * Note: Unlike the connectToHost:onPort:error: method, this method does not require a DNS lookup. + * Thus when this method returns, the connection has either failed or fully completed. + * In other words, this method is synchronous, unlike the asynchronous connectToHost::: method. + * However, for compatibility and simplification of delegate code, if this method returns YES + * then the corresponding delegate method (udpSocket:didConnectToHost:port:) is still invoked. +**/ +- (BOOL)connectToAddress:(NSData *)remoteAddr error:(NSError **)errPtr; + +#pragma mark Multicast + +/** + * Join multicast group. + * Group should be an IP address (eg @"225.228.0.1"). + * + * On success, returns YES. + * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass nil for errPtr. +**/ +- (BOOL)joinMulticastGroup:(NSString *)group error:(NSError **)errPtr; + +/** + * Join multicast group. + * Group should be an IP address (eg @"225.228.0.1"). + * The interface may be a name (e.g. "en1" or "lo0") or the corresponding IP address (e.g. "192.168.4.35"). + * + * On success, returns YES. + * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass nil for errPtr. +**/ +- (BOOL)joinMulticastGroup:(NSString *)group onInterface:(nullable NSString *)interface error:(NSError **)errPtr; + +- (BOOL)leaveMulticastGroup:(NSString *)group error:(NSError **)errPtr; +- (BOOL)leaveMulticastGroup:(NSString *)group onInterface:(nullable NSString *)interface error:(NSError **)errPtr; + +/** + * Send multicast on a specified interface. + * For IPv4, interface should be the the IP address of the interface (eg @"192.168.10.1"). + * For IPv6, interface should be the a network interface name (eg @"en0"). + * + * On success, returns YES. + * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass nil for errPtr. +**/ + +- (BOOL)sendIPv4MulticastOnInterface:(NSString*)interface error:(NSError **)errPtr; +- (BOOL)sendIPv6MulticastOnInterface:(NSString*)interface error:(NSError **)errPtr; + +#pragma mark Reuse Port + +/** + * By default, only one socket can be bound to a given IP address + port at a time. + * To enable multiple processes to simultaneously bind to the same address+port, + * you need to enable this functionality in the socket. All processes that wish to + * use the address+port simultaneously must all enable reuse port on the socket + * bound to that port. + **/ +- (BOOL)enableReusePort:(BOOL)flag error:(NSError **)errPtr; + +#pragma mark Broadcast + +/** + * By default, the underlying socket in the OS will not allow you to send broadcast messages. + * In order to send broadcast messages, you need to enable this functionality in the socket. + * + * A broadcast is a UDP message to addresses like "192.168.255.255" or "255.255.255.255" that is + * delivered to every host on the network. + * The reason this is generally disabled by default (by the OS) is to prevent + * accidental broadcast messages from flooding the network. +**/ +- (BOOL)enableBroadcast:(BOOL)flag error:(NSError **)errPtr; + +#pragma mark Sending + +/** + * Asynchronously sends the given data, with the given timeout and tag. + * + * This method may only be used with a connected socket. + * Recall that connecting is optional for a UDP socket. + * For connected sockets, data can only be sent to the connected address. + * For non-connected sockets, the remote destination is specified for each packet. + * For more information about optionally connecting udp sockets, see the documentation for the connect methods above. + * + * @param data + * The data to send. + * If data is nil or zero-length, this method does nothing. + * If passing NSMutableData, please read the thread-safety notice below. + * + * @param timeout + * The timeout for the send opeartion. + * If the timeout value is negative, the send operation will not use a timeout. + * + * @param tag + * The tag is for your convenience. + * It is not sent or received over the socket in any manner what-so-ever. + * It is reported back as a parameter in the udpSocket:didSendDataWithTag: + * or udpSocket:didNotSendDataWithTag:dueToError: methods. + * You can use it as an array index, state id, type constant, etc. + * + * + * Thread-Safety Note: + * If the given data parameter is mutable (NSMutableData) then you MUST NOT alter the data while + * the socket is sending it. In other words, it's not safe to alter the data until after the delegate method + * udpSocket:didSendDataWithTag: or udpSocket:didNotSendDataWithTag:dueToError: is invoked signifying + * that this particular send operation has completed. + * This is due to the fact that MGCDAsyncUdpSocket does NOT copy the data. + * It simply retains it for performance reasons. + * Often times, if NSMutableData is passed, it is because a request/response was built up in memory. + * Copying this data adds an unwanted/unneeded overhead. + * If you need to write data from an immutable buffer, and you need to alter the buffer before the socket + * completes sending the bytes (which is NOT immediately after this method returns, but rather at a later time + * when the delegate method notifies you), then you should first copy the bytes, and pass the copy to this method. +**/ +- (void)sendData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag; + +/** + * Asynchronously sends the given data, with the given timeout and tag, to the given host and port. + * + * This method cannot be used with a connected socket. + * Recall that connecting is optional for a UDP socket. + * For connected sockets, data can only be sent to the connected address. + * For non-connected sockets, the remote destination is specified for each packet. + * For more information about optionally connecting udp sockets, see the documentation for the connect methods above. + * + * @param data + * The data to send. + * If data is nil or zero-length, this method does nothing. + * If passing NSMutableData, please read the thread-safety notice below. + * + * @param host + * The destination to send the udp packet to. + * May be specified as a domain name (e.g. "deusty.com") or an IP address string (e.g. "192.168.0.2"). + * You may also use the convenience strings of "loopback" or "localhost". + * + * @param port + * The port of the host to send to. + * + * @param timeout + * The timeout for the send opeartion. + * If the timeout value is negative, the send operation will not use a timeout. + * + * @param tag + * The tag is for your convenience. + * It is not sent or received over the socket in any manner what-so-ever. + * It is reported back as a parameter in the udpSocket:didSendDataWithTag: + * or udpSocket:didNotSendDataWithTag:dueToError: methods. + * You can use it as an array index, state id, type constant, etc. + * + * + * Thread-Safety Note: + * If the given data parameter is mutable (NSMutableData) then you MUST NOT alter the data while + * the socket is sending it. In other words, it's not safe to alter the data until after the delegate method + * udpSocket:didSendDataWithTag: or udpSocket:didNotSendDataWithTag:dueToError: is invoked signifying + * that this particular send operation has completed. + * This is due to the fact that MGCDAsyncUdpSocket does NOT copy the data. + * It simply retains it for performance reasons. + * Often times, if NSMutableData is passed, it is because a request/response was built up in memory. + * Copying this data adds an unwanted/unneeded overhead. + * If you need to write data from an immutable buffer, and you need to alter the buffer before the socket + * completes sending the bytes (which is NOT immediately after this method returns, but rather at a later time + * when the delegate method notifies you), then you should first copy the bytes, and pass the copy to this method. +**/ +- (void)sendData:(NSData *)data + toHost:(NSString *)host + port:(uint16_t)port + withTimeout:(NSTimeInterval)timeout + tag:(long)tag; + +/** + * Asynchronously sends the given data, with the given timeout and tag, to the given address. + * + * This method cannot be used with a connected socket. + * Recall that connecting is optional for a UDP socket. + * For connected sockets, data can only be sent to the connected address. + * For non-connected sockets, the remote destination is specified for each packet. + * For more information about optionally connecting udp sockets, see the documentation for the connect methods above. + * + * @param data + * The data to send. + * If data is nil or zero-length, this method does nothing. + * If passing NSMutableData, please read the thread-safety notice below. + * + * @param remoteAddr + * The address to send the data to (specified as a sockaddr structure wrapped in a NSData object). + * + * @param timeout + * The timeout for the send opeartion. + * If the timeout value is negative, the send operation will not use a timeout. + * + * @param tag + * The tag is for your convenience. + * It is not sent or received over the socket in any manner what-so-ever. + * It is reported back as a parameter in the udpSocket:didSendDataWithTag: + * or udpSocket:didNotSendDataWithTag:dueToError: methods. + * You can use it as an array index, state id, type constant, etc. + * + * + * Thread-Safety Note: + * If the given data parameter is mutable (NSMutableData) then you MUST NOT alter the data while + * the socket is sending it. In other words, it's not safe to alter the data until after the delegate method + * udpSocket:didSendDataWithTag: or udpSocket:didNotSendDataWithTag:dueToError: is invoked signifying + * that this particular send operation has completed. + * This is due to the fact that MGCDAsyncUdpSocket does NOT copy the data. + * It simply retains it for performance reasons. + * Often times, if NSMutableData is passed, it is because a request/response was built up in memory. + * Copying this data adds an unwanted/unneeded overhead. + * If you need to write data from an immutable buffer, and you need to alter the buffer before the socket + * completes sending the bytes (which is NOT immediately after this method returns, but rather at a later time + * when the delegate method notifies you), then you should first copy the bytes, and pass the copy to this method. +**/ +- (void)sendData:(NSData *)data toAddress:(NSData *)remoteAddr withTimeout:(NSTimeInterval)timeout tag:(long)tag; + +/** + * You may optionally set a send filter for the socket. + * A filter can provide several interesting possibilities: + * + * 1. Optional caching of resolved addresses for domain names. + * The cache could later be consulted, resulting in fewer system calls to getaddrinfo. + * + * 2. Reusable modules of code for bandwidth monitoring. + * + * 3. Sometimes traffic shapers are needed to simulate real world environments. + * A filter allows you to write custom code to simulate such environments. + * The ability to code this yourself is especially helpful when your simulated environment + * is more complicated than simple traffic shaping (e.g. simulating a cone port restricted router), + * or the system tools to handle this aren't available (e.g. on a mobile device). + * + * For more information about MGCDAsyncUdpSocketSendFilterBlock, see the documentation for its typedef. + * To remove a previously set filter, invoke this method and pass a nil filterBlock and NULL filterQueue. + * + * Note: This method invokes setSendFilter:withQueue:isAsynchronous: (documented below), + * passing YES for the isAsynchronous parameter. +**/ +- (void)setSendFilter:(nullable MGCDAsyncUdpSocketSendFilterBlock)filterBlock withQueue:(nullable dispatch_queue_t)filterQueue; + +/** + * The receive filter can be run via dispatch_async or dispatch_sync. + * Most typical situations call for asynchronous operation. + * + * However, there are a few situations in which synchronous operation is preferred. + * Such is the case when the filter is extremely minimal and fast. + * This is because dispatch_sync is faster than dispatch_async. + * + * If you choose synchronous operation, be aware of possible deadlock conditions. + * Since the socket queue is executing your block via dispatch_sync, + * then you cannot perform any tasks which may invoke dispatch_sync on the socket queue. + * For example, you can't query properties on the socket. +**/ +- (void)setSendFilter:(nullable MGCDAsyncUdpSocketSendFilterBlock)filterBlock + withQueue:(nullable dispatch_queue_t)filterQueue + isAsynchronous:(BOOL)isAsynchronous; + +#pragma mark Receiving + +/** + * There are two modes of operation for receiving packets: one-at-a-time & continuous. + * + * In one-at-a-time mode, you call receiveOnce everytime your delegate is ready to process an incoming udp packet. + * Receiving packets one-at-a-time may be better suited for implementing certain state machine code, + * where your state machine may not always be ready to process incoming packets. + * + * In continuous mode, the delegate is invoked immediately everytime incoming udp packets are received. + * Receiving packets continuously is better suited to real-time streaming applications. + * + * You may switch back and forth between one-at-a-time mode and continuous mode. + * If the socket is currently in continuous mode, calling this method will switch it to one-at-a-time mode. + * + * When a packet is received (and not filtered by the optional receive filter), + * the delegate method (udpSocket:didReceiveData:fromAddress:withFilterContext:) is invoked. + * + * If the socket is able to begin receiving packets, this method returns YES. + * Otherwise it returns NO, and sets the errPtr with appropriate error information. + * + * An example error: + * You created a udp socket to act as a server, and immediately called receive. + * You forgot to first bind the socket to a port number, and received a error with a message like: + * "Must bind socket before you can receive data." +**/ +- (BOOL)receiveOnce:(NSError **)errPtr; + +/** + * There are two modes of operation for receiving packets: one-at-a-time & continuous. + * + * In one-at-a-time mode, you call receiveOnce everytime your delegate is ready to process an incoming udp packet. + * Receiving packets one-at-a-time may be better suited for implementing certain state machine code, + * where your state machine may not always be ready to process incoming packets. + * + * In continuous mode, the delegate is invoked immediately everytime incoming udp packets are received. + * Receiving packets continuously is better suited to real-time streaming applications. + * + * You may switch back and forth between one-at-a-time mode and continuous mode. + * If the socket is currently in one-at-a-time mode, calling this method will switch it to continuous mode. + * + * For every received packet (not filtered by the optional receive filter), + * the delegate method (udpSocket:didReceiveData:fromAddress:withFilterContext:) is invoked. + * + * If the socket is able to begin receiving packets, this method returns YES. + * Otherwise it returns NO, and sets the errPtr with appropriate error information. + * + * An example error: + * You created a udp socket to act as a server, and immediately called receive. + * You forgot to first bind the socket to a port number, and received a error with a message like: + * "Must bind socket before you can receive data." +**/ +- (BOOL)beginReceiving:(NSError **)errPtr; + +/** + * If the socket is currently receiving (beginReceiving has been called), this method pauses the receiving. + * That is, it won't read any more packets from the underlying OS socket until beginReceiving is called again. + * + * Important Note: + * MGCDAsyncUdpSocket may be running in parallel with your code. + * That is, your delegate is likely running on a separate thread/dispatch_queue. + * When you invoke this method, MGCDAsyncUdpSocket may have already dispatched delegate methods to be invoked. + * Thus, if those delegate methods have already been dispatch_async'd, + * your didReceive delegate method may still be invoked after this method has been called. + * You should be aware of this, and program defensively. +**/ +- (void)pauseReceiving; + +/** + * You may optionally set a receive filter for the socket. + * This receive filter may be set to run in its own queue (independent of delegate queue). + * + * A filter can provide several useful features. + * + * 1. Many times udp packets need to be parsed. + * Since the filter can run in its own independent queue, you can parallelize this parsing quite easily. + * The end result is a parallel socket io, datagram parsing, and packet processing. + * + * 2. Many times udp packets are discarded because they are duplicate/unneeded/unsolicited. + * The filter can prevent such packets from arriving at the delegate. + * And because the filter can run in its own independent queue, this doesn't slow down the delegate. + * + * - Since the udp protocol does not guarantee delivery, udp packets may be lost. + * Many protocols built atop udp thus provide various resend/re-request algorithms. + * This sometimes results in duplicate packets arriving. + * A filter may allow you to architect the duplicate detection code to run in parallel to normal processing. + * + * - Since the udp socket may be connectionless, its possible for unsolicited packets to arrive. + * Such packets need to be ignored. + * + * 3. Sometimes traffic shapers are needed to simulate real world environments. + * A filter allows you to write custom code to simulate such environments. + * The ability to code this yourself is especially helpful when your simulated environment + * is more complicated than simple traffic shaping (e.g. simulating a cone port restricted router), + * or the system tools to handle this aren't available (e.g. on a mobile device). + * + * Example: + * + * MGCDAsyncUdpSocketReceiveFilterBlock filter = ^BOOL (NSData *data, NSData *address, id *context) { + * + * MyProtocolMessage *msg = [MyProtocol parseMessage:data]; + * + * *context = response; + * return (response != nil); + * }; + * [udpSocket setReceiveFilter:filter withQueue:myParsingQueue]; + * + * For more information about MGCDAsyncUdpSocketReceiveFilterBlock, see the documentation for its typedef. + * To remove a previously set filter, invoke this method and pass a nil filterBlock and NULL filterQueue. + * + * Note: This method invokes setReceiveFilter:withQueue:isAsynchronous: (documented below), + * passing YES for the isAsynchronous parameter. +**/ +- (void)setReceiveFilter:(nullable MGCDAsyncUdpSocketReceiveFilterBlock)filterBlock withQueue:(nullable dispatch_queue_t)filterQueue; + +/** + * The receive filter can be run via dispatch_async or dispatch_sync. + * Most typical situations call for asynchronous operation. + * + * However, there are a few situations in which synchronous operation is preferred. + * Such is the case when the filter is extremely minimal and fast. + * This is because dispatch_sync is faster than dispatch_async. + * + * If you choose synchronous operation, be aware of possible deadlock conditions. + * Since the socket queue is executing your block via dispatch_sync, + * then you cannot perform any tasks which may invoke dispatch_sync on the socket queue. + * For example, you can't query properties on the socket. +**/ +- (void)setReceiveFilter:(nullable MGCDAsyncUdpSocketReceiveFilterBlock)filterBlock + withQueue:(nullable dispatch_queue_t)filterQueue + isAsynchronous:(BOOL)isAsynchronous; + +#pragma mark Closing + +/** + * Immediately closes the underlying socket. + * Any pending send operations are discarded. + * + * The MGCDAsyncUdpSocket instance may optionally be used again. + * (it will setup/configure/use another unnderlying BSD socket). +**/ +- (void)close; + +/** + * Closes the underlying socket after all pending send operations have been sent. + * + * The MGCDAsyncUdpSocket instance may optionally be used again. + * (it will setup/configure/use another unnderlying BSD socket). +**/ +- (void)closeAfterSending; + +#pragma mark Advanced +/** + * MGCDAsyncSocket maintains thread safety by using an internal serial dispatch_queue. + * In most cases, the instance creates this queue itself. + * However, to allow for maximum flexibility, the internal queue may be passed in the init method. + * This allows for some advanced options such as controlling socket priority via target queues. + * However, when one begins to use target queues like this, they open the door to some specific deadlock issues. + * + * For example, imagine there are 2 queues: + * dispatch_queue_t socketQueue; + * dispatch_queue_t socketTargetQueue; + * + * If you do this (pseudo-code): + * socketQueue.targetQueue = socketTargetQueue; + * + * Then all socketQueue operations will actually get run on the given socketTargetQueue. + * This is fine and works great in most situations. + * But if you run code directly from within the socketTargetQueue that accesses the socket, + * you could potentially get deadlock. Imagine the following code: + * + * - (BOOL)socketHasSomething + * { + * __block BOOL result = NO; + * dispatch_block_t block = ^{ + * result = [self someInternalMethodToBeRunOnlyOnSocketQueue]; + * } + * if (is_executing_on_queue(socketQueue)) + * block(); + * else + * dispatch_sync(socketQueue, block); + * + * return result; + * } + * + * What happens if you call this method from the socketTargetQueue? The result is deadlock. + * This is because the MGCD API offers no mechanism to discover a queue's targetQueue. + * Thus we have no idea if our socketQueue is configured with a targetQueue. + * If we had this information, we could easily avoid deadlock. + * But, since these API's are missing or unfeasible, you'll have to explicitly set it. + * + * IF you pass a socketQueue via the init method, + * AND you've configured the passed socketQueue with a targetQueue, + * THEN you should pass the end queue in the target hierarchy. + * + * For example, consider the following queue hierarchy: + * socketQueue -> ipQueue -> moduleQueue + * + * This example demonstrates priority shaping within some server. + * All incoming client connections from the same IP address are executed on the same target queue. + * And all connections for a particular module are executed on the same target queue. + * Thus, the priority of all networking for the entire module can be changed on the fly. + * Additionally, networking traffic from a single IP cannot monopolize the module. + * + * Here's how you would accomplish something like that: + * - (dispatch_queue_t)newSocketQueueForConnectionFromAddress:(NSData *)address onSocket:(MGCDAsyncSocket *)sock + * { + * dispatch_queue_t socketQueue = dispatch_queue_create("", NULL); + * dispatch_queue_t ipQueue = [self ipQueueForAddress:address]; + * + * dispatch_set_target_queue(socketQueue, ipQueue); + * dispatch_set_target_queue(iqQueue, moduleQueue); + * + * return socketQueue; + * } + * - (void)socket:(MGCDAsyncSocket *)sock didAcceptNewSocket:(MGCDAsyncSocket *)newSocket + * { + * [clientConnections addObject:newSocket]; + * [newSocket markSocketQueueTargetQueue:moduleQueue]; + * } + * + * Note: This workaround is ONLY needed if you intend to execute code directly on the ipQueue or moduleQueue. + * This is often NOT the case, as such queues are used solely for execution shaping. + **/ +- (void)markSocketQueueTargetQueue:(dispatch_queue_t)socketQueuesPreConfiguredTargetQueue; +- (void)unmarkSocketQueueTargetQueue:(dispatch_queue_t)socketQueuesPreviouslyConfiguredTargetQueue; + +/** + * It's not thread-safe to access certain variables from outside the socket's internal queue. + * + * For example, the socket file descriptor. + * File descriptors are simply integers which reference an index in the per-process file table. + * However, when one requests a new file descriptor (by opening a file or socket), + * the file descriptor returned is guaranteed to be the lowest numbered unused descriptor. + * So if we're not careful, the following could be possible: + * + * - Thread A invokes a method which returns the socket's file descriptor. + * - The socket is closed via the socket's internal queue on thread B. + * - Thread C opens a file, and subsequently receives the file descriptor that was previously the socket's FD. + * - Thread A is now accessing/altering the file instead of the socket. + * + * In addition to this, other variables are not actually objects, + * and thus cannot be retained/released or even autoreleased. + * An example is the sslContext, of type SSLContextRef, which is actually a malloc'd struct. + * + * Although there are internal variables that make it difficult to maintain thread-safety, + * it is important to provide access to these variables + * to ensure this class can be used in a wide array of environments. + * This method helps to accomplish this by invoking the current block on the socket's internal queue. + * The methods below can be invoked from within the block to access + * those generally thread-unsafe internal variables in a thread-safe manner. + * The given block will be invoked synchronously on the socket's internal queue. + * + * If you save references to any protected variables and use them outside the block, you do so at your own peril. +**/ +- (void)performBlock:(dispatch_block_t)block; + +/** + * These methods are only available from within the context of a performBlock: invocation. + * See the documentation for the performBlock: method above. + * + * Provides access to the socket's file descriptor(s). + * If the socket isn't connected, or explicity bound to a particular interface, + * it might actually have multiple internal socket file descriptors - one for IPv4 and one for IPv6. +**/ +- (int)socketFD; +- (int)socket4FD; +- (int)socket6FD; + +#if TARGET_OS_IPHONE + +/** + * These methods are only available from within the context of a performBlock: invocation. + * See the documentation for the performBlock: method above. + * + * Returns (creating if necessary) a CFReadStream/CFWriteStream for the internal socket. + * + * Generally MGCDAsyncUdpSocket doesn't use CFStream. (It uses the faster MGCD API's.) + * However, if you need one for any reason, + * these methods are a convenient way to get access to a safe instance of one. +**/ +- (nullable CFReadStreamRef)readStream; +- (nullable CFWriteStreamRef)writeStream; + +/** + * This method is only available from within the context of a performBlock: invocation. + * See the documentation for the performBlock: method above. + * + * Configures the socket to allow it to operate when the iOS application has been backgrounded. + * In other words, this method creates a read & write stream, and invokes: + * + * CFReadStreamSetProperty(readStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); + * CFWriteStreamSetProperty(writeStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); + * + * Returns YES if successful, NO otherwise. + * + * Example usage: + * + * [asyncUdpSocket performBlock:^{ + * [asyncUdpSocket enableBackgroundingOnSocket]; + * }]; + * + * + * NOTE : Apple doesn't currently support backgrounding UDP sockets. (Only TCP for now). +**/ +//- (BOOL)enableBackgroundingOnSockets; + +#endif + +#pragma mark Utilities + +/** + * Extracting host/port/family information from raw address data. +**/ + ++ (nullable NSString *)hostFromAddress:(NSData *)address; ++ (uint16_t)portFromAddress:(NSData *)address; ++ (int)familyFromAddress:(NSData *)address; + ++ (BOOL)isIPv4Address:(NSData *)address; ++ (BOOL)isIPv6Address:(NSData *)address; + ++ (BOOL)getHost:(NSString * __nullable * __nullable)hostPtr port:(uint16_t * __nullable)portPtr fromAddress:(NSData *)address; ++ (BOOL)getHost:(NSString * __nullable * __nullable)hostPtr port:(uint16_t * __nullable)portPtr family:(int * __nullable)afPtr fromAddress:(NSData *)address; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncUdpSocket.m b/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncUdpSocket.m new file mode 100755 index 0000000..a40fb68 --- /dev/null +++ b/Pods/MqttCocoaAsyncSocket/Source/GCD/MGCDAsyncUdpSocket.m @@ -0,0 +1,5632 @@ +// +// MGCDAsyncUdpSocket +// +// This class is in the public domain. +// Originally created by Robbie Hanson of Deusty LLC. +// Updated and maintained by Deusty LLC and the Apple development community. +// +// https://github.com/robbiehanson/CocoaAsyncSocket +// + +#import "MGCDAsyncUdpSocket.h" + +#if ! __has_feature(objc_arc) +#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC). +// For more information see: https://github.com/robbiehanson/CocoaAsyncSocket/wiki/ARC +#endif + +#if TARGET_OS_IPHONE + #import + #import +#endif + +#import +#import +#import +#import +#import +#import +#import + + +#if 0 + +// Logging Enabled - See log level below + +// Logging uses the CocoaLumberjack framework (which is also MGCD based). +// https://github.com/robbiehanson/CocoaLumberjack +// +// It allows us to do a lot of logging without significantly slowing down the code. +#import "DDLog.h" + +#define LogAsync NO +#define LogContext 65535 + +#define LogObjc(flg, frmt, ...) LOG_OBJC_MAYBE(LogAsync, logLevel, flg, LogContext, frmt, ##__VA_ARGS__) +#define LogC(flg, frmt, ...) LOG_C_MAYBE(LogAsync, logLevel, flg, LogContext, frmt, ##__VA_ARGS__) + +#define LogError(frmt, ...) LogObjc(LOG_FLAG_ERROR, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogWarn(frmt, ...) LogObjc(LOG_FLAG_WARN, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogInfo(frmt, ...) LogObjc(LOG_FLAG_INFO, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogVerbose(frmt, ...) LogObjc(LOG_FLAG_VERBOSE, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) + +#define LogCError(frmt, ...) LogC(LOG_FLAG_ERROR, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogCWarn(frmt, ...) LogC(LOG_FLAG_WARN, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogCInfo(frmt, ...) LogC(LOG_FLAG_INFO, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) +#define LogCVerbose(frmt, ...) LogC(LOG_FLAG_VERBOSE, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) + +#define LogTrace() LogObjc(LOG_FLAG_VERBOSE, @"%@: %@", THIS_FILE, THIS_METHOD) +#define LogCTrace() LogC(LOG_FLAG_VERBOSE, @"%@: %s", THIS_FILE, __FUNCTION__) + +// Log levels : off, error, warn, info, verbose +static const int logLevel = LOG_LEVEL_VERBOSE; + +#else + +// Logging Disabled + +#define LogError(frmt, ...) {} +#define LogWarn(frmt, ...) {} +#define LogInfo(frmt, ...) {} +#define LogVerbose(frmt, ...) {} + +#define LogCError(frmt, ...) {} +#define LogCWarn(frmt, ...) {} +#define LogCInfo(frmt, ...) {} +#define LogCVerbose(frmt, ...) {} + +#define LogTrace() {} +#define LogCTrace(frmt, ...) {} + +#endif + +/** + * Seeing a return statements within an inner block + * can sometimes be mistaken for a return point of the enclosing method. + * This makes inline blocks a bit easier to read. +**/ +#define return_from_block return + +/** + * A socket file descriptor is really just an integer. + * It represents the index of the socket within the kernel. + * This makes invalid file descriptor comparisons easier to read. +**/ +#define SOCKET_NULL -1 + +/** + * Just to type less code. +**/ +#define AutoreleasedBlock(block) ^{ @autoreleasepool { block(); }} + + +@class MGCDAsyncUdpSendPacket; + +NSString *const MGCDAsyncUdpSocketException = @"MGCDAsyncUdpSocketException"; +NSString *const MGCDAsyncUdpSocketErrorDomain = @"MGCDAsyncUdpSocketErrorDomain"; + +NSString *const MGCDAsyncUdpSocketQueueName = @"MGCDAsyncUdpSocket"; +NSString *const MGCDAsyncUdpSocketThreadName = @"MGCDAsyncUdpSocket-CFStream"; + +enum MGCDAsyncUdpSocketFlags +{ + kDidCreateSockets = 1 << 0, // If set, the sockets have been created. + kDidBind = 1 << 1, // If set, bind has been called. + kConnecting = 1 << 2, // If set, a connection attempt is in progress. + kDidConnect = 1 << 3, // If set, socket is connected. + kReceiveOnce = 1 << 4, // If set, one-at-a-time receive is enabled + kReceiveContinuous = 1 << 5, // If set, continuous receive is enabled + kIPv4Deactivated = 1 << 6, // If set, socket4 was closed due to bind or connect on IPv6. + kIPv6Deactivated = 1 << 7, // If set, socket6 was closed due to bind or connect on IPv4. + kSend4SourceSuspended = 1 << 8, // If set, send4Source is suspended. + kSend6SourceSuspended = 1 << 9, // If set, send6Source is suspended. + kReceive4SourceSuspended = 1 << 10, // If set, receive4Source is suspended. + kReceive6SourceSuspended = 1 << 11, // If set, receive6Source is suspended. + kSock4CanAcceptBytes = 1 << 12, // If set, we know socket4 can accept bytes. If unset, it's unknown. + kSock6CanAcceptBytes = 1 << 13, // If set, we know socket6 can accept bytes. If unset, it's unknown. + kForbidSendReceive = 1 << 14, // If set, no new send or receive operations are allowed to be queued. + kCloseAfterSends = 1 << 15, // If set, close as soon as no more sends are queued. + kFlipFlop = 1 << 16, // Used to alternate between IPv4 and IPv6 sockets. +#if TARGET_OS_IPHONE + kAddedStreamListener = 1 << 17, // If set, CFStreams have been added to listener thread +#endif +}; + +enum MGCDAsyncUdpSocketConfig +{ + kIPv4Disabled = 1 << 0, // If set, IPv4 is disabled + kIPv6Disabled = 1 << 1, // If set, IPv6 is disabled + kPreferIPv4 = 1 << 2, // If set, IPv4 is preferred over IPv6 + kPreferIPv6 = 1 << 3, // If set, IPv6 is preferred over IPv4 +}; + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +@interface MGCDAsyncUdpSocket () +{ +#if __has_feature(objc_arc_weak) + __weak id delegate; +#else + __unsafe_unretained id delegate; +#endif + dispatch_queue_t delegateQueue; + + MGCDAsyncUdpSocketReceiveFilterBlock receiveFilterBlock; + dispatch_queue_t receiveFilterQueue; + BOOL receiveFilterAsync; + + MGCDAsyncUdpSocketSendFilterBlock sendFilterBlock; + dispatch_queue_t sendFilterQueue; + BOOL sendFilterAsync; + + uint32_t flags; + uint16_t config; + + uint16_t max4ReceiveSize; + uint32_t max6ReceiveSize; + + uint16_t maxSendSize; + + int socket4FD; + int socket6FD; + + dispatch_queue_t socketQueue; + + dispatch_source_t send4Source; + dispatch_source_t send6Source; + dispatch_source_t receive4Source; + dispatch_source_t receive6Source; + dispatch_source_t sendTimer; + + MGCDAsyncUdpSendPacket *currentSend; + NSMutableArray *sendQueue; + + unsigned long socket4FDBytesAvailable; + unsigned long socket6FDBytesAvailable; + + uint32_t pendingFilterOperations; + + NSData *cachedLocalAddress4; + NSString *cachedLocalHost4; + uint16_t cachedLocalPort4; + + NSData *cachedLocalAddress6; + NSString *cachedLocalHost6; + uint16_t cachedLocalPort6; + + NSData *cachedConnectedAddress; + NSString *cachedConnectedHost; + uint16_t cachedConnectedPort; + int cachedConnectedFamily; + + void *IsOnSocketQueueOrTargetQueueKey; + +#if TARGET_OS_IPHONE + CFStreamClientContext streamContext; + CFReadStreamRef readStream4; + CFReadStreamRef readStream6; + CFWriteStreamRef writeStream4; + CFWriteStreamRef writeStream6; +#endif + + id userData; +} + +- (void)resumeSend4Source; +- (void)resumeSend6Source; +- (void)resumeReceive4Source; +- (void)resumeReceive6Source; +- (void)closeSockets; + +- (void)maybeConnect; +- (BOOL)connectWithAddress4:(NSData *)address4 error:(NSError **)errPtr; +- (BOOL)connectWithAddress6:(NSData *)address6 error:(NSError **)errPtr; + +- (void)maybeDequeueSend; +- (void)doPreSend; +- (void)doSend; +- (void)endCurrentSend; +- (void)setupSendTimerWithTimeout:(NSTimeInterval)timeout; + +- (void)doReceive; +- (void)doReceiveEOF; + +- (void)closeWithError:(NSError *)error; + +- (BOOL)performMulticastRequest:(int)requestType forGroup:(NSString *)group onInterface:(NSString *)interface error:(NSError **)errPtr; + +#if TARGET_OS_IPHONE +- (BOOL)createReadAndWriteStreams:(NSError **)errPtr; +- (BOOL)registerForStreamCallbacks:(NSError **)errPtr; +- (BOOL)addStreamsToRunLoop:(NSError **)errPtr; +- (BOOL)openStreams:(NSError **)errPtr; +- (void)removeStreamsFromRunLoop; +- (void)closeReadAndWriteStreams; +#endif + ++ (NSString *)hostFromSockaddr4:(const struct sockaddr_in *)pSockaddr4; ++ (NSString *)hostFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6; ++ (uint16_t)portFromSockaddr4:(const struct sockaddr_in *)pSockaddr4; ++ (uint16_t)portFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6; + +#if TARGET_OS_IPHONE +// Forward declaration ++ (void)listenerThread:(id)unused; +#endif + +@end + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * The MGCDAsyncUdpSendPacket encompasses the instructions for a single send/write. +**/ +@interface MGCDAsyncUdpSendPacket : NSObject { +@public + NSData *buffer; + NSTimeInterval timeout; + long tag; + + BOOL resolveInProgress; + BOOL filterInProgress; + + NSArray *resolvedAddresses; + NSError *resolveError; + + NSData *address; + int addressFamily; +} + +- (instancetype)initWithData:(NSData *)d timeout:(NSTimeInterval)t tag:(long)i NS_DESIGNATED_INITIALIZER; + +@end + +@implementation MGCDAsyncUdpSendPacket + +// Cover the superclass' designated initializer +- (instancetype)init NS_UNAVAILABLE +{ + NSAssert(0, @"Use the designated initializer"); + return nil; +} + +- (instancetype)initWithData:(NSData *)d timeout:(NSTimeInterval)t tag:(long)i +{ + if ((self = [super init])) + { + buffer = d; + timeout = t; + tag = i; + + resolveInProgress = NO; + } + return self; +} + + +@end + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +@interface MGCDAsyncUdpSpecialPacket : NSObject { +@public +// uint8_t type; + + BOOL resolveInProgress; + + NSArray *addresses; + NSError *error; +} + +- (instancetype)init NS_DESIGNATED_INITIALIZER; + +@end + +@implementation MGCDAsyncUdpSpecialPacket + +- (instancetype)init +{ + self = [super init]; + return self; +} + + +@end + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark - +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +@implementation MGCDAsyncUdpSocket + +- (instancetype)init +{ + LogTrace(); + + return [self initWithDelegate:nil delegateQueue:NULL socketQueue:NULL]; +} + +- (instancetype)initWithSocketQueue:(dispatch_queue_t)sq +{ + LogTrace(); + + return [self initWithDelegate:nil delegateQueue:NULL socketQueue:sq]; +} + +- (instancetype)initWithDelegate:(id)aDelegate delegateQueue:(dispatch_queue_t)dq +{ + LogTrace(); + + return [self initWithDelegate:aDelegate delegateQueue:dq socketQueue:NULL]; +} + +- (instancetype)initWithDelegate:(id)aDelegate delegateQueue:(dispatch_queue_t)dq socketQueue:(dispatch_queue_t)sq +{ + LogTrace(); + + if ((self = [super init])) + { + delegate = aDelegate; + + if (dq) + { + delegateQueue = dq; + #if !OS_OBJECT_USE_OBJC + dispatch_retain(delegateQueue); + #endif + } + + max4ReceiveSize = 65535; + max6ReceiveSize = 65535; + + maxSendSize = 65535; + + socket4FD = SOCKET_NULL; + socket6FD = SOCKET_NULL; + + if (sq) + { + NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), + @"The given socketQueue parameter must not be a concurrent queue."); + NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), + @"The given socketQueue parameter must not be a concurrent queue."); + NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), + @"The given socketQueue parameter must not be a concurrent queue."); + + socketQueue = sq; + #if !OS_OBJECT_USE_OBJC + dispatch_retain(socketQueue); + #endif + } + else + { + socketQueue = dispatch_queue_create([MGCDAsyncUdpSocketQueueName UTF8String], NULL); + } + + // The dispatch_queue_set_specific() and dispatch_get_specific() functions take a "void *key" parameter. + // From the documentation: + // + // > Keys are only compared as pointers and are never dereferenced. + // > Thus, you can use a pointer to a static variable for a specific subsystem or + // > any other value that allows you to identify the value uniquely. + // + // We're just going to use the memory address of an ivar. + // Specifically an ivar that is explicitly named for our purpose to make the code more readable. + // + // However, it feels tedious (and less readable) to include the "&" all the time: + // dispatch_get_specific(&IsOnSocketQueueOrTargetQueueKey) + // + // So we're going to make it so it doesn't matter if we use the '&' or not, + // by assigning the value of the ivar to the address of the ivar. + // Thus: IsOnSocketQueueOrTargetQueueKey == &IsOnSocketQueueOrTargetQueueKey; + + IsOnSocketQueueOrTargetQueueKey = &IsOnSocketQueueOrTargetQueueKey; + + void *nonNullUnusedPointer = (__bridge void *)self; + dispatch_queue_set_specific(socketQueue, IsOnSocketQueueOrTargetQueueKey, nonNullUnusedPointer, NULL); + + currentSend = nil; + sendQueue = [[NSMutableArray alloc] initWithCapacity:5]; + + #if TARGET_OS_IPHONE + [[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(applicationWillEnterForeground:) + name:UIApplicationWillEnterForegroundNotification + object:nil]; + #endif + } + return self; +} + +- (void)dealloc +{ + LogInfo(@"%@ - %@ (start)", THIS_METHOD, self); + +#if TARGET_OS_IPHONE + [[NSNotificationCenter defaultCenter] removeObserver:self]; +#endif + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + [self closeWithError:nil]; + } + else + { + dispatch_sync(socketQueue, ^{ + [self closeWithError:nil]; + }); + } + + delegate = nil; + #if !OS_OBJECT_USE_OBJC + if (delegateQueue) dispatch_release(delegateQueue); + #endif + delegateQueue = NULL; + + #if !OS_OBJECT_USE_OBJC + if (socketQueue) dispatch_release(socketQueue); + #endif + socketQueue = NULL; + + LogInfo(@"%@ - %@ (finish)", THIS_METHOD, self); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Configuration +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (id)delegate +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return delegate; + } + else + { + __block id result = nil; + + dispatch_sync(socketQueue, ^{ + result = self->delegate; + }); + + return result; + } +} + +- (void)setDelegate:(id)newDelegate synchronously:(BOOL)synchronously +{ + dispatch_block_t block = ^{ + self->delegate = newDelegate; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { + block(); + } + else { + if (synchronously) + dispatch_sync(socketQueue, block); + else + dispatch_async(socketQueue, block); + } +} + +- (void)setDelegate:(id)newDelegate +{ + [self setDelegate:newDelegate synchronously:NO]; +} + +- (void)synchronouslySetDelegate:(id)newDelegate +{ + [self setDelegate:newDelegate synchronously:YES]; +} + +- (dispatch_queue_t)delegateQueue +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + return delegateQueue; + } + else + { + __block dispatch_queue_t result = NULL; + + dispatch_sync(socketQueue, ^{ + result = self->delegateQueue; + }); + + return result; + } +} + +- (void)setDelegateQueue:(dispatch_queue_t)newDelegateQueue synchronously:(BOOL)synchronously +{ + dispatch_block_t block = ^{ + + #if !OS_OBJECT_USE_OBJC + if (self->delegateQueue) dispatch_release(self->delegateQueue); + if (newDelegateQueue) dispatch_retain(newDelegateQueue); + #endif + + self->delegateQueue = newDelegateQueue; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { + block(); + } + else { + if (synchronously) + dispatch_sync(socketQueue, block); + else + dispatch_async(socketQueue, block); + } +} + +- (void)setDelegateQueue:(dispatch_queue_t)newDelegateQueue +{ + [self setDelegateQueue:newDelegateQueue synchronously:NO]; +} + +- (void)synchronouslySetDelegateQueue:(dispatch_queue_t)newDelegateQueue +{ + [self setDelegateQueue:newDelegateQueue synchronously:YES]; +} + +- (void)getDelegate:(id *)delegatePtr delegateQueue:(dispatch_queue_t *)delegateQueuePtr +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + if (delegatePtr) *delegatePtr = delegate; + if (delegateQueuePtr) *delegateQueuePtr = delegateQueue; + } + else + { + __block id dPtr = NULL; + __block dispatch_queue_t dqPtr = NULL; + + dispatch_sync(socketQueue, ^{ + dPtr = self->delegate; + dqPtr = self->delegateQueue; + }); + + if (delegatePtr) *delegatePtr = dPtr; + if (delegateQueuePtr) *delegateQueuePtr = dqPtr; + } +} + +- (void)setDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue synchronously:(BOOL)synchronously +{ + dispatch_block_t block = ^{ + + self->delegate = newDelegate; + + #if !OS_OBJECT_USE_OBJC + if (self->delegateQueue) dispatch_release(self->delegateQueue); + if (newDelegateQueue) dispatch_retain(newDelegateQueue); + #endif + + self->delegateQueue = newDelegateQueue; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { + block(); + } + else { + if (synchronously) + dispatch_sync(socketQueue, block); + else + dispatch_async(socketQueue, block); + } +} + +- (void)setDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue +{ + [self setDelegate:newDelegate delegateQueue:newDelegateQueue synchronously:NO]; +} + +- (void)synchronouslySetDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue +{ + [self setDelegate:newDelegate delegateQueue:newDelegateQueue synchronously:YES]; +} + +- (BOOL)isIPv4Enabled +{ + // Note: YES means kIPv4Disabled is OFF + + __block BOOL result = NO; + + dispatch_block_t block = ^{ + + result = ((self->config & kIPv4Disabled) == 0); + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (void)setIPv4Enabled:(BOOL)flag +{ + // Note: YES means kIPv4Disabled is OFF + + dispatch_block_t block = ^{ + + LogVerbose(@"%@ %@", THIS_METHOD, (flag ? @"YES" : @"NO")); + + if (flag) + self->config &= ~kIPv4Disabled; + else + self->config |= kIPv4Disabled; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (BOOL)isIPv6Enabled +{ + // Note: YES means kIPv6Disabled is OFF + + __block BOOL result = NO; + + dispatch_block_t block = ^{ + + result = ((self->config & kIPv6Disabled) == 0); + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (void)setIPv6Enabled:(BOOL)flag +{ + // Note: YES means kIPv6Disabled is OFF + + dispatch_block_t block = ^{ + + LogVerbose(@"%@ %@", THIS_METHOD, (flag ? @"YES" : @"NO")); + + if (flag) + self->config &= ~kIPv6Disabled; + else + self->config |= kIPv6Disabled; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (BOOL)isIPv4Preferred +{ + __block BOOL result = NO; + + dispatch_block_t block = ^{ + result = (self->config & kPreferIPv4) ? YES : NO; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (BOOL)isIPv6Preferred +{ + __block BOOL result = NO; + + dispatch_block_t block = ^{ + result = (self->config & kPreferIPv6) ? YES : NO; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (BOOL)isIPVersionNeutral +{ + __block BOOL result = NO; + + dispatch_block_t block = ^{ + result = (self->config & (kPreferIPv4 | kPreferIPv6)) == 0; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (void)setPreferIPv4 +{ + dispatch_block_t block = ^{ + + LogTrace(); + + self->config |= kPreferIPv4; + self->config &= ~kPreferIPv6; + + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (void)setPreferIPv6 +{ + dispatch_block_t block = ^{ + + LogTrace(); + + self->config &= ~kPreferIPv4; + self->config |= kPreferIPv6; + + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (void)setIPVersionNeutral +{ + dispatch_block_t block = ^{ + + LogTrace(); + + self->config &= ~kPreferIPv4; + self->config &= ~kPreferIPv6; + + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (uint16_t)maxReceiveIPv4BufferSize +{ + __block uint16_t result = 0; + + dispatch_block_t block = ^{ + + result = self->max4ReceiveSize; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (void)setMaxReceiveIPv4BufferSize:(uint16_t)max +{ + dispatch_block_t block = ^{ + + LogVerbose(@"%@ %u", THIS_METHOD, (unsigned)max); + + self->max4ReceiveSize = max; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (uint32_t)maxReceiveIPv6BufferSize +{ + __block uint32_t result = 0; + + dispatch_block_t block = ^{ + + result = self->max6ReceiveSize; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (void)setMaxReceiveIPv6BufferSize:(uint32_t)max +{ + dispatch_block_t block = ^{ + + LogVerbose(@"%@ %u", THIS_METHOD, (unsigned)max); + + self->max6ReceiveSize = max; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (void)setMaxSendBufferSize:(uint16_t)max +{ + dispatch_block_t block = ^{ + + LogVerbose(@"%@ %u", THIS_METHOD, (unsigned)max); + + self->maxSendSize = max; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (uint16_t)maxSendBufferSize +{ + __block uint16_t result = 0; + + dispatch_block_t block = ^{ + + result = self->maxSendSize; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (id)userData +{ + __block id result = nil; + + dispatch_block_t block = ^{ + + result = self->userData; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (void)setUserData:(id)arbitraryUserData +{ + dispatch_block_t block = ^{ + + if (self->userData != arbitraryUserData) + { + self->userData = arbitraryUserData; + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Delegate Helpers +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (void)notifyDidConnectToAddress:(NSData *)anAddress +{ + LogTrace(); + + __strong id theDelegate = delegate; + if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocket:didConnectToAddress:)]) + { + NSData *address = [anAddress copy]; // In case param is NSMutableData + + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate udpSocket:self didConnectToAddress:address]; + }}); + } +} + +- (void)notifyDidNotConnect:(NSError *)error +{ + LogTrace(); + + __strong id theDelegate = delegate; + if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocket:didNotConnect:)]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate udpSocket:self didNotConnect:error]; + }}); + } +} + +- (void)notifyDidSendDataWithTag:(long)tag +{ + LogTrace(); + + __strong id theDelegate = delegate; + if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocket:didSendDataWithTag:)]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate udpSocket:self didSendDataWithTag:tag]; + }}); + } +} + +- (void)notifyDidNotSendDataWithTag:(long)tag dueToError:(NSError *)error +{ + LogTrace(); + + __strong id theDelegate = delegate; + if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocket:didNotSendDataWithTag:dueToError:)]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate udpSocket:self didNotSendDataWithTag:tag dueToError:error]; + }}); + } +} + +- (void)notifyDidReceiveData:(NSData *)data fromAddress:(NSData *)address withFilterContext:(id)context +{ + LogTrace(); + + SEL selector = @selector(udpSocket:didReceiveData:fromAddress:withFilterContext:); + + __strong id theDelegate = delegate; + if (delegateQueue && [theDelegate respondsToSelector:selector]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate udpSocket:self didReceiveData:data fromAddress:address withFilterContext:context]; + }}); + } +} + +- (void)notifyDidCloseWithError:(NSError *)error +{ + LogTrace(); + + __strong id theDelegate = delegate; + if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocketDidClose:withError:)]) + { + dispatch_async(delegateQueue, ^{ @autoreleasepool { + + [theDelegate udpSocketDidClose:self withError:error]; + }}); + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Errors +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (NSError *)badConfigError:(NSString *)errMsg +{ + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncUdpSocketErrorDomain + code:MGCDAsyncUdpSocketBadConfigError + userInfo:userInfo]; +} + +- (NSError *)badParamError:(NSString *)errMsg +{ + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncUdpSocketErrorDomain + code:MGCDAsyncUdpSocketBadParamError + userInfo:userInfo]; +} + +- (NSError *)gaiError:(int)gai_error +{ + NSString *errMsg = [NSString stringWithCString:gai_strerror(gai_error) encoding:NSASCIIStringEncoding]; + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:@"kCFStreamErrorDomainNetDB" code:gai_error userInfo:userInfo]; +} + +- (NSError *)errnoErrorWithReason:(NSString *)reason +{ + NSString *errMsg = [NSString stringWithUTF8String:strerror(errno)]; + NSDictionary *userInfo; + + if (reason) + userInfo = @{NSLocalizedDescriptionKey : errMsg, + NSLocalizedFailureReasonErrorKey : reason}; + else + userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:NSPOSIXErrorDomain code:errno userInfo:userInfo]; +} + +- (NSError *)errnoError +{ + return [self errnoErrorWithReason:nil]; +} + +/** + * Returns a standard send timeout error. +**/ +- (NSError *)sendTimeoutError +{ + NSString *errMsg = NSLocalizedStringWithDefaultValue(@"MGCDAsyncUdpSocketSendTimeoutError", + @"MGCDAsyncUdpSocket", [NSBundle mainBundle], + @"Send operation timed out", nil); + + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncUdpSocketErrorDomain + code:MGCDAsyncUdpSocketSendTimeoutError + userInfo:userInfo]; +} + +- (NSError *)socketClosedError +{ + NSString *errMsg = NSLocalizedStringWithDefaultValue(@"MGCDAsyncUdpSocketClosedError", + @"MGCDAsyncUdpSocket", [NSBundle mainBundle], + @"Socket closed", nil); + + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncUdpSocketErrorDomain code:MGCDAsyncUdpSocketClosedError userInfo:userInfo]; +} + +- (NSError *)otherError:(NSString *)errMsg +{ + NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; + + return [NSError errorWithDomain:MGCDAsyncUdpSocketErrorDomain + code:MGCDAsyncUdpSocketOtherError + userInfo:userInfo]; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Utilities +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (BOOL)preOp:(NSError **)errPtr +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + if (delegate == nil) // Must have delegate set + { + if (errPtr) + { + NSString *msg = @"Attempting to use socket without a delegate. Set a delegate first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + if (delegateQueue == NULL) // Must have delegate queue set + { + if (errPtr) + { + NSString *msg = @"Attempting to use socket without a delegate queue. Set a delegate queue first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + return YES; +} + +/** + * This method executes on a global concurrent queue. + * When complete, it executes the given completion block on the socketQueue. +**/ +- (void)asyncResolveHost:(NSString *)aHost + port:(uint16_t)port + withCompletionBlock:(void (^)(NSArray *addresses, NSError *error))completionBlock +{ + LogTrace(); + + // Check parameter(s) + + if (aHost == nil) + { + NSString *msg = @"The host param is nil. Should be domain name or IP address string."; + NSError *error = [self badParamError:msg]; + + // We should still use dispatch_async since this method is expected to be asynchronous + + dispatch_async(socketQueue, ^{ @autoreleasepool { + + completionBlock(nil, error); + }}); + + return; + } + + // It's possible that the given aHost parameter is actually a NSMutableString. + // So we want to copy it now, within this block that will be executed synchronously. + // This way the asynchronous lookup block below doesn't have to worry about it changing. + + NSString *host = [aHost copy]; + + + dispatch_queue_t globalConcurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); + dispatch_async(globalConcurrentQueue, ^{ @autoreleasepool { + + NSMutableArray *addresses = [NSMutableArray arrayWithCapacity:2]; + NSError *error = nil; + + if ([host isEqualToString:@"localhost"] || [host isEqualToString:@"loopback"]) + { + // Use LOOPBACK address + struct sockaddr_in sockaddr4; + memset(&sockaddr4, 0, sizeof(sockaddr4)); + + sockaddr4.sin_len = sizeof(struct sockaddr_in); + sockaddr4.sin_family = AF_INET; + sockaddr4.sin_port = htons(port); + sockaddr4.sin_addr.s_addr = htonl(INADDR_LOOPBACK); + + struct sockaddr_in6 sockaddr6; + memset(&sockaddr6, 0, sizeof(sockaddr6)); + + sockaddr6.sin6_len = sizeof(struct sockaddr_in6); + sockaddr6.sin6_family = AF_INET6; + sockaddr6.sin6_port = htons(port); + sockaddr6.sin6_addr = in6addr_loopback; + + // Wrap the native address structures and add to list + [addresses addObject:[NSData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]]; + [addresses addObject:[NSData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]]; + } + else + { + NSString *portStr = [NSString stringWithFormat:@"%hu", port]; + + struct addrinfo hints, *res, *res0; + + memset(&hints, 0, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_socktype = SOCK_DGRAM; + hints.ai_protocol = IPPROTO_UDP; + + int gai_error = getaddrinfo([host UTF8String], [portStr UTF8String], &hints, &res0); + + if (gai_error) + { + error = [self gaiError:gai_error]; + } + else + { + for(res = res0; res; res = res->ai_next) + { + if (res->ai_family == AF_INET) + { + // Found IPv4 address + // Wrap the native address structure and add to list + + [addresses addObject:[NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]]; + } + else if (res->ai_family == AF_INET6) + { + + // Fixes connection issues with IPv6, it is the same solution for udp socket. + // https://github.com/robbiehanson/CocoaAsyncSocket/issues/429#issuecomment-222477158 + struct sockaddr_in6 *sockaddr = (struct sockaddr_in6 *)(void *)res->ai_addr; + in_port_t *portPtr = &sockaddr->sin6_port; + if ((portPtr != NULL) && (*portPtr == 0)) { + *portPtr = htons(port); + } + + // Found IPv6 address + // Wrap the native address structure and add to list + [addresses addObject:[NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]]; + } + } + freeaddrinfo(res0); + + if ([addresses count] == 0) + { + error = [self gaiError:EAI_FAIL]; + } + } + } + + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + completionBlock(addresses, error); + }}); + + }}); +} + +/** + * This method picks an address from the given list of addresses. + * The address picked depends upon which protocols are disabled, deactived, & preferred. + * + * Returns the address family (AF_INET or AF_INET6) of the picked address, + * or AF_UNSPEC and the corresponding error is there's a problem. +**/ +- (int)getAddress:(NSData **)addressPtr error:(NSError **)errorPtr fromAddresses:(NSArray *)addresses +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert([addresses count] > 0, @"Expected at least one address"); + + int resultAF = AF_UNSPEC; + NSData *resultAddress = nil; + NSError *resultError = nil; + + // Check for problems + + BOOL resolvedIPv4Address = NO; + BOOL resolvedIPv6Address = NO; + + for (NSData *address in addresses) + { + switch ([[self class] familyFromAddress:address]) + { + case AF_INET : resolvedIPv4Address = YES; break; + case AF_INET6 : resolvedIPv6Address = YES; break; + + default : NSAssert(NO, @"Addresses array contains invalid address"); + } + } + + BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; + BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; + + if (isIPv4Disabled && !resolvedIPv6Address) + { + NSString *msg = @"IPv4 has been disabled and DNS lookup found no IPv6 address(es)."; + resultError = [self otherError:msg]; + + if (addressPtr) *addressPtr = resultAddress; + if (errorPtr) *errorPtr = resultError; + + return resultAF; + } + + if (isIPv6Disabled && !resolvedIPv4Address) + { + NSString *msg = @"IPv6 has been disabled and DNS lookup found no IPv4 address(es)."; + resultError = [self otherError:msg]; + + if (addressPtr) *addressPtr = resultAddress; + if (errorPtr) *errorPtr = resultError; + + return resultAF; + } + + BOOL isIPv4Deactivated = (flags & kIPv4Deactivated) ? YES : NO; + BOOL isIPv6Deactivated = (flags & kIPv6Deactivated) ? YES : NO; + + if (isIPv4Deactivated && !resolvedIPv6Address) + { + NSString *msg = @"IPv4 has been deactivated due to bind/connect, and DNS lookup found no IPv6 address(es)."; + resultError = [self otherError:msg]; + + if (addressPtr) *addressPtr = resultAddress; + if (errorPtr) *errorPtr = resultError; + + return resultAF; + } + + if (isIPv6Deactivated && !resolvedIPv4Address) + { + NSString *msg = @"IPv6 has been deactivated due to bind/connect, and DNS lookup found no IPv4 address(es)."; + resultError = [self otherError:msg]; + + if (addressPtr) *addressPtr = resultAddress; + if (errorPtr) *errorPtr = resultError; + + return resultAF; + } + + // Extract first IPv4 and IPv6 address in list + + BOOL ipv4WasFirstInList = YES; + NSData *address4 = nil; + NSData *address6 = nil; + + for (NSData *address in addresses) + { + int af = [[self class] familyFromAddress:address]; + + if (af == AF_INET) + { + if (address4 == nil) + { + address4 = address; + + if (address6) + break; + else + ipv4WasFirstInList = YES; + } + } + else // af == AF_INET6 + { + if (address6 == nil) + { + address6 = address; + + if (address4) + break; + else + ipv4WasFirstInList = NO; + } + } + } + + // Determine socket type + + BOOL preferIPv4 = (config & kPreferIPv4) ? YES : NO; + BOOL preferIPv6 = (config & kPreferIPv6) ? YES : NO; + + BOOL useIPv4 = ((preferIPv4 && address4) || (address6 == nil)); + BOOL useIPv6 = ((preferIPv6 && address6) || (address4 == nil)); + + NSAssert(!(preferIPv4 && preferIPv6), @"Invalid config state"); + NSAssert(!(useIPv4 && useIPv6), @"Invalid logic"); + + if (useIPv4 || (!useIPv6 && ipv4WasFirstInList)) + { + resultAF = AF_INET; + resultAddress = address4; + } + else + { + resultAF = AF_INET6; + resultAddress = address6; + } + + if (addressPtr) *addressPtr = resultAddress; + if (errorPtr) *errorPtr = resultError; + + return resultAF; +} + +/** + * Finds the address(es) of an interface description. + * An inteface description may be an interface name (en0, en1, lo0) or corresponding IP (192.168.4.34). +**/ +- (void)convertIntefaceDescription:(NSString *)interfaceDescription + port:(uint16_t)port + intoAddress4:(NSData **)interfaceAddr4Ptr + address6:(NSData **)interfaceAddr6Ptr +{ + NSData *addr4 = nil; + NSData *addr6 = nil; + + if (interfaceDescription == nil) + { + // ANY address + + struct sockaddr_in sockaddr4; + memset(&sockaddr4, 0, sizeof(sockaddr4)); + + sockaddr4.sin_len = sizeof(sockaddr4); + sockaddr4.sin_family = AF_INET; + sockaddr4.sin_port = htons(port); + sockaddr4.sin_addr.s_addr = htonl(INADDR_ANY); + + struct sockaddr_in6 sockaddr6; + memset(&sockaddr6, 0, sizeof(sockaddr6)); + + sockaddr6.sin6_len = sizeof(sockaddr6); + sockaddr6.sin6_family = AF_INET6; + sockaddr6.sin6_port = htons(port); + sockaddr6.sin6_addr = in6addr_any; + + addr4 = [NSData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]; + addr6 = [NSData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]; + } + else if ([interfaceDescription isEqualToString:@"localhost"] || + [interfaceDescription isEqualToString:@"loopback"]) + { + // LOOPBACK address + + struct sockaddr_in sockaddr4; + memset(&sockaddr4, 0, sizeof(sockaddr4)); + + sockaddr4.sin_len = sizeof(struct sockaddr_in); + sockaddr4.sin_family = AF_INET; + sockaddr4.sin_port = htons(port); + sockaddr4.sin_addr.s_addr = htonl(INADDR_LOOPBACK); + + struct sockaddr_in6 sockaddr6; + memset(&sockaddr6, 0, sizeof(sockaddr6)); + + sockaddr6.sin6_len = sizeof(struct sockaddr_in6); + sockaddr6.sin6_family = AF_INET6; + sockaddr6.sin6_port = htons(port); + sockaddr6.sin6_addr = in6addr_loopback; + + addr4 = [NSData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]; + addr6 = [NSData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]; + } + else + { + const char *iface = [interfaceDescription UTF8String]; + + struct ifaddrs *addrs; + const struct ifaddrs *cursor; + + if ((getifaddrs(&addrs) == 0)) + { + cursor = addrs; + while (cursor != NULL) + { + if ((addr4 == nil) && (cursor->ifa_addr->sa_family == AF_INET)) + { + // IPv4 + + struct sockaddr_in *addr = (struct sockaddr_in *)(void *)cursor->ifa_addr; + + if (strcmp(cursor->ifa_name, iface) == 0) + { + // Name match + + struct sockaddr_in nativeAddr4 = *addr; + nativeAddr4.sin_port = htons(port); + + addr4 = [NSData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; + } + else + { + char ip[INET_ADDRSTRLEN]; + + const char *conversion; + conversion = inet_ntop(AF_INET, &addr->sin_addr, ip, sizeof(ip)); + + if ((conversion != NULL) && (strcmp(ip, iface) == 0)) + { + // IP match + + struct sockaddr_in nativeAddr4 = *addr; + nativeAddr4.sin_port = htons(port); + + addr4 = [NSData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; + } + } + } + else if ((addr6 == nil) && (cursor->ifa_addr->sa_family == AF_INET6)) + { + // IPv6 + + const struct sockaddr_in6 *addr = (const struct sockaddr_in6 *)(const void *)cursor->ifa_addr; + + if (strcmp(cursor->ifa_name, iface) == 0) + { + // Name match + + struct sockaddr_in6 nativeAddr6 = *addr; + nativeAddr6.sin6_port = htons(port); + + addr6 = [NSData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; + } + else + { + char ip[INET6_ADDRSTRLEN]; + + const char *conversion; + conversion = inet_ntop(AF_INET6, &addr->sin6_addr, ip, sizeof(ip)); + + if ((conversion != NULL) && (strcmp(ip, iface) == 0)) + { + // IP match + + struct sockaddr_in6 nativeAddr6 = *addr; + nativeAddr6.sin6_port = htons(port); + + addr6 = [NSData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; + } + } + } + + cursor = cursor->ifa_next; + } + + freeifaddrs(addrs); + } + } + + if (interfaceAddr4Ptr) *interfaceAddr4Ptr = addr4; + if (interfaceAddr6Ptr) *interfaceAddr6Ptr = addr6; +} + +/** + * Converts a numeric hostname into its corresponding address. + * The hostname is expected to be an IPv4 or IPv6 address represented as a human-readable string. (e.g. 192.168.4.34) +**/ +- (void)convertNumericHost:(NSString *)numericHost + port:(uint16_t)port + intoAddress4:(NSData **)addr4Ptr + address6:(NSData **)addr6Ptr +{ + NSData *addr4 = nil; + NSData *addr6 = nil; + + if (numericHost) + { + NSString *portStr = [NSString stringWithFormat:@"%hu", port]; + + struct addrinfo hints, *res, *res0; + + memset(&hints, 0, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_socktype = SOCK_DGRAM; + hints.ai_protocol = IPPROTO_UDP; + hints.ai_flags = AI_NUMERICHOST; // No name resolution should be attempted + + if (getaddrinfo([numericHost UTF8String], [portStr UTF8String], &hints, &res0) == 0) + { + for (res = res0; res; res = res->ai_next) + { + if ((addr4 == nil) && (res->ai_family == AF_INET)) + { + // Found IPv4 address + // Wrap the native address structure + addr4 = [NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]; + } + else if ((addr6 == nil) && (res->ai_family == AF_INET6)) + { + // Found IPv6 address + // Wrap the native address structure + addr6 = [NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]; + } + } + freeaddrinfo(res0); + } + } + + if (addr4Ptr) *addr4Ptr = addr4; + if (addr6Ptr) *addr6Ptr = addr6; +} + +- (BOOL)isConnectedToAddress4:(NSData *)someAddr4 +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert(flags & kDidConnect, @"Not connected"); + NSAssert(cachedConnectedAddress, @"Expected cached connected address"); + + if (cachedConnectedFamily != AF_INET) + { + return NO; + } + + const struct sockaddr_in *sSockaddr4 = (const struct sockaddr_in *)[someAddr4 bytes]; + const struct sockaddr_in *cSockaddr4 = (const struct sockaddr_in *)[cachedConnectedAddress bytes]; + + if (memcmp(&sSockaddr4->sin_addr, &cSockaddr4->sin_addr, sizeof(struct in_addr)) != 0) + { + return NO; + } + if (memcmp(&sSockaddr4->sin_port, &cSockaddr4->sin_port, sizeof(in_port_t)) != 0) + { + return NO; + } + + return YES; +} + +- (BOOL)isConnectedToAddress6:(NSData *)someAddr6 +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert(flags & kDidConnect, @"Not connected"); + NSAssert(cachedConnectedAddress, @"Expected cached connected address"); + + if (cachedConnectedFamily != AF_INET6) + { + return NO; + } + + const struct sockaddr_in6 *sSockaddr6 = (const struct sockaddr_in6 *)[someAddr6 bytes]; + const struct sockaddr_in6 *cSockaddr6 = (const struct sockaddr_in6 *)[cachedConnectedAddress bytes]; + + if (memcmp(&sSockaddr6->sin6_addr, &cSockaddr6->sin6_addr, sizeof(struct in6_addr)) != 0) + { + return NO; + } + if (memcmp(&sSockaddr6->sin6_port, &cSockaddr6->sin6_port, sizeof(in_port_t)) != 0) + { + return NO; + } + + return YES; +} + +- (unsigned int)indexOfInterfaceAddr4:(NSData *)interfaceAddr4 +{ + if (interfaceAddr4 == nil) + return 0; + if ([interfaceAddr4 length] != sizeof(struct sockaddr_in)) + return 0; + + int result = 0; + const struct sockaddr_in *ifaceAddr = (const struct sockaddr_in *)[interfaceAddr4 bytes]; + + struct ifaddrs *addrs; + const struct ifaddrs *cursor; + + if ((getifaddrs(&addrs) == 0)) + { + cursor = addrs; + while (cursor != NULL) + { + if (cursor->ifa_addr->sa_family == AF_INET) + { + // IPv4 + + const struct sockaddr_in *addr = (const struct sockaddr_in *)(const void *)cursor->ifa_addr; + + if (memcmp(&addr->sin_addr, &ifaceAddr->sin_addr, sizeof(struct in_addr)) == 0) + { + result = if_nametoindex(cursor->ifa_name); + break; + } + } + + cursor = cursor->ifa_next; + } + + freeifaddrs(addrs); + } + + return result; +} + +- (unsigned int)indexOfInterfaceAddr6:(NSData *)interfaceAddr6 +{ + if (interfaceAddr6 == nil) + return 0; + if ([interfaceAddr6 length] != sizeof(struct sockaddr_in6)) + return 0; + + int result = 0; + const struct sockaddr_in6 *ifaceAddr = (const struct sockaddr_in6 *)[interfaceAddr6 bytes]; + + struct ifaddrs *addrs; + const struct ifaddrs *cursor; + + if ((getifaddrs(&addrs) == 0)) + { + cursor = addrs; + while (cursor != NULL) + { + if (cursor->ifa_addr->sa_family == AF_INET6) + { + // IPv6 + + const struct sockaddr_in6 *addr = (const struct sockaddr_in6 *)(const void *)cursor->ifa_addr; + + if (memcmp(&addr->sin6_addr, &ifaceAddr->sin6_addr, sizeof(struct in6_addr)) == 0) + { + result = if_nametoindex(cursor->ifa_name); + break; + } + } + + cursor = cursor->ifa_next; + } + + freeifaddrs(addrs); + } + + return result; +} + +- (void)setupSendAndReceiveSourcesForSocket4 +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + send4Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_WRITE, socket4FD, 0, socketQueue); + receive4Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, socket4FD, 0, socketQueue); + + // Setup event handlers + + dispatch_source_set_event_handler(send4Source, ^{ @autoreleasepool { + + LogVerbose(@"send4EventBlock"); + LogVerbose(@"dispatch_source_get_data(send4Source) = %lu", dispatch_source_get_data(send4Source)); + + self->flags |= kSock4CanAcceptBytes; + + // If we're ready to send data, do so immediately. + // Otherwise pause the send source or it will continue to fire over and over again. + + if (self->currentSend == nil) + { + LogVerbose(@"Nothing to send"); + [self suspendSend4Source]; + } + else if (self->currentSend->resolveInProgress) + { + LogVerbose(@"currentSend - waiting for address resolve"); + [self suspendSend4Source]; + } + else if (self->currentSend->filterInProgress) + { + LogVerbose(@"currentSend - waiting on sendFilter"); + [self suspendSend4Source]; + } + else + { + [self doSend]; + } + + }}); + + dispatch_source_set_event_handler(receive4Source, ^{ @autoreleasepool { + + LogVerbose(@"receive4EventBlock"); + + self->socket4FDBytesAvailable = dispatch_source_get_data(self->receive4Source); + LogVerbose(@"socket4FDBytesAvailable: %lu", socket4FDBytesAvailable); + + if (self->socket4FDBytesAvailable > 0) + [self doReceive]; + else + [self doReceiveEOF]; + + }}); + + // Setup cancel handlers + + __block int socketFDRefCount = 2; + + int theSocketFD = socket4FD; + + #if !OS_OBJECT_USE_OBJC + dispatch_source_t theSendSource = send4Source; + dispatch_source_t theReceiveSource = receive4Source; + #endif + + dispatch_source_set_cancel_handler(send4Source, ^{ + + LogVerbose(@"send4CancelBlock"); + + #if !OS_OBJECT_USE_OBJC + LogVerbose(@"dispatch_release(send4Source)"); + dispatch_release(theSendSource); + #endif + + if (--socketFDRefCount == 0) + { + LogVerbose(@"close(socket4FD)"); + close(theSocketFD); + } + }); + + dispatch_source_set_cancel_handler(receive4Source, ^{ + + LogVerbose(@"receive4CancelBlock"); + + #if !OS_OBJECT_USE_OBJC + LogVerbose(@"dispatch_release(receive4Source)"); + dispatch_release(theReceiveSource); + #endif + + if (--socketFDRefCount == 0) + { + LogVerbose(@"close(socket4FD)"); + close(theSocketFD); + } + }); + + // We will not be able to receive until the socket is bound to a port, + // either explicitly via bind, or implicitly by connect or by sending data. + // + // But we should be able to send immediately. + + socket4FDBytesAvailable = 0; + flags |= kSock4CanAcceptBytes; + + flags |= kSend4SourceSuspended; + flags |= kReceive4SourceSuspended; +} + +- (void)setupSendAndReceiveSourcesForSocket6 +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + send6Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_WRITE, socket6FD, 0, socketQueue); + receive6Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, socket6FD, 0, socketQueue); + + // Setup event handlers + + dispatch_source_set_event_handler(send6Source, ^{ @autoreleasepool { + + LogVerbose(@"send6EventBlock"); + LogVerbose(@"dispatch_source_get_data(send6Source) = %lu", dispatch_source_get_data(send6Source)); + + self->flags |= kSock6CanAcceptBytes; + + // If we're ready to send data, do so immediately. + // Otherwise pause the send source or it will continue to fire over and over again. + + if (self->currentSend == nil) + { + LogVerbose(@"Nothing to send"); + [self suspendSend6Source]; + } + else if (self->currentSend->resolveInProgress) + { + LogVerbose(@"currentSend - waiting for address resolve"); + [self suspendSend6Source]; + } + else if (self->currentSend->filterInProgress) + { + LogVerbose(@"currentSend - waiting on sendFilter"); + [self suspendSend6Source]; + } + else + { + [self doSend]; + } + + }}); + + dispatch_source_set_event_handler(receive6Source, ^{ @autoreleasepool { + + LogVerbose(@"receive6EventBlock"); + + self->socket6FDBytesAvailable = dispatch_source_get_data(self->receive6Source); + LogVerbose(@"socket6FDBytesAvailable: %lu", socket6FDBytesAvailable); + + if (self->socket6FDBytesAvailable > 0) + [self doReceive]; + else + [self doReceiveEOF]; + + }}); + + // Setup cancel handlers + + __block int socketFDRefCount = 2; + + int theSocketFD = socket6FD; + + #if !OS_OBJECT_USE_OBJC + dispatch_source_t theSendSource = send6Source; + dispatch_source_t theReceiveSource = receive6Source; + #endif + + dispatch_source_set_cancel_handler(send6Source, ^{ + + LogVerbose(@"send6CancelBlock"); + + #if !OS_OBJECT_USE_OBJC + LogVerbose(@"dispatch_release(send6Source)"); + dispatch_release(theSendSource); + #endif + + if (--socketFDRefCount == 0) + { + LogVerbose(@"close(socket6FD)"); + close(theSocketFD); + } + }); + + dispatch_source_set_cancel_handler(receive6Source, ^{ + + LogVerbose(@"receive6CancelBlock"); + + #if !OS_OBJECT_USE_OBJC + LogVerbose(@"dispatch_release(receive6Source)"); + dispatch_release(theReceiveSource); + #endif + + if (--socketFDRefCount == 0) + { + LogVerbose(@"close(socket6FD)"); + close(theSocketFD); + } + }); + + // We will not be able to receive until the socket is bound to a port, + // either explicitly via bind, or implicitly by connect or by sending data. + // + // But we should be able to send immediately. + + socket6FDBytesAvailable = 0; + flags |= kSock6CanAcceptBytes; + + flags |= kSend6SourceSuspended; + flags |= kReceive6SourceSuspended; +} + +- (BOOL)createSocket4:(BOOL)useIPv4 socket6:(BOOL)useIPv6 error:(NSError * __autoreleasing *)errPtr +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert(((flags & kDidCreateSockets) == 0), @"Sockets have already been created"); + + // CreateSocket Block + // This block will be invoked below. + + int(^createSocket)(int) = ^int (int domain) { + + int socketFD = socket(domain, SOCK_DGRAM, 0); + + if (socketFD == SOCKET_NULL) + { + if (errPtr) + *errPtr = [self errnoErrorWithReason:@"Error in socket() function"]; + + return SOCKET_NULL; + } + + int status; + + // Set socket options + + status = fcntl(socketFD, F_SETFL, O_NONBLOCK); + if (status == -1) + { + if (errPtr) + *errPtr = [self errnoErrorWithReason:@"Error enabling non-blocking IO on socket (fcntl)"]; + + close(socketFD); + return SOCKET_NULL; + } + + int reuseaddr = 1; + status = setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseaddr, sizeof(reuseaddr)); + if (status == -1) + { + if (errPtr) + *errPtr = [self errnoErrorWithReason:@"Error enabling address reuse (setsockopt)"]; + + close(socketFD); + return SOCKET_NULL; + } + + int nosigpipe = 1; + status = setsockopt(socketFD, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe)); + if (status == -1) + { + if (errPtr) + *errPtr = [self errnoErrorWithReason:@"Error disabling sigpipe (setsockopt)"]; + + close(socketFD); + return SOCKET_NULL; + } + + /** + * The theoretical maximum size of any IPv4 UDP packet is UINT16_MAX = 65535. + * The theoretical maximum size of any IPv6 UDP packet is UINT32_MAX = 4294967295. + * + * The default maximum size of the UDP buffer in iOS is 9216 bytes. + * + * This is the reason of #222(MGCD does not necessarily return the size of an entire UDP packet) and + * #535(MGCDAsyncUDPSocket can not send data when data is greater than 9K) + * + * + * Enlarge the maximum size of UDP packet. + * I can not ensure the protocol type now so that the max size is set to 65535 :) + **/ + + status = setsockopt(socketFD, SOL_SOCKET, SO_SNDBUF, (const char*)&self->maxSendSize, sizeof(int)); + if (status == -1) + { + if (errPtr) + *errPtr = [self errnoErrorWithReason:@"Error setting send buffer size (setsockopt)"]; + close(socketFD); + return SOCKET_NULL; + } + + status = setsockopt(socketFD, SOL_SOCKET, SO_RCVBUF, (const char*)&self->maxSendSize, sizeof(int)); + if (status == -1) + { + if (errPtr) + *errPtr = [self errnoErrorWithReason:@"Error setting receive buffer size (setsockopt)"]; + close(socketFD); + return SOCKET_NULL; + } + + + return socketFD; + }; + + // Create sockets depending upon given configuration. + + if (useIPv4) + { + LogVerbose(@"Creating IPv4 socket"); + + socket4FD = createSocket(AF_INET); + if (socket4FD == SOCKET_NULL) + { + // errPtr set in local createSocket() block + return NO; + } + } + + if (useIPv6) + { + LogVerbose(@"Creating IPv6 socket"); + + socket6FD = createSocket(AF_INET6); + if (socket6FD == SOCKET_NULL) + { + // errPtr set in local createSocket() block + + if (socket4FD != SOCKET_NULL) + { + close(socket4FD); + socket4FD = SOCKET_NULL; + } + + return NO; + } + } + + // Setup send and receive sources + + if (useIPv4) + [self setupSendAndReceiveSourcesForSocket4]; + if (useIPv6) + [self setupSendAndReceiveSourcesForSocket6]; + + flags |= kDidCreateSockets; + return YES; +} + +- (BOOL)createSockets:(NSError **)errPtr +{ + LogTrace(); + + BOOL useIPv4 = [self isIPv4Enabled]; + BOOL useIPv6 = [self isIPv6Enabled]; + + return [self createSocket4:useIPv4 socket6:useIPv6 error:errPtr]; +} + +- (void)suspendSend4Source +{ + if (send4Source && !(flags & kSend4SourceSuspended)) + { + LogVerbose(@"dispatch_suspend(send4Source)"); + + dispatch_suspend(send4Source); + flags |= kSend4SourceSuspended; + } +} + +- (void)suspendSend6Source +{ + if (send6Source && !(flags & kSend6SourceSuspended)) + { + LogVerbose(@"dispatch_suspend(send6Source)"); + + dispatch_suspend(send6Source); + flags |= kSend6SourceSuspended; + } +} + +- (void)resumeSend4Source +{ + if (send4Source && (flags & kSend4SourceSuspended)) + { + LogVerbose(@"dispatch_resume(send4Source)"); + + dispatch_resume(send4Source); + flags &= ~kSend4SourceSuspended; + } +} + +- (void)resumeSend6Source +{ + if (send6Source && (flags & kSend6SourceSuspended)) + { + LogVerbose(@"dispatch_resume(send6Source)"); + + dispatch_resume(send6Source); + flags &= ~kSend6SourceSuspended; + } +} + +- (void)suspendReceive4Source +{ + if (receive4Source && !(flags & kReceive4SourceSuspended)) + { + LogVerbose(@"dispatch_suspend(receive4Source)"); + + dispatch_suspend(receive4Source); + flags |= kReceive4SourceSuspended; + } +} + +- (void)suspendReceive6Source +{ + if (receive6Source && !(flags & kReceive6SourceSuspended)) + { + LogVerbose(@"dispatch_suspend(receive6Source)"); + + dispatch_suspend(receive6Source); + flags |= kReceive6SourceSuspended; + } +} + +- (void)resumeReceive4Source +{ + if (receive4Source && (flags & kReceive4SourceSuspended)) + { + LogVerbose(@"dispatch_resume(receive4Source)"); + + dispatch_resume(receive4Source); + flags &= ~kReceive4SourceSuspended; + } +} + +- (void)resumeReceive6Source +{ + if (receive6Source && (flags & kReceive6SourceSuspended)) + { + LogVerbose(@"dispatch_resume(receive6Source)"); + + dispatch_resume(receive6Source); + flags &= ~kReceive6SourceSuspended; + } +} + +- (void)closeSocket4 +{ + if (socket4FD != SOCKET_NULL) + { + LogVerbose(@"dispatch_source_cancel(send4Source)"); + dispatch_source_cancel(send4Source); + + LogVerbose(@"dispatch_source_cancel(receive4Source)"); + dispatch_source_cancel(receive4Source); + + // For some crazy reason (in my opinion), cancelling a dispatch source doesn't + // invoke the cancel handler if the dispatch source is paused. + // So we have to unpause the source if needed. + // This allows the cancel handler to be run, which in turn releases the source and closes the socket. + + [self resumeSend4Source]; + [self resumeReceive4Source]; + + // The sockets will be closed by the cancel handlers of the corresponding source + + send4Source = NULL; + receive4Source = NULL; + + socket4FD = SOCKET_NULL; + + // Clear socket states + + socket4FDBytesAvailable = 0; + flags &= ~kSock4CanAcceptBytes; + + // Clear cached info + + cachedLocalAddress4 = nil; + cachedLocalHost4 = nil; + cachedLocalPort4 = 0; + } +} + +- (void)closeSocket6 +{ + if (socket6FD != SOCKET_NULL) + { + LogVerbose(@"dispatch_source_cancel(send6Source)"); + dispatch_source_cancel(send6Source); + + LogVerbose(@"dispatch_source_cancel(receive6Source)"); + dispatch_source_cancel(receive6Source); + + // For some crazy reason (in my opinion), cancelling a dispatch source doesn't + // invoke the cancel handler if the dispatch source is paused. + // So we have to unpause the source if needed. + // This allows the cancel handler to be run, which in turn releases the source and closes the socket. + + [self resumeSend6Source]; + [self resumeReceive6Source]; + + send6Source = NULL; + receive6Source = NULL; + + // The sockets will be closed by the cancel handlers of the corresponding source + + socket6FD = SOCKET_NULL; + + // Clear socket states + + socket6FDBytesAvailable = 0; + flags &= ~kSock6CanAcceptBytes; + + // Clear cached info + + cachedLocalAddress6 = nil; + cachedLocalHost6 = nil; + cachedLocalPort6 = 0; + } +} + +- (void)closeSockets +{ + [self closeSocket4]; + [self closeSocket6]; + + flags &= ~kDidCreateSockets; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Diagnostics +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (BOOL)getLocalAddress:(NSData **)dataPtr + host:(NSString **)hostPtr + port:(uint16_t *)portPtr + forSocket:(int)socketFD + withFamily:(int)socketFamily +{ + + NSData *data = nil; + NSString *host = nil; + uint16_t port = 0; + + if (socketFamily == AF_INET) + { + struct sockaddr_in sockaddr4; + socklen_t sockaddr4len = sizeof(sockaddr4); + + if (getsockname(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) == 0) + { + data = [NSData dataWithBytes:&sockaddr4 length:sockaddr4len]; + host = [[self class] hostFromSockaddr4:&sockaddr4]; + port = [[self class] portFromSockaddr4:&sockaddr4]; + } + else + { + LogWarn(@"Error in getsockname: %@", [self errnoError]); + } + } + else if (socketFamily == AF_INET6) + { + struct sockaddr_in6 sockaddr6; + socklen_t sockaddr6len = sizeof(sockaddr6); + + if (getsockname(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) == 0) + { + data = [NSData dataWithBytes:&sockaddr6 length:sockaddr6len]; + host = [[self class] hostFromSockaddr6:&sockaddr6]; + port = [[self class] portFromSockaddr6:&sockaddr6]; + } + else + { + LogWarn(@"Error in getsockname: %@", [self errnoError]); + } + } + + if (dataPtr) *dataPtr = data; + if (hostPtr) *hostPtr = host; + if (portPtr) *portPtr = port; + + return (data != nil); +} + +- (void)maybeUpdateCachedLocalAddress4Info +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + if ( cachedLocalAddress4 || ((flags & kDidBind) == 0) || (socket4FD == SOCKET_NULL) ) + { + return; + } + + NSData *address = nil; + NSString *host = nil; + uint16_t port = 0; + + if ([self getLocalAddress:&address host:&host port:&port forSocket:socket4FD withFamily:AF_INET]) + { + + cachedLocalAddress4 = address; + cachedLocalHost4 = host; + cachedLocalPort4 = port; + } +} + +- (void)maybeUpdateCachedLocalAddress6Info +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + if ( cachedLocalAddress6 || ((flags & kDidBind) == 0) || (socket6FD == SOCKET_NULL) ) + { + return; + } + + NSData *address = nil; + NSString *host = nil; + uint16_t port = 0; + + if ([self getLocalAddress:&address host:&host port:&port forSocket:socket6FD withFamily:AF_INET6]) + { + + cachedLocalAddress6 = address; + cachedLocalHost6 = host; + cachedLocalPort6 = port; + } +} + +- (NSData *)localAddress +{ + __block NSData *result = nil; + + dispatch_block_t block = ^{ + + if (self->socket4FD != SOCKET_NULL) + { + [self maybeUpdateCachedLocalAddress4Info]; + result = self->cachedLocalAddress4; + } + else + { + [self maybeUpdateCachedLocalAddress6Info]; + result = self->cachedLocalAddress6; + } + + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (NSString *)localHost +{ + __block NSString *result = nil; + + dispatch_block_t block = ^{ + + if (self->socket4FD != SOCKET_NULL) + { + [self maybeUpdateCachedLocalAddress4Info]; + result = self->cachedLocalHost4; + } + else + { + [self maybeUpdateCachedLocalAddress6Info]; + result = self->cachedLocalHost6; + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (uint16_t)localPort +{ + __block uint16_t result = 0; + + dispatch_block_t block = ^{ + + if (self->socket4FD != SOCKET_NULL) + { + [self maybeUpdateCachedLocalAddress4Info]; + result = self->cachedLocalPort4; + } + else + { + [self maybeUpdateCachedLocalAddress6Info]; + result = self->cachedLocalPort6; + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (NSData *)localAddress_IPv4 +{ + __block NSData *result = nil; + + dispatch_block_t block = ^{ + + [self maybeUpdateCachedLocalAddress4Info]; + result = self->cachedLocalAddress4; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (NSString *)localHost_IPv4 +{ + __block NSString *result = nil; + + dispatch_block_t block = ^{ + + [self maybeUpdateCachedLocalAddress4Info]; + result = self->cachedLocalHost4; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (uint16_t)localPort_IPv4 +{ + __block uint16_t result = 0; + + dispatch_block_t block = ^{ + + [self maybeUpdateCachedLocalAddress4Info]; + result = self->cachedLocalPort4; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (NSData *)localAddress_IPv6 +{ + __block NSData *result = nil; + + dispatch_block_t block = ^{ + + [self maybeUpdateCachedLocalAddress6Info]; + result = self->cachedLocalAddress6; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (NSString *)localHost_IPv6 +{ + __block NSString *result = nil; + + dispatch_block_t block = ^{ + + [self maybeUpdateCachedLocalAddress6Info]; + result = self->cachedLocalHost6; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (uint16_t)localPort_IPv6 +{ + __block uint16_t result = 0; + + dispatch_block_t block = ^{ + + [self maybeUpdateCachedLocalAddress6Info]; + result = self->cachedLocalPort6; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (void)maybeUpdateCachedConnectedAddressInfo +{ + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + if (cachedConnectedAddress || (flags & kDidConnect) == 0) + { + return; + } + + NSData *data = nil; + NSString *host = nil; + uint16_t port = 0; + int family = AF_UNSPEC; + + if (socket4FD != SOCKET_NULL) + { + struct sockaddr_in sockaddr4; + socklen_t sockaddr4len = sizeof(sockaddr4); + + if (getpeername(socket4FD, (struct sockaddr *)&sockaddr4, &sockaddr4len) == 0) + { + data = [NSData dataWithBytes:&sockaddr4 length:sockaddr4len]; + host = [[self class] hostFromSockaddr4:&sockaddr4]; + port = [[self class] portFromSockaddr4:&sockaddr4]; + family = AF_INET; + } + else + { + LogWarn(@"Error in getpeername: %@", [self errnoError]); + } + } + else if (socket6FD != SOCKET_NULL) + { + struct sockaddr_in6 sockaddr6; + socklen_t sockaddr6len = sizeof(sockaddr6); + + if (getpeername(socket6FD, (struct sockaddr *)&sockaddr6, &sockaddr6len) == 0) + { + data = [NSData dataWithBytes:&sockaddr6 length:sockaddr6len]; + host = [[self class] hostFromSockaddr6:&sockaddr6]; + port = [[self class] portFromSockaddr6:&sockaddr6]; + family = AF_INET6; + } + else + { + LogWarn(@"Error in getpeername: %@", [self errnoError]); + } + } + + + cachedConnectedAddress = data; + cachedConnectedHost = host; + cachedConnectedPort = port; + cachedConnectedFamily = family; +} + +- (NSData *)connectedAddress +{ + __block NSData *result = nil; + + dispatch_block_t block = ^{ + + [self maybeUpdateCachedConnectedAddressInfo]; + result = self->cachedConnectedAddress; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (NSString *)connectedHost +{ + __block NSString *result = nil; + + dispatch_block_t block = ^{ + + [self maybeUpdateCachedConnectedAddressInfo]; + result = self->cachedConnectedHost; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (uint16_t)connectedPort +{ + __block uint16_t result = 0; + + dispatch_block_t block = ^{ + + [self maybeUpdateCachedConnectedAddressInfo]; + result = self->cachedConnectedPort; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, AutoreleasedBlock(block)); + + return result; +} + +- (BOOL)isConnected +{ + __block BOOL result = NO; + + dispatch_block_t block = ^{ + result = (self->flags & kDidConnect) ? YES : NO; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (BOOL)isClosed +{ + __block BOOL result = YES; + + dispatch_block_t block = ^{ + + result = (self->flags & kDidCreateSockets) ? NO : YES; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (BOOL)isIPv4 +{ + __block BOOL result = NO; + + dispatch_block_t block = ^{ + + if (self->flags & kDidCreateSockets) + { + result = (self->socket4FD != SOCKET_NULL); + } + else + { + result = [self isIPv4Enabled]; + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +- (BOOL)isIPv6 +{ + __block BOOL result = NO; + + dispatch_block_t block = ^{ + + if (self->flags & kDidCreateSockets) + { + result = (self->socket6FD != SOCKET_NULL); + } + else + { + result = [self isIPv6Enabled]; + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + return result; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Binding +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * This method runs through the various checks required prior to a bind attempt. + * It is shared between the various bind methods. +**/ +- (BOOL)preBind:(NSError **)errPtr +{ + if (![self preOp:errPtr]) + { + return NO; + } + + if (flags & kDidBind) + { + if (errPtr) + { + NSString *msg = @"Cannot bind a socket more than once."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + if ((flags & kConnecting) || (flags & kDidConnect)) + { + if (errPtr) + { + NSString *msg = @"Cannot bind after connecting. If needed, bind first, then connect."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; + BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; + + if (isIPv4Disabled && isIPv6Disabled) // Must have IPv4 or IPv6 enabled + { + if (errPtr) + { + NSString *msg = @"Both IPv4 and IPv6 have been disabled. Must enable at least one protocol first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + return YES; +} + +- (BOOL)bindToPort:(uint16_t)port error:(NSError **)errPtr +{ + return [self bindToPort:port interface:nil error:errPtr]; +} + +- (BOOL)bindToPort:(uint16_t)port interface:(NSString *)interface error:(NSError **)errPtr +{ + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + // Run through sanity checks + + if (![self preBind:&err]) + { + return_from_block; + } + + // Check the given interface + + NSData *interface4 = nil; + NSData *interface6 = nil; + + [self convertIntefaceDescription:interface port:port intoAddress4:&interface4 address6:&interface6]; + + if ((interface4 == nil) && (interface6 == nil)) + { + NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; + err = [self badParamError:msg]; + + return_from_block; + } + + BOOL isIPv4Disabled = (self->config & kIPv4Disabled) ? YES : NO; + BOOL isIPv6Disabled = (self->config & kIPv6Disabled) ? YES : NO; + + if (isIPv4Disabled && (interface6 == nil)) + { + NSString *msg = @"IPv4 has been disabled and specified interface doesn't support IPv6."; + err = [self badParamError:msg]; + + return_from_block; + } + + if (isIPv6Disabled && (interface4 == nil)) + { + NSString *msg = @"IPv6 has been disabled and specified interface doesn't support IPv4."; + err = [self badParamError:msg]; + + return_from_block; + } + + // Determine protocol(s) + + BOOL useIPv4 = !isIPv4Disabled && (interface4 != nil); + BOOL useIPv6 = !isIPv6Disabled && (interface6 != nil); + + // Create the socket(s) if needed + + if ((self->flags & kDidCreateSockets) == 0) + { + if (![self createSocket4:useIPv4 socket6:useIPv6 error:&err]) + { + return_from_block; + } + } + + // Bind the socket(s) + + LogVerbose(@"Binding socket to port(%hu) interface(%@)", port, interface); + + if (useIPv4) + { + int status = bind(self->socket4FD, (const struct sockaddr *)[interface4 bytes], (socklen_t)[interface4 length]); + if (status == -1) + { + [self closeSockets]; + + NSString *reason = @"Error in bind() function"; + err = [self errnoErrorWithReason:reason]; + + return_from_block; + } + } + + if (useIPv6) + { + int status = bind(self->socket6FD, (const struct sockaddr *)[interface6 bytes], (socklen_t)[interface6 length]); + if (status == -1) + { + [self closeSockets]; + + NSString *reason = @"Error in bind() function"; + err = [self errnoErrorWithReason:reason]; + + return_from_block; + } + } + + // Update flags + + self->flags |= kDidBind; + + if (!useIPv4) self->flags |= kIPv4Deactivated; + if (!useIPv6) self->flags |= kIPv6Deactivated; + + result = YES; + + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (err) + LogError(@"Error binding to port/interface: %@", err); + + if (errPtr) + *errPtr = err; + + return result; +} + +- (BOOL)bindToAddress:(NSData *)localAddr error:(NSError **)errPtr +{ + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + // Run through sanity checks + + if (![self preBind:&err]) + { + return_from_block; + } + + // Check the given address + + int addressFamily = [[self class] familyFromAddress:localAddr]; + + if (addressFamily == AF_UNSPEC) + { + NSString *msg = @"A valid IPv4 or IPv6 address was not given"; + err = [self badParamError:msg]; + + return_from_block; + } + + NSData *localAddr4 = (addressFamily == AF_INET) ? localAddr : nil; + NSData *localAddr6 = (addressFamily == AF_INET6) ? localAddr : nil; + + BOOL isIPv4Disabled = (self->config & kIPv4Disabled) ? YES : NO; + BOOL isIPv6Disabled = (self->config & kIPv6Disabled) ? YES : NO; + + if (isIPv4Disabled && localAddr4) + { + NSString *msg = @"IPv4 has been disabled and an IPv4 address was passed."; + err = [self badParamError:msg]; + + return_from_block; + } + + if (isIPv6Disabled && localAddr6) + { + NSString *msg = @"IPv6 has been disabled and an IPv6 address was passed."; + err = [self badParamError:msg]; + + return_from_block; + } + + // Determine protocol(s) + + BOOL useIPv4 = !isIPv4Disabled && (localAddr4 != nil); + BOOL useIPv6 = !isIPv6Disabled && (localAddr6 != nil); + + // Create the socket(s) if needed + + if ((self->flags & kDidCreateSockets) == 0) + { + if (![self createSocket4:useIPv4 socket6:useIPv6 error:&err]) + { + return_from_block; + } + } + + // Bind the socket(s) + + if (useIPv4) + { + LogVerbose(@"Binding socket to address(%@:%hu)", + [[self class] hostFromAddress:localAddr4], + [[self class] portFromAddress:localAddr4]); + + int status = bind(self->socket4FD, (const struct sockaddr *)[localAddr4 bytes], (socklen_t)[localAddr4 length]); + if (status == -1) + { + [self closeSockets]; + + NSString *reason = @"Error in bind() function"; + err = [self errnoErrorWithReason:reason]; + + return_from_block; + } + } + else + { + LogVerbose(@"Binding socket to address(%@:%hu)", + [[self class] hostFromAddress:localAddr6], + [[self class] portFromAddress:localAddr6]); + + int status = bind(self->socket6FD, (const struct sockaddr *)[localAddr6 bytes], (socklen_t)[localAddr6 length]); + if (status == -1) + { + [self closeSockets]; + + NSString *reason = @"Error in bind() function"; + err = [self errnoErrorWithReason:reason]; + + return_from_block; + } + } + + // Update flags + + self->flags |= kDidBind; + + if (!useIPv4) self->flags |= kIPv4Deactivated; + if (!useIPv6) self->flags |= kIPv6Deactivated; + + result = YES; + + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (err) + LogError(@"Error binding to address: %@", err); + + if (errPtr) + *errPtr = err; + + return result; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Connecting +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * This method runs through the various checks required prior to a connect attempt. + * It is shared between the various connect methods. +**/ +- (BOOL)preConnect:(NSError **)errPtr +{ + if (![self preOp:errPtr]) + { + return NO; + } + + if ((flags & kConnecting) || (flags & kDidConnect)) + { + if (errPtr) + { + NSString *msg = @"Cannot connect a socket more than once."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; + BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; + + if (isIPv4Disabled && isIPv6Disabled) // Must have IPv4 or IPv6 enabled + { + if (errPtr) + { + NSString *msg = @"Both IPv4 and IPv6 have been disabled. Must enable at least one protocol first."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + return YES; +} + +- (BOOL)connectToHost:(NSString *)host onPort:(uint16_t)port error:(NSError **)errPtr +{ + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + // Run through sanity checks. + + if (![self preConnect:&err]) + { + return_from_block; + } + + // Check parameter(s) + + if (host == nil) + { + NSString *msg = @"The host param is nil. Should be domain name or IP address string."; + err = [self badParamError:msg]; + + return_from_block; + } + + // Create the socket(s) if needed + + if ((self->flags & kDidCreateSockets) == 0) + { + if (![self createSockets:&err]) + { + return_from_block; + } + } + + // Create special connect packet + + MGCDAsyncUdpSpecialPacket *packet = [[MGCDAsyncUdpSpecialPacket alloc] init]; + packet->resolveInProgress = YES; + + // Start asynchronous DNS resolve for host:port on background queue + + LogVerbose(@"Dispatching DNS resolve for connect..."); + + [self asyncResolveHost:host port:port withCompletionBlock:^(NSArray *addresses, NSError *error) { + + // The asyncResolveHost:port:: method asynchronously dispatches a task onto the global concurrent queue, + // and immediately returns. Once the async resolve task completes, + // this block is executed on our socketQueue. + + packet->resolveInProgress = NO; + + packet->addresses = addresses; + packet->error = error; + + [self maybeConnect]; + }]; + + // Updates flags, add connect packet to send queue, and pump send queue + + self->flags |= kConnecting; + + [self->sendQueue addObject:packet]; + [self maybeDequeueSend]; + + result = YES; + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (err) + LogError(@"Error connecting to host/port: %@", err); + + if (errPtr) + *errPtr = err; + + return result; +} + +- (BOOL)connectToAddress:(NSData *)remoteAddr error:(NSError **)errPtr +{ + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + // Run through sanity checks. + + if (![self preConnect:&err]) + { + return_from_block; + } + + // Check parameter(s) + + if (remoteAddr == nil) + { + NSString *msg = @"The address param is nil. Should be a valid address."; + err = [self badParamError:msg]; + + return_from_block; + } + + // Create the socket(s) if needed + + if ((self->flags & kDidCreateSockets) == 0) + { + if (![self createSockets:&err]) + { + return_from_block; + } + } + + // The remoteAddr parameter could be of type NSMutableData. + // So we copy it to be safe. + + NSData *address = [remoteAddr copy]; + NSArray *addresses = [NSArray arrayWithObject:address]; + + MGCDAsyncUdpSpecialPacket *packet = [[MGCDAsyncUdpSpecialPacket alloc] init]; + packet->addresses = addresses; + + // Updates flags, add connect packet to send queue, and pump send queue + + self->flags |= kConnecting; + + [self->sendQueue addObject:packet]; + [self maybeDequeueSend]; + + result = YES; + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (err) + LogError(@"Error connecting to address: %@", err); + + if (errPtr) + *errPtr = err; + + return result; +} + +- (void)maybeConnect +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + + BOOL sendQueueReady = [currentSend isKindOfClass:[MGCDAsyncUdpSpecialPacket class]]; + + if (sendQueueReady) + { + MGCDAsyncUdpSpecialPacket *connectPacket = (MGCDAsyncUdpSpecialPacket *)currentSend; + + if (connectPacket->resolveInProgress) + { + LogVerbose(@"Waiting for DNS resolve..."); + } + else + { + if (connectPacket->error) + { + [self notifyDidNotConnect:connectPacket->error]; + } + else + { + NSData *address = nil; + NSError *error = nil; + + int addressFamily = [self getAddress:&address error:&error fromAddresses:connectPacket->addresses]; + + // Perform connect + + BOOL result = NO; + + switch (addressFamily) + { + case AF_INET : result = [self connectWithAddress4:address error:&error]; break; + case AF_INET6 : result = [self connectWithAddress6:address error:&error]; break; + } + + if (result) + { + flags |= kDidBind; + flags |= kDidConnect; + + cachedConnectedAddress = address; + cachedConnectedHost = [[self class] hostFromAddress:address]; + cachedConnectedPort = [[self class] portFromAddress:address]; + cachedConnectedFamily = addressFamily; + + [self notifyDidConnectToAddress:address]; + } + else + { + [self notifyDidNotConnect:error]; + } + } + + flags &= ~kConnecting; + + [self endCurrentSend]; + [self maybeDequeueSend]; + } + } +} + +- (BOOL)connectWithAddress4:(NSData *)address4 error:(NSError **)errPtr +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + int status = connect(socket4FD, (const struct sockaddr *)[address4 bytes], (socklen_t)[address4 length]); + if (status != 0) + { + if (errPtr) + *errPtr = [self errnoErrorWithReason:@"Error in connect() function"]; + + return NO; + } + + [self closeSocket6]; + flags |= kIPv6Deactivated; + + return YES; +} + +- (BOOL)connectWithAddress6:(NSData *)address6 error:(NSError **)errPtr +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + int status = connect(socket6FD, (const struct sockaddr *)[address6 bytes], (socklen_t)[address6 length]); + if (status != 0) + { + if (errPtr) + *errPtr = [self errnoErrorWithReason:@"Error in connect() function"]; + + return NO; + } + + [self closeSocket4]; + flags |= kIPv4Deactivated; + + return YES; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Multicast +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (BOOL)preJoin:(NSError **)errPtr +{ + if (![self preOp:errPtr]) + { + return NO; + } + + if (!(flags & kDidBind)) + { + if (errPtr) + { + NSString *msg = @"Must bind a socket before joining a multicast group."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + if ((flags & kConnecting) || (flags & kDidConnect)) + { + if (errPtr) + { + NSString *msg = @"Cannot join a multicast group if connected."; + *errPtr = [self badConfigError:msg]; + } + return NO; + } + + return YES; +} + +- (BOOL)joinMulticastGroup:(NSString *)group error:(NSError **)errPtr +{ + return [self joinMulticastGroup:group onInterface:nil error:errPtr]; +} + +- (BOOL)joinMulticastGroup:(NSString *)group onInterface:(NSString *)interface error:(NSError **)errPtr +{ + // IP_ADD_MEMBERSHIP == IPV6_JOIN_GROUP + return [self performMulticastRequest:IP_ADD_MEMBERSHIP forGroup:group onInterface:interface error:errPtr]; +} + +- (BOOL)leaveMulticastGroup:(NSString *)group error:(NSError **)errPtr +{ + return [self leaveMulticastGroup:group onInterface:nil error:errPtr]; +} + +- (BOOL)leaveMulticastGroup:(NSString *)group onInterface:(NSString *)interface error:(NSError **)errPtr +{ + // IP_DROP_MEMBERSHIP == IPV6_LEAVE_GROUP + return [self performMulticastRequest:IP_DROP_MEMBERSHIP forGroup:group onInterface:interface error:errPtr]; +} + +- (BOOL)performMulticastRequest:(int)requestType + forGroup:(NSString *)group + onInterface:(NSString *)interface + error:(NSError **)errPtr +{ + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + // Run through sanity checks + + if (![self preJoin:&err]) + { + return_from_block; + } + + // Convert group to address + + NSData *groupAddr4 = nil; + NSData *groupAddr6 = nil; + + [self convertNumericHost:group port:0 intoAddress4:&groupAddr4 address6:&groupAddr6]; + + if ((groupAddr4 == nil) && (groupAddr6 == nil)) + { + NSString *msg = @"Unknown group. Specify valid group IP address."; + err = [self badParamError:msg]; + + return_from_block; + } + + // Convert interface to address + + NSData *interfaceAddr4 = nil; + NSData *interfaceAddr6 = nil; + + [self convertIntefaceDescription:interface port:0 intoAddress4:&interfaceAddr4 address6:&interfaceAddr6]; + + if ((interfaceAddr4 == nil) && (interfaceAddr6 == nil)) + { + NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; + err = [self badParamError:msg]; + + return_from_block; + } + + // Perform join + + if ((self->socket4FD != SOCKET_NULL) && groupAddr4 && interfaceAddr4) + { + const struct sockaddr_in *nativeGroup = (const struct sockaddr_in *)[groupAddr4 bytes]; + const struct sockaddr_in *nativeIface = (const struct sockaddr_in *)[interfaceAddr4 bytes]; + + struct ip_mreq imreq; + imreq.imr_multiaddr = nativeGroup->sin_addr; + imreq.imr_interface = nativeIface->sin_addr; + + int status = setsockopt(self->socket4FD, IPPROTO_IP, requestType, (const void *)&imreq, sizeof(imreq)); + if (status != 0) + { + err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; + + return_from_block; + } + + // Using IPv4 only + [self closeSocket6]; + + result = YES; + } + else if ((self->socket6FD != SOCKET_NULL) && groupAddr6 && interfaceAddr6) + { + const struct sockaddr_in6 *nativeGroup = (const struct sockaddr_in6 *)[groupAddr6 bytes]; + + struct ipv6_mreq imreq; + imreq.ipv6mr_multiaddr = nativeGroup->sin6_addr; + imreq.ipv6mr_interface = [self indexOfInterfaceAddr6:interfaceAddr6]; + + int status = setsockopt(self->socket6FD, IPPROTO_IPV6, requestType, (const void *)&imreq, sizeof(imreq)); + if (status != 0) + { + err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; + + return_from_block; + } + + // Using IPv6 only + [self closeSocket4]; + + result = YES; + } + else + { + NSString *msg = @"Socket, group, and interface do not have matching IP versions"; + err = [self badParamError:msg]; + + return_from_block; + } + + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (errPtr) + *errPtr = err; + + return result; +} + +- (BOOL)sendIPv4MulticastOnInterface:(NSString*)interface error:(NSError **)errPtr +{ + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + if (![self preOp:&err]) + { + return_from_block; + } + + if ((self->flags & kDidCreateSockets) == 0) + { + if (![self createSockets:&err]) + { + return_from_block; + } + } + + // Convert interface to address + + NSData *interfaceAddr4 = nil; + NSData *interfaceAddr6 = nil; + + [self convertIntefaceDescription:interface port:0 intoAddress4:&interfaceAddr4 address6:&interfaceAddr6]; + + if (interfaceAddr4 == nil) + { + NSString *msg = @"Unknown interface. Specify valid interface by IP address."; + err = [self badParamError:msg]; + return_from_block; + } + + if (self->socket4FD != SOCKET_NULL) { + const struct sockaddr_in *nativeIface = (struct sockaddr_in *)[interfaceAddr4 bytes]; + struct in_addr interface_addr = nativeIface->sin_addr; + int status = setsockopt(self->socket4FD, IPPROTO_IP, IP_MULTICAST_IF, &interface_addr, sizeof(interface_addr)); + if (status != 0) { + err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; + return_from_block; + } + result = YES; + } + + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (errPtr) + *errPtr = err; + + return result; +} + +- (BOOL)sendIPv6MulticastOnInterface:(NSString*)interface error:(NSError **)errPtr +{ + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + if (![self preOp:&err]) + { + return_from_block; + } + + if ((self->flags & kDidCreateSockets) == 0) + { + if (![self createSockets:&err]) + { + return_from_block; + } + } + + // Convert interface to address + + NSData *interfaceAddr4 = nil; + NSData *interfaceAddr6 = nil; + + [self convertIntefaceDescription:interface port:0 intoAddress4:&interfaceAddr4 address6:&interfaceAddr6]; + + if (interfaceAddr6 == nil) + { + NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\")."; + err = [self badParamError:msg]; + return_from_block; + } + + if ((self->socket6FD != SOCKET_NULL)) { + uint32_t scope_id = [self indexOfInterfaceAddr6:interfaceAddr6]; + int status = setsockopt(self->socket6FD, IPPROTO_IPV6, IPV6_MULTICAST_IF, &scope_id, sizeof(scope_id)); + if (status != 0) { + err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; + return_from_block; + } + result = YES; + } + + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (errPtr) + *errPtr = err; + + return result; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Reuse port +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (BOOL)enableReusePort:(BOOL)flag error:(NSError **)errPtr +{ + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + if (![self preOp:&err]) + { + return_from_block; + } + + if ((self->flags & kDidCreateSockets) == 0) + { + if (![self createSockets:&err]) + { + return_from_block; + } + } + + int value = flag ? 1 : 0; + if (self->socket4FD != SOCKET_NULL) + { + int error = setsockopt(self->socket4FD, SOL_SOCKET, SO_REUSEPORT, (const void *)&value, sizeof(value)); + + if (error) + { + err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; + + return_from_block; + } + result = YES; + } + + if (self->socket6FD != SOCKET_NULL) + { + int error = setsockopt(self->socket6FD, SOL_SOCKET, SO_REUSEPORT, (const void *)&value, sizeof(value)); + + if (error) + { + err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; + + return_from_block; + } + result = YES; + } + + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (errPtr) + *errPtr = err; + + return result; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Broadcast +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (BOOL)enableBroadcast:(BOOL)flag error:(NSError **)errPtr +{ + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ @autoreleasepool { + + if (![self preOp:&err]) + { + return_from_block; + } + + if ((self->flags & kDidCreateSockets) == 0) + { + if (![self createSockets:&err]) + { + return_from_block; + } + } + + if (self->socket4FD != SOCKET_NULL) + { + int value = flag ? 1 : 0; + int error = setsockopt(self->socket4FD, SOL_SOCKET, SO_BROADCAST, (const void *)&value, sizeof(value)); + + if (error) + { + err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; + + return_from_block; + } + result = YES; + } + + // IPv6 does not implement broadcast, the ability to send a packet to all hosts on the attached link. + // The same effect can be achieved by sending a packet to the link-local all hosts multicast group. + + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (errPtr) + *errPtr = err; + + return result; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Sending +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (void)sendData:(NSData *)data withTag:(long)tag +{ + [self sendData:data withTimeout:-1.0 tag:tag]; +} + +- (void)sendData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag +{ + LogTrace(); + + if ([data length] == 0) + { + LogWarn(@"Ignoring attempt to send nil/empty data."); + return; + } + + + + MGCDAsyncUdpSendPacket *packet = [[MGCDAsyncUdpSendPacket alloc] initWithData:data timeout:timeout tag:tag]; + + dispatch_async(socketQueue, ^{ @autoreleasepool { + + [self->sendQueue addObject:packet]; + [self maybeDequeueSend]; + }}); + +} + +- (void)sendData:(NSData *)data + toHost:(NSString *)host + port:(uint16_t)port + withTimeout:(NSTimeInterval)timeout + tag:(long)tag +{ + LogTrace(); + + if ([data length] == 0) + { + LogWarn(@"Ignoring attempt to send nil/empty data."); + return; + } + + MGCDAsyncUdpSendPacket *packet = [[MGCDAsyncUdpSendPacket alloc] initWithData:data timeout:timeout tag:tag]; + packet->resolveInProgress = YES; + + [self asyncResolveHost:host port:port withCompletionBlock:^(NSArray *addresses, NSError *error) { + + // The asyncResolveHost:port:: method asynchronously dispatches a task onto the global concurrent queue, + // and immediately returns. Once the async resolve task completes, + // this block is executed on our socketQueue. + + packet->resolveInProgress = NO; + + packet->resolvedAddresses = addresses; + packet->resolveError = error; + + if (packet == self->currentSend) + { + LogVerbose(@"currentSend - address resolved"); + [self doPreSend]; + } + }]; + + dispatch_async(socketQueue, ^{ @autoreleasepool { + + [self->sendQueue addObject:packet]; + [self maybeDequeueSend]; + + }}); + +} + +- (void)sendData:(NSData *)data toAddress:(NSData *)remoteAddr withTimeout:(NSTimeInterval)timeout tag:(long)tag +{ + LogTrace(); + + if ([data length] == 0) + { + LogWarn(@"Ignoring attempt to send nil/empty data."); + return; + } + + MGCDAsyncUdpSendPacket *packet = [[MGCDAsyncUdpSendPacket alloc] initWithData:data timeout:timeout tag:tag]; + packet->addressFamily = [MGCDAsyncUdpSocket familyFromAddress:remoteAddr]; + packet->address = remoteAddr; + + dispatch_async(socketQueue, ^{ @autoreleasepool { + + [self->sendQueue addObject:packet]; + [self maybeDequeueSend]; + }}); +} + +- (void)setSendFilter:(MGCDAsyncUdpSocketSendFilterBlock)filterBlock withQueue:(dispatch_queue_t)filterQueue +{ + [self setSendFilter:filterBlock withQueue:filterQueue isAsynchronous:YES]; +} + +- (void)setSendFilter:(MGCDAsyncUdpSocketSendFilterBlock)filterBlock + withQueue:(dispatch_queue_t)filterQueue + isAsynchronous:(BOOL)isAsynchronous +{ + MGCDAsyncUdpSocketSendFilterBlock newFilterBlock = NULL; + dispatch_queue_t newFilterQueue = NULL; + + if (filterBlock) + { + NSAssert(filterQueue, @"Must provide a dispatch_queue in which to run the filter block."); + + newFilterBlock = [filterBlock copy]; + newFilterQueue = filterQueue; + #if !OS_OBJECT_USE_OBJC + dispatch_retain(newFilterQueue); + #endif + } + + dispatch_block_t block = ^{ + + #if !OS_OBJECT_USE_OBJC + if (self->sendFilterQueue) dispatch_release(self->sendFilterQueue); + #endif + + self->sendFilterBlock = newFilterBlock; + self->sendFilterQueue = newFilterQueue; + self->sendFilterAsync = isAsynchronous; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (void)maybeDequeueSend +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + // If we don't have a send operation already in progress + if (currentSend == nil) + { + // Create the sockets if needed + if ((flags & kDidCreateSockets) == 0) + { + NSError *err = nil; + if (![self createSockets:&err]) + { + [self closeWithError:err]; + return; + } + } + + while ([sendQueue count] > 0) + { + // Dequeue the next object in the queue + currentSend = [sendQueue objectAtIndex:0]; + [sendQueue removeObjectAtIndex:0]; + + if ([currentSend isKindOfClass:[MGCDAsyncUdpSpecialPacket class]]) + { + [self maybeConnect]; + + return; // The maybeConnect method, if it connects, will invoke this method again + } + else if (currentSend->resolveError) + { + // Notify delegate + [self notifyDidNotSendDataWithTag:currentSend->tag dueToError:currentSend->resolveError]; + + // Clear currentSend + currentSend = nil; + + continue; + } + else + { + // Start preprocessing checks on the send packet + [self doPreSend]; + + break; + } + } + + if ((currentSend == nil) && (flags & kCloseAfterSends)) + { + [self closeWithError:nil]; + } + } +} + +/** + * This method is called after a sendPacket has been dequeued. + * It performs various preprocessing checks on the packet, + * and queries the sendFilter (if set) to determine if the packet can be sent. + * + * If the packet passes all checks, it will be passed on to the doSend method. +**/ +- (void)doPreSend +{ + LogTrace(); + + // + // 1. Check for problems with send packet + // + + BOOL waitingForResolve = NO; + NSError *error = nil; + + if (flags & kDidConnect) + { + // Connected socket + + if (currentSend->resolveInProgress || currentSend->resolvedAddresses || currentSend->resolveError) + { + NSString *msg = @"Cannot specify destination of packet for connected socket"; + error = [self badConfigError:msg]; + } + else + { + currentSend->address = cachedConnectedAddress; + currentSend->addressFamily = cachedConnectedFamily; + } + } + else + { + // Non-Connected socket + + if (currentSend->resolveInProgress) + { + // We're waiting for the packet's destination to be resolved. + waitingForResolve = YES; + } + else if (currentSend->resolveError) + { + error = currentSend->resolveError; + } + else if (currentSend->address == nil) + { + if (currentSend->resolvedAddresses == nil) + { + NSString *msg = @"You must specify destination of packet for a non-connected socket"; + error = [self badConfigError:msg]; + } + else + { + // Pick the proper address to use (out of possibly several resolved addresses) + + NSData *address = nil; + int addressFamily = AF_UNSPEC; + + addressFamily = [self getAddress:&address error:&error fromAddresses:currentSend->resolvedAddresses]; + + currentSend->address = address; + currentSend->addressFamily = addressFamily; + } + } + } + + if (waitingForResolve) + { + // We're waiting for the packet's destination to be resolved. + + LogVerbose(@"currentSend - waiting for address resolve"); + + if (flags & kSock4CanAcceptBytes) { + [self suspendSend4Source]; + } + if (flags & kSock6CanAcceptBytes) { + [self suspendSend6Source]; + } + + return; + } + + if (error) + { + // Unable to send packet due to some error. + // Notify delegate and move on. + + [self notifyDidNotSendDataWithTag:currentSend->tag dueToError:error]; + [self endCurrentSend]; + [self maybeDequeueSend]; + + return; + } + + // + // 2. Query sendFilter (if applicable) + // + + if (sendFilterBlock && sendFilterQueue) + { + // Query sendFilter + + if (sendFilterAsync) + { + // Scenario 1 of 3 - Need to asynchronously query sendFilter + + currentSend->filterInProgress = YES; + MGCDAsyncUdpSendPacket *sendPacket = currentSend; + + dispatch_async(sendFilterQueue, ^{ @autoreleasepool { + + BOOL allowed = self->sendFilterBlock(sendPacket->buffer, sendPacket->address, sendPacket->tag); + + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + sendPacket->filterInProgress = NO; + if (sendPacket == self->currentSend) + { + if (allowed) + { + [self doSend]; + } + else + { + LogVerbose(@"currentSend - silently dropped by sendFilter"); + + [self notifyDidSendDataWithTag:self->currentSend->tag]; + [self endCurrentSend]; + [self maybeDequeueSend]; + } + } + }}); + }}); + } + else + { + // Scenario 2 of 3 - Need to synchronously query sendFilter + + __block BOOL allowed = YES; + + dispatch_sync(sendFilterQueue, ^{ @autoreleasepool { + + allowed = self->sendFilterBlock(self->currentSend->buffer, self->currentSend->address, self->currentSend->tag); + }}); + + if (allowed) + { + [self doSend]; + } + else + { + LogVerbose(@"currentSend - silently dropped by sendFilter"); + + [self notifyDidSendDataWithTag:currentSend->tag]; + [self endCurrentSend]; + [self maybeDequeueSend]; + } + } + } + else // if (!sendFilterBlock || !sendFilterQueue) + { + // Scenario 3 of 3 - No sendFilter. Just go straight into sending. + + [self doSend]; + } +} + +/** + * This method performs the actual sending of data in the currentSend packet. + * It should only be called if the +**/ +- (void)doSend +{ + LogTrace(); + + NSAssert(currentSend != nil, @"Invalid logic"); + + // Perform the actual send + + ssize_t result = 0; + + if (flags & kDidConnect) + { + // Connected socket + + const void *buffer = [currentSend->buffer bytes]; + size_t length = (size_t)[currentSend->buffer length]; + + if (currentSend->addressFamily == AF_INET) + { + result = send(socket4FD, buffer, length, 0); + LogVerbose(@"send(socket4FD) = %d", result); + } + else + { + result = send(socket6FD, buffer, length, 0); + LogVerbose(@"send(socket6FD) = %d", result); + } + } + else + { + // Non-Connected socket + + const void *buffer = [currentSend->buffer bytes]; + size_t length = (size_t)[currentSend->buffer length]; + + const void *dst = [currentSend->address bytes]; + socklen_t dstSize = (socklen_t)[currentSend->address length]; + + if (currentSend->addressFamily == AF_INET) + { + result = sendto(socket4FD, buffer, length, 0, dst, dstSize); + LogVerbose(@"sendto(socket4FD) = %d", result); + } + else + { + result = sendto(socket6FD, buffer, length, 0, dst, dstSize); + LogVerbose(@"sendto(socket6FD) = %d", result); + } + } + + // If the socket wasn't bound before, it is now + + if ((flags & kDidBind) == 0) + { + flags |= kDidBind; + } + + // Check the results. + // + // From the send() & sendto() manpage: + // + // Upon successful completion, the number of bytes which were sent is returned. + // Otherwise, -1 is returned and the global variable errno is set to indicate the error. + + BOOL waitingForSocket = NO; + NSError *socketError = nil; + + if (result == 0) + { + waitingForSocket = YES; + } + else if (result < 0) + { + if (errno == EAGAIN) + waitingForSocket = YES; + else + socketError = [self errnoErrorWithReason:@"Error in send() function."]; + } + + if (waitingForSocket) + { + // Not enough room in the underlying OS socket send buffer. + // Wait for a notification of available space. + + LogVerbose(@"currentSend - waiting for socket"); + + if (!(flags & kSock4CanAcceptBytes)) { + [self resumeSend4Source]; + } + if (!(flags & kSock6CanAcceptBytes)) { + [self resumeSend6Source]; + } + + if ((sendTimer == NULL) && (currentSend->timeout >= 0.0)) + { + // Unable to send packet right away. + // Start timer to timeout the send operation. + + [self setupSendTimerWithTimeout:currentSend->timeout]; + } + } + else if (socketError) + { + [self closeWithError:socketError]; + } + else // done + { + [self notifyDidSendDataWithTag:currentSend->tag]; + [self endCurrentSend]; + [self maybeDequeueSend]; + } +} + +/** + * Releases all resources associated with the currentSend. +**/ +- (void)endCurrentSend +{ + if (sendTimer) + { + dispatch_source_cancel(sendTimer); + #if !OS_OBJECT_USE_OBJC + dispatch_release(sendTimer); + #endif + sendTimer = NULL; + } + + currentSend = nil; +} + +/** + * Performs the operations to timeout the current send operation, and move on. +**/ +- (void)doSendTimeout +{ + LogTrace(); + + [self notifyDidNotSendDataWithTag:currentSend->tag dueToError:[self sendTimeoutError]]; + [self endCurrentSend]; + [self maybeDequeueSend]; +} + +/** + * Sets up a timer that fires to timeout the current send operation. + * This method should only be called once per send packet. +**/ +- (void)setupSendTimerWithTimeout:(NSTimeInterval)timeout +{ + NSAssert(sendTimer == NULL, @"Invalid logic"); + NSAssert(timeout >= 0.0, @"Invalid logic"); + + LogTrace(); + + sendTimer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, socketQueue); + + dispatch_source_set_event_handler(sendTimer, ^{ @autoreleasepool { + + [self doSendTimeout]; + }}); + + dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeout * NSEC_PER_SEC)); + + dispatch_source_set_timer(sendTimer, tt, DISPATCH_TIME_FOREVER, 0); + dispatch_resume(sendTimer); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Receiving +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (BOOL)receiveOnce:(NSError **)errPtr +{ + LogTrace(); + + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ + + if ((self->flags & kReceiveOnce) == 0) + { + if ((self->flags & kDidCreateSockets) == 0) + { + NSString *msg = @"Must bind socket before you can receive data. " + @"You can do this explicitly via bind, or implicitly via connect or by sending data."; + + err = [self badConfigError:msg]; + return_from_block; + } + + self->flags |= kReceiveOnce; // Enable + self->flags &= ~kReceiveContinuous; // Disable + + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + [self doReceive]; + }}); + } + + result = YES; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (err) + LogError(@"Error in beginReceiving: %@", err); + + if (errPtr) + *errPtr = err; + + return result; +} + +- (BOOL)beginReceiving:(NSError **)errPtr +{ + LogTrace(); + + __block BOOL result = NO; + __block NSError *err = nil; + + dispatch_block_t block = ^{ + + if ((self->flags & kReceiveContinuous) == 0) + { + if ((self->flags & kDidCreateSockets) == 0) + { + NSString *msg = @"Must bind socket before you can receive data. " + @"You can do this explicitly via bind, or implicitly via connect or by sending data."; + + err = [self badConfigError:msg]; + return_from_block; + } + + self->flags |= kReceiveContinuous; // Enable + self->flags &= ~kReceiveOnce; // Disable + + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + [self doReceive]; + }}); + } + + result = YES; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); + + if (err) + LogError(@"Error in beginReceiving: %@", err); + + if (errPtr) + *errPtr = err; + + return result; +} + +- (void)pauseReceiving +{ + LogTrace(); + + dispatch_block_t block = ^{ + + self->flags &= ~kReceiveOnce; // Disable + self->flags &= ~kReceiveContinuous; // Disable + + if (self->socket4FDBytesAvailable > 0) { + [self suspendReceive4Source]; + } + if (self->socket6FDBytesAvailable > 0) { + [self suspendReceive6Source]; + } + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (void)setReceiveFilter:(MGCDAsyncUdpSocketReceiveFilterBlock)filterBlock withQueue:(dispatch_queue_t)filterQueue +{ + [self setReceiveFilter:filterBlock withQueue:filterQueue isAsynchronous:YES]; +} + +- (void)setReceiveFilter:(MGCDAsyncUdpSocketReceiveFilterBlock)filterBlock + withQueue:(dispatch_queue_t)filterQueue + isAsynchronous:(BOOL)isAsynchronous +{ + MGCDAsyncUdpSocketReceiveFilterBlock newFilterBlock = NULL; + dispatch_queue_t newFilterQueue = NULL; + + if (filterBlock) + { + NSAssert(filterQueue, @"Must provide a dispatch_queue in which to run the filter block."); + + newFilterBlock = [filterBlock copy]; + newFilterQueue = filterQueue; + #if !OS_OBJECT_USE_OBJC + dispatch_retain(newFilterQueue); + #endif + } + + dispatch_block_t block = ^{ + + #if !OS_OBJECT_USE_OBJC + if (self->receiveFilterQueue) dispatch_release(self->receiveFilterQueue); + #endif + + self->receiveFilterBlock = newFilterBlock; + self->receiveFilterQueue = newFilterQueue; + self->receiveFilterAsync = isAsynchronous; + }; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +- (void)doReceive +{ + LogTrace(); + + if ((flags & (kReceiveOnce | kReceiveContinuous)) == 0) + { + LogVerbose(@"Receiving is paused..."); + + if (socket4FDBytesAvailable > 0) { + [self suspendReceive4Source]; + } + if (socket6FDBytesAvailable > 0) { + [self suspendReceive6Source]; + } + + return; + } + + if ((flags & kReceiveOnce) && (pendingFilterOperations > 0)) + { + LogVerbose(@"Receiving is temporarily paused (pending filter operations)..."); + + if (socket4FDBytesAvailable > 0) { + [self suspendReceive4Source]; + } + if (socket6FDBytesAvailable > 0) { + [self suspendReceive6Source]; + } + + return; + } + + if ((socket4FDBytesAvailable == 0) && (socket6FDBytesAvailable == 0)) + { + LogVerbose(@"No data available to receive..."); + + if (socket4FDBytesAvailable == 0) { + [self resumeReceive4Source]; + } + if (socket6FDBytesAvailable == 0) { + [self resumeReceive6Source]; + } + + return; + } + + // Figure out if we should receive on socket4 or socket6 + + BOOL doReceive4; + + if (flags & kDidConnect) + { + // Connected socket + + doReceive4 = (socket4FD != SOCKET_NULL); + } + else + { + // Non-Connected socket + + if (socket4FDBytesAvailable > 0) + { + if (socket6FDBytesAvailable > 0) + { + // Bytes available on socket4 & socket6 + + doReceive4 = (flags & kFlipFlop) ? YES : NO; + + flags ^= kFlipFlop; // flags = flags xor kFlipFlop; (toggle flip flop bit) + } + else { + // Bytes available on socket4, but not socket6 + doReceive4 = YES; + } + } + else { + // Bytes available on socket6, but not socket4 + doReceive4 = NO; + } + } + + // Perform socket IO + + ssize_t result = 0; + + NSData *data = nil; + NSData *addr4 = nil; + NSData *addr6 = nil; + + if (doReceive4) + { + NSAssert(socket4FDBytesAvailable > 0, @"Invalid logic"); + LogVerbose(@"Receiving on IPv4"); + + struct sockaddr_in sockaddr4; + socklen_t sockaddr4len = sizeof(sockaddr4); + + // #222: MGCD does not necessarily return the size of an entire UDP packet + // from dispatch_source_get_data(), so we must use the maximum packet size. + size_t bufSize = max4ReceiveSize; + void *buf = malloc(bufSize); + + result = recvfrom(socket4FD, buf, bufSize, 0, (struct sockaddr *)&sockaddr4, &sockaddr4len); + LogVerbose(@"recvfrom(socket4FD) = %i", (int)result); + + if (result > 0) + { + if ((size_t)result >= socket4FDBytesAvailable) + socket4FDBytesAvailable = 0; + else + socket4FDBytesAvailable -= result; + + if ((size_t)result != bufSize) { + buf = realloc(buf, result); + } + + data = [NSData dataWithBytesNoCopy:buf length:result freeWhenDone:YES]; + addr4 = [NSData dataWithBytes:&sockaddr4 length:sockaddr4len]; + } + else + { + LogVerbose(@"recvfrom(socket4FD) = %@", [self errnoError]); + socket4FDBytesAvailable = 0; + free(buf); + } + } + else + { + NSAssert(socket6FDBytesAvailable > 0, @"Invalid logic"); + LogVerbose(@"Receiving on IPv6"); + + struct sockaddr_in6 sockaddr6; + socklen_t sockaddr6len = sizeof(sockaddr6); + + // #222: MGCD does not necessarily return the size of an entire UDP packet + // from dispatch_source_get_data(), so we must use the maximum packet size. + size_t bufSize = max6ReceiveSize; + void *buf = malloc(bufSize); + + result = recvfrom(socket6FD, buf, bufSize, 0, (struct sockaddr *)&sockaddr6, &sockaddr6len); + LogVerbose(@"recvfrom(socket6FD) -> %i", (int)result); + + if (result > 0) + { + if ((size_t)result >= socket6FDBytesAvailable) + socket6FDBytesAvailable = 0; + else + socket6FDBytesAvailable -= result; + + if ((size_t)result != bufSize) { + buf = realloc(buf, result); + } + + data = [NSData dataWithBytesNoCopy:buf length:result freeWhenDone:YES]; + addr6 = [NSData dataWithBytes:&sockaddr6 length:sockaddr6len]; + } + else + { + LogVerbose(@"recvfrom(socket6FD) = %@", [self errnoError]); + socket6FDBytesAvailable = 0; + free(buf); + } + } + + + BOOL waitingForSocket = NO; + BOOL notifiedDelegate = NO; + BOOL ignored = NO; + + NSError *socketError = nil; + + if (result == 0) + { + waitingForSocket = YES; + } + else if (result < 0) + { + if (errno == EAGAIN) + waitingForSocket = YES; + else + socketError = [self errnoErrorWithReason:@"Error in recvfrom() function"]; + } + else + { + if (flags & kDidConnect) + { + if (addr4 && ![self isConnectedToAddress4:addr4]) + ignored = YES; + if (addr6 && ![self isConnectedToAddress6:addr6]) + ignored = YES; + } + + NSData *addr = (addr4 != nil) ? addr4 : addr6; + + if (!ignored) + { + if (receiveFilterBlock && receiveFilterQueue) + { + // Run data through filter, and if approved, notify delegate + + __block id filterContext = nil; + __block BOOL allowed = NO; + + if (receiveFilterAsync) + { + pendingFilterOperations++; + dispatch_async(receiveFilterQueue, ^{ @autoreleasepool { + + allowed = self->receiveFilterBlock(data, addr, &filterContext); + + // Transition back to socketQueue to get the current delegate / delegateQueue + dispatch_async(self->socketQueue, ^{ @autoreleasepool { + + self->pendingFilterOperations--; + + if (allowed) + { + [self notifyDidReceiveData:data fromAddress:addr withFilterContext:filterContext]; + } + else + { + LogVerbose(@"received packet silently dropped by receiveFilter"); + } + + if (self->flags & kReceiveOnce) + { + if (allowed) + { + // The delegate has been notified, + // so our receive once operation has completed. + self->flags &= ~kReceiveOnce; + } + else if (self->pendingFilterOperations == 0) + { + // All pending filter operations have completed, + // and none were allowed through. + // Our receive once operation hasn't completed yet. + [self doReceive]; + } + } + }}); + }}); + } + else // if (!receiveFilterAsync) + { + dispatch_sync(receiveFilterQueue, ^{ @autoreleasepool { + + allowed = self->receiveFilterBlock(data, addr, &filterContext); + }}); + + if (allowed) + { + [self notifyDidReceiveData:data fromAddress:addr withFilterContext:filterContext]; + notifiedDelegate = YES; + } + else + { + LogVerbose(@"received packet silently dropped by receiveFilter"); + ignored = YES; + } + } + } + else // if (!receiveFilterBlock || !receiveFilterQueue) + { + [self notifyDidReceiveData:data fromAddress:addr withFilterContext:nil]; + notifiedDelegate = YES; + } + } + } + + if (waitingForSocket) + { + // Wait for a notification of available data. + + if (socket4FDBytesAvailable == 0) { + [self resumeReceive4Source]; + } + if (socket6FDBytesAvailable == 0) { + [self resumeReceive6Source]; + } + } + else if (socketError) + { + [self closeWithError:socketError]; + } + else + { + if (flags & kReceiveContinuous) + { + // Continuous receive mode + [self doReceive]; + } + else + { + // One-at-a-time receive mode + if (notifiedDelegate) + { + // The delegate has been notified (no set filter). + // So our receive once operation has completed. + flags &= ~kReceiveOnce; + } + else if (ignored) + { + [self doReceive]; + } + else + { + // Waiting on asynchronous receive filter... + } + } + } +} + +- (void)doReceiveEOF +{ + LogTrace(); + + [self closeWithError:[self socketClosedError]]; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Closing +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +- (void)closeWithError:(NSError *)error +{ + LogVerbose(@"closeWithError: %@", error); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + if (currentSend) [self endCurrentSend]; + + [sendQueue removeAllObjects]; + + // If a socket has been created, we should notify the delegate. + BOOL shouldCallDelegate = (flags & kDidCreateSockets) ? YES : NO; + + // Close all sockets, send/receive sources, cfstreams, etc +#if TARGET_OS_IPHONE + [self removeStreamsFromRunLoop]; + [self closeReadAndWriteStreams]; +#endif + [self closeSockets]; + + // Clear all flags (config remains as is) + flags = 0; + + if (shouldCallDelegate) + { + [self notifyDidCloseWithError:error]; + } +} + +- (void)close +{ + LogTrace(); + + dispatch_block_t block = ^{ @autoreleasepool { + + [self closeWithError:nil]; + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); +} + +- (void)closeAfterSending +{ + LogTrace(); + + dispatch_block_t block = ^{ @autoreleasepool { + + self->flags |= kCloseAfterSends; + + if (self->currentSend == nil && [self->sendQueue count] == 0) + { + [self closeWithError:nil]; + } + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark CFStream +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +#if TARGET_OS_IPHONE + +static NSThread *listenerThread; + ++ (void)ignore:(id)_ +{} + ++ (void)startListenerThreadIfNeeded +{ + static dispatch_once_t predicate; + dispatch_once(&predicate, ^{ + + listenerThread = [[NSThread alloc] initWithTarget:self + selector:@selector(listenerThread:) + object:nil]; + [listenerThread start]; + }); +} + ++ (void)listenerThread:(id)unused +{ + @autoreleasepool { + + [[NSThread currentThread] setName:MGCDAsyncUdpSocketThreadName]; + + LogInfo(@"ListenerThread: Started"); + + // We can't run the run loop unless it has an associated input source or a timer. + // So we'll just create a timer that will never fire - unless the server runs for a decades. + [NSTimer scheduledTimerWithTimeInterval:[[NSDate distantFuture] timeIntervalSinceNow] + target:self + selector:@selector(ignore:) + userInfo:nil + repeats:YES]; + + [[NSRunLoop currentRunLoop] run]; + + LogInfo(@"ListenerThread: Stopped"); + } +} + ++ (void)addStreamListener:(MGCDAsyncUdpSocket *)asyncUdpSocket +{ + LogTrace(); + NSAssert([NSThread currentThread] == listenerThread, @"Invoked on wrong thread"); + + CFRunLoopRef runLoop = CFRunLoopGetCurrent(); + + if (asyncUdpSocket->readStream4) + CFReadStreamScheduleWithRunLoop(asyncUdpSocket->readStream4, runLoop, kCFRunLoopDefaultMode); + + if (asyncUdpSocket->readStream6) + CFReadStreamScheduleWithRunLoop(asyncUdpSocket->readStream6, runLoop, kCFRunLoopDefaultMode); + + if (asyncUdpSocket->writeStream4) + CFWriteStreamScheduleWithRunLoop(asyncUdpSocket->writeStream4, runLoop, kCFRunLoopDefaultMode); + + if (asyncUdpSocket->writeStream6) + CFWriteStreamScheduleWithRunLoop(asyncUdpSocket->writeStream6, runLoop, kCFRunLoopDefaultMode); +} + ++ (void)removeStreamListener:(MGCDAsyncUdpSocket *)asyncUdpSocket +{ + LogTrace(); + NSAssert([NSThread currentThread] == listenerThread, @"Invoked on wrong thread"); + + CFRunLoopRef runLoop = CFRunLoopGetCurrent(); + + if (asyncUdpSocket->readStream4) + CFReadStreamUnscheduleFromRunLoop(asyncUdpSocket->readStream4, runLoop, kCFRunLoopDefaultMode); + + if (asyncUdpSocket->readStream6) + CFReadStreamUnscheduleFromRunLoop(asyncUdpSocket->readStream6, runLoop, kCFRunLoopDefaultMode); + + if (asyncUdpSocket->writeStream4) + CFWriteStreamUnscheduleFromRunLoop(asyncUdpSocket->writeStream4, runLoop, kCFRunLoopDefaultMode); + + if (asyncUdpSocket->writeStream6) + CFWriteStreamUnscheduleFromRunLoop(asyncUdpSocket->writeStream6, runLoop, kCFRunLoopDefaultMode); +} + +static void CFReadStreamCallback(CFReadStreamRef stream, CFStreamEventType type, void *pInfo) +{ + @autoreleasepool { + MGCDAsyncUdpSocket *asyncUdpSocket = (__bridge MGCDAsyncUdpSocket *)pInfo; + + switch(type) + { + case kCFStreamEventOpenCompleted: + { + LogCVerbose(@"CFReadStreamCallback - Open"); + break; + } + case kCFStreamEventHasBytesAvailable: + { + LogCVerbose(@"CFReadStreamCallback - HasBytesAvailable"); + break; + } + case kCFStreamEventErrorOccurred: + case kCFStreamEventEndEncountered: + { + NSError *error = (__bridge_transfer NSError *)CFReadStreamCopyError(stream); + if (error == nil && type == kCFStreamEventEndEncountered) + { + error = [asyncUdpSocket socketClosedError]; + } + + dispatch_async(asyncUdpSocket->socketQueue, ^{ @autoreleasepool { + + LogCVerbose(@"CFReadStreamCallback - %@", + (type == kCFStreamEventErrorOccurred) ? @"Error" : @"EndEncountered"); + + if (stream != asyncUdpSocket->readStream4 && + stream != asyncUdpSocket->readStream6 ) + { + LogCVerbose(@"CFReadStreamCallback - Ignored"); + return_from_block; + } + + [asyncUdpSocket closeWithError:error]; + + }}); + + break; + } + default: + { + LogCError(@"CFReadStreamCallback - UnknownType: %i", (int)type); + } + } + } +} + +static void CFWriteStreamCallback(CFWriteStreamRef stream, CFStreamEventType type, void *pInfo) +{ + @autoreleasepool { + MGCDAsyncUdpSocket *asyncUdpSocket = (__bridge MGCDAsyncUdpSocket *)pInfo; + + switch(type) + { + case kCFStreamEventOpenCompleted: + { + LogCVerbose(@"CFWriteStreamCallback - Open"); + break; + } + case kCFStreamEventCanAcceptBytes: + { + LogCVerbose(@"CFWriteStreamCallback - CanAcceptBytes"); + break; + } + case kCFStreamEventErrorOccurred: + case kCFStreamEventEndEncountered: + { + NSError *error = (__bridge_transfer NSError *)CFWriteStreamCopyError(stream); + if (error == nil && type == kCFStreamEventEndEncountered) + { + error = [asyncUdpSocket socketClosedError]; + } + + dispatch_async(asyncUdpSocket->socketQueue, ^{ @autoreleasepool { + + LogCVerbose(@"CFWriteStreamCallback - %@", + (type == kCFStreamEventErrorOccurred) ? @"Error" : @"EndEncountered"); + + if (stream != asyncUdpSocket->writeStream4 && + stream != asyncUdpSocket->writeStream6 ) + { + LogCVerbose(@"CFWriteStreamCallback - Ignored"); + return_from_block; + } + + [asyncUdpSocket closeWithError:error]; + + }}); + + break; + } + default: + { + LogCError(@"CFWriteStreamCallback - UnknownType: %i", (int)type); + } + } + } +} + +- (BOOL)createReadAndWriteStreams:(NSError **)errPtr +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + NSError *err = nil; + + if (readStream4 || writeStream4 || readStream6 || writeStream6) + { + // Streams already created + return YES; + } + + if (socket4FD == SOCKET_NULL && socket6FD == SOCKET_NULL) + { + err = [self otherError:@"Cannot create streams without a file descriptor"]; + goto Failed; + } + + // Create streams + + LogVerbose(@"Creating read and write stream(s)..."); + + if (socket4FD != SOCKET_NULL) + { + CFStreamCreatePairWithSocket(NULL, (CFSocketNativeHandle)socket4FD, &readStream4, &writeStream4); + if (!readStream4 || !writeStream4) + { + err = [self otherError:@"Error in CFStreamCreatePairWithSocket() [IPv4]"]; + goto Failed; + } + } + + if (socket6FD != SOCKET_NULL) + { + CFStreamCreatePairWithSocket(NULL, (CFSocketNativeHandle)socket6FD, &readStream6, &writeStream6); + if (!readStream6 || !writeStream6) + { + err = [self otherError:@"Error in CFStreamCreatePairWithSocket() [IPv6]"]; + goto Failed; + } + } + + // Ensure the CFStream's don't close our underlying socket + + CFReadStreamSetProperty(readStream4, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); + CFWriteStreamSetProperty(writeStream4, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); + + CFReadStreamSetProperty(readStream6, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); + CFWriteStreamSetProperty(writeStream6, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); + + return YES; + +Failed: + if (readStream4) + { + CFReadStreamClose(readStream4); + CFRelease(readStream4); + readStream4 = NULL; + } + if (writeStream4) + { + CFWriteStreamClose(writeStream4); + CFRelease(writeStream4); + writeStream4 = NULL; + } + if (readStream6) + { + CFReadStreamClose(readStream6); + CFRelease(readStream6); + readStream6 = NULL; + } + if (writeStream6) + { + CFWriteStreamClose(writeStream6); + CFRelease(writeStream6); + writeStream6 = NULL; + } + + if (errPtr) + *errPtr = err; + + return NO; +} + +- (BOOL)registerForStreamCallbacks:(NSError **)errPtr +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert(readStream4 || writeStream4 || readStream6 || writeStream6, @"Read/Write streams are null"); + + NSError *err = nil; + + streamContext.version = 0; + streamContext.info = (__bridge void *)self; + streamContext.retain = nil; + streamContext.release = nil; + streamContext.copyDescription = nil; + + CFOptionFlags readStreamEvents = kCFStreamEventErrorOccurred | kCFStreamEventEndEncountered; + CFOptionFlags writeStreamEvents = kCFStreamEventErrorOccurred | kCFStreamEventEndEncountered; + +// readStreamEvents |= (kCFStreamEventOpenCompleted | kCFStreamEventHasBytesAvailable); +// writeStreamEvents |= (kCFStreamEventOpenCompleted | kCFStreamEventCanAcceptBytes); + + if (socket4FD != SOCKET_NULL) + { + if (readStream4 == NULL || writeStream4 == NULL) + { + err = [self otherError:@"Read/Write stream4 is null"]; + goto Failed; + } + + BOOL r1 = CFReadStreamSetClient(readStream4, readStreamEvents, &CFReadStreamCallback, &streamContext); + BOOL r2 = CFWriteStreamSetClient(writeStream4, writeStreamEvents, &CFWriteStreamCallback, &streamContext); + + if (!r1 || !r2) + { + err = [self otherError:@"Error in CFStreamSetClient(), [IPv4]"]; + goto Failed; + } + } + + if (socket6FD != SOCKET_NULL) + { + if (readStream6 == NULL || writeStream6 == NULL) + { + err = [self otherError:@"Read/Write stream6 is null"]; + goto Failed; + } + + BOOL r1 = CFReadStreamSetClient(readStream6, readStreamEvents, &CFReadStreamCallback, &streamContext); + BOOL r2 = CFWriteStreamSetClient(writeStream6, writeStreamEvents, &CFWriteStreamCallback, &streamContext); + + if (!r1 || !r2) + { + err = [self otherError:@"Error in CFStreamSetClient() [IPv6]"]; + goto Failed; + } + } + + return YES; + +Failed: + if (readStream4) { + CFReadStreamSetClient(readStream4, kCFStreamEventNone, NULL, NULL); + } + if (writeStream4) { + CFWriteStreamSetClient(writeStream4, kCFStreamEventNone, NULL, NULL); + } + if (readStream6) { + CFReadStreamSetClient(readStream6, kCFStreamEventNone, NULL, NULL); + } + if (writeStream6) { + CFWriteStreamSetClient(writeStream6, kCFStreamEventNone, NULL, NULL); + } + + if (errPtr) *errPtr = err; + return NO; +} + +- (BOOL)addStreamsToRunLoop:(NSError **)errPtr +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert(readStream4 || writeStream4 || readStream6 || writeStream6, @"Read/Write streams are null"); + + if (!(flags & kAddedStreamListener)) + { + [[self class] startListenerThreadIfNeeded]; + [[self class] performSelector:@selector(addStreamListener:) + onThread:listenerThread + withObject:self + waitUntilDone:YES]; + + flags |= kAddedStreamListener; + } + + return YES; +} + +- (BOOL)openStreams:(NSError **)errPtr +{ + LogTrace(); + + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + NSAssert(readStream4 || writeStream4 || readStream6 || writeStream6, @"Read/Write streams are null"); + + NSError *err = nil; + + if (socket4FD != SOCKET_NULL) + { + BOOL r1 = CFReadStreamOpen(readStream4); + BOOL r2 = CFWriteStreamOpen(writeStream4); + + if (!r1 || !r2) + { + err = [self otherError:@"Error in CFStreamOpen() [IPv4]"]; + goto Failed; + } + } + + if (socket6FD != SOCKET_NULL) + { + BOOL r1 = CFReadStreamOpen(readStream6); + BOOL r2 = CFWriteStreamOpen(writeStream6); + + if (!r1 || !r2) + { + err = [self otherError:@"Error in CFStreamOpen() [IPv6]"]; + goto Failed; + } + } + + return YES; + +Failed: + if (errPtr) *errPtr = err; + return NO; +} + +- (void)removeStreamsFromRunLoop +{ + LogTrace(); + NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); + + if (flags & kAddedStreamListener) + { + [[self class] performSelector:@selector(removeStreamListener:) + onThread:listenerThread + withObject:self + waitUntilDone:YES]; + + flags &= ~kAddedStreamListener; + } +} + +- (void)closeReadAndWriteStreams +{ + LogTrace(); + + if (readStream4) + { + CFReadStreamSetClient(readStream4, kCFStreamEventNone, NULL, NULL); + CFReadStreamClose(readStream4); + CFRelease(readStream4); + readStream4 = NULL; + } + if (writeStream4) + { + CFWriteStreamSetClient(writeStream4, kCFStreamEventNone, NULL, NULL); + CFWriteStreamClose(writeStream4); + CFRelease(writeStream4); + writeStream4 = NULL; + } + if (readStream6) + { + CFReadStreamSetClient(readStream6, kCFStreamEventNone, NULL, NULL); + CFReadStreamClose(readStream6); + CFRelease(readStream6); + readStream6 = NULL; + } + if (writeStream6) + { + CFWriteStreamSetClient(writeStream6, kCFStreamEventNone, NULL, NULL); + CFWriteStreamClose(writeStream6); + CFRelease(writeStream6); + writeStream6 = NULL; + } +} + +#endif + +#if TARGET_OS_IPHONE +- (void)applicationWillEnterForeground:(NSNotification *)notification +{ + LogTrace(); + + // If the application was backgrounded, then iOS may have shut down our sockets. + // So we take a quick look to see if any of them received an EOF. + + dispatch_block_t block = ^{ @autoreleasepool { + + [self resumeReceive4Source]; + [self resumeReceive6Source]; + }}; + + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_async(socketQueue, block); +} +#endif + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Advanced +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** + * See header file for big discussion of this method. + **/ +- (void)markSocketQueueTargetQueue:(dispatch_queue_t)socketNewTargetQueue +{ + void *nonNullUnusedPointer = (__bridge void *)self; + dispatch_queue_set_specific(socketNewTargetQueue, IsOnSocketQueueOrTargetQueueKey, nonNullUnusedPointer, NULL); +} + +/** + * See header file for big discussion of this method. + **/ +- (void)unmarkSocketQueueTargetQueue:(dispatch_queue_t)socketOldTargetQueue +{ + dispatch_queue_set_specific(socketOldTargetQueue, IsOnSocketQueueOrTargetQueueKey, NULL, NULL); +} + +- (void)performBlock:(dispatch_block_t)block +{ + if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + block(); + else + dispatch_sync(socketQueue, block); +} + +- (int)socketFD +{ + if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", + THIS_FILE, THIS_METHOD); + return SOCKET_NULL; + } + + if (socket4FD != SOCKET_NULL) + return socket4FD; + else + return socket6FD; +} + +- (int)socket4FD +{ + if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", + THIS_FILE, THIS_METHOD); + return SOCKET_NULL; + } + + return socket4FD; +} + +- (int)socket6FD +{ + if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", + THIS_FILE, THIS_METHOD); + return SOCKET_NULL; + } + + return socket6FD; +} + +#if TARGET_OS_IPHONE + +- (CFReadStreamRef)readStream +{ + if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", + THIS_FILE, THIS_METHOD); + return NULL; + } + + NSError *err = nil; + if (![self createReadAndWriteStreams:&err]) + { + LogError(@"Error creating CFStream(s): %@", err); + return NULL; + } + + // Todo... + + if (readStream4) + return readStream4; + else + return readStream6; +} + +- (CFWriteStreamRef)writeStream +{ + if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", + THIS_FILE, THIS_METHOD); + return NULL; + } + + NSError *err = nil; + if (![self createReadAndWriteStreams:&err]) + { + LogError(@"Error creating CFStream(s): %@", err); + return NULL; + } + + if (writeStream4) + return writeStream4; + else + return writeStream6; +} + +- (BOOL)enableBackgroundingOnSockets +{ + if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) + { + LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", + THIS_FILE, THIS_METHOD); + return NO; + } + + // Why is this commented out? + // See comments below. + +// NSError *err = nil; +// if (![self createReadAndWriteStreams:&err]) +// { +// LogError(@"Error creating CFStream(s): %@", err); +// return NO; +// } +// +// LogVerbose(@"Enabling backgrouding on socket"); +// +// BOOL r1, r2; +// +// if (readStream4 && writeStream4) +// { +// r1 = CFReadStreamSetProperty(readStream4, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); +// r2 = CFWriteStreamSetProperty(writeStream4, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); +// +// if (!r1 || !r2) +// { +// LogError(@"Error setting voip type (IPv4)"); +// return NO; +// } +// } +// +// if (readStream6 && writeStream6) +// { +// r1 = CFReadStreamSetProperty(readStream6, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); +// r2 = CFWriteStreamSetProperty(writeStream6, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeBackground); +// +// if (!r1 || !r2) +// { +// LogError(@"Error setting voip type (IPv6)"); +// return NO; +// } +// } +// +// return YES; + + // The above code will actually appear to work. + // The methods will return YES, and everything will appear fine. + // + // One tiny problem: the sockets will still get closed when the app gets backgrounded. + // + // Apple does not officially support backgrounding UDP sockets. + + return NO; +} + +#endif + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +#pragma mark Class Methods +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + ++ (NSString *)hostFromSockaddr4:(const struct sockaddr_in *)pSockaddr4 +{ + char addrBuf[INET_ADDRSTRLEN]; + + if (inet_ntop(AF_INET, &pSockaddr4->sin_addr, addrBuf, (socklen_t)sizeof(addrBuf)) == NULL) + { + addrBuf[0] = '\0'; + } + + return [NSString stringWithCString:addrBuf encoding:NSASCIIStringEncoding]; +} + ++ (NSString *)hostFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6 +{ + char addrBuf[INET6_ADDRSTRLEN]; + + if (inet_ntop(AF_INET6, &pSockaddr6->sin6_addr, addrBuf, (socklen_t)sizeof(addrBuf)) == NULL) + { + addrBuf[0] = '\0'; + } + + return [NSString stringWithCString:addrBuf encoding:NSASCIIStringEncoding]; +} + ++ (uint16_t)portFromSockaddr4:(const struct sockaddr_in *)pSockaddr4 +{ + return ntohs(pSockaddr4->sin_port); +} + ++ (uint16_t)portFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6 +{ + return ntohs(pSockaddr6->sin6_port); +} + ++ (NSString *)hostFromAddress:(NSData *)address +{ + NSString *host = nil; + [self getHost:&host port:NULL family:NULL fromAddress:address]; + + return host; +} + ++ (uint16_t)portFromAddress:(NSData *)address +{ + uint16_t port = 0; + [self getHost:NULL port:&port family:NULL fromAddress:address]; + + return port; +} + ++ (int)familyFromAddress:(NSData *)address +{ + int af = AF_UNSPEC; + [self getHost:NULL port:NULL family:&af fromAddress:address]; + + return af; +} + ++ (BOOL)isIPv4Address:(NSData *)address +{ + int af = AF_UNSPEC; + [self getHost:NULL port:NULL family:&af fromAddress:address]; + + return (af == AF_INET); +} + ++ (BOOL)isIPv6Address:(NSData *)address +{ + int af = AF_UNSPEC; + [self getHost:NULL port:NULL family:&af fromAddress:address]; + + return (af == AF_INET6); +} + ++ (BOOL)getHost:(NSString **)hostPtr port:(uint16_t *)portPtr fromAddress:(NSData *)address +{ + return [self getHost:hostPtr port:portPtr family:NULL fromAddress:address]; +} + ++ (BOOL)getHost:(NSString **)hostPtr port:(uint16_t *)portPtr family:(int *)afPtr fromAddress:(NSData *)address +{ + if ([address length] >= sizeof(struct sockaddr)) + { + const struct sockaddr *addrX = (const struct sockaddr *)[address bytes]; + + if (addrX->sa_family == AF_INET) + { + if ([address length] >= sizeof(struct sockaddr_in)) + { + const struct sockaddr_in *addr4 = (const struct sockaddr_in *)(const void *)addrX; + + if (hostPtr) *hostPtr = [self hostFromSockaddr4:addr4]; + if (portPtr) *portPtr = [self portFromSockaddr4:addr4]; + if (afPtr) *afPtr = AF_INET; + + return YES; + } + } + else if (addrX->sa_family == AF_INET6) + { + if ([address length] >= sizeof(struct sockaddr_in6)) + { + const struct sockaddr_in6 *addr6 = (const struct sockaddr_in6 *)(const void *)addrX; + + if (hostPtr) *hostPtr = [self hostFromSockaddr6:addr6]; + if (portPtr) *portPtr = [self portFromSockaddr6:addr6]; + if (afPtr) *afPtr = AF_INET6; + + return YES; + } + } + } + + if (hostPtr) *hostPtr = nil; + if (portPtr) *portPtr = 0; + if (afPtr) *afPtr = AF_UNSPEC; + + return NO; +} + +@end diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 0998e61..cb63cea 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -9,9 +9,9 @@ /* Begin PBXAggregateTarget section */ 0E87F100EFC3B44F5BB5AF12375D07F1 /* OpenIMSDKCore */ = { isa = PBXAggregateTarget; - buildConfigurationList = 8B01AA7742F11A0216B05AA927E0058A /* Build configuration list for PBXAggregateTarget "OpenIMSDKCore" */; + buildConfigurationList = 68A32CA569D382E0EF6F64823689DB89 /* Build configuration list for PBXAggregateTarget "OpenIMSDKCore" */; buildPhases = ( - 9C3AD94056D908812BA5E12CFF63EDC3 /* [CP] Copy XCFrameworks */, + 326D11B4BB33F302B3E3C1BBC9BB42AD /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -24,13 +24,13 @@ 7076D8346C63B23AFEB99C337B4FB476 /* [CP] Copy XCFrameworks */, ); dependencies = ( - DAB0B58F0B3BED768A9B0F0BB1868BB9 /* PBXTargetDependency */, + 44DDEE64FB3449B2B3E6F53316008432 /* PBXTargetDependency */, ); name = GYSDK; }; 39082CE2CA8065D786A75F5C09CFF2C0 /* AMapFoundation */ = { isa = PBXAggregateTarget; - buildConfigurationList = 89AA749B6C52668A1526F12E92C23B8D /* Build configuration list for PBXAggregateTarget "AMapFoundation" */; + buildConfigurationList = 36223DB09DB3CF57C120450B0C942271 /* Build configuration list for PBXAggregateTarget "AMapFoundation" */; buildPhases = ( ); dependencies = ( @@ -43,7 +43,7 @@ buildPhases = ( ); dependencies = ( - CF114D96576327C59773C0EC9865FFF2 /* PBXTargetDependency */, + A08C5B30F2EC99B5093898EB8BA4F890 /* PBXTargetDependency */, ); name = AMap3DMap; }; @@ -63,7 +63,7 @@ buildPhases = ( ); dependencies = ( - 84497B27C720F031D3E7C120FA160FB6 /* PBXTargetDependency */, + 41F47FE08C927557348C692B5934F3A4 /* PBXTargetDependency */, ); name = AMapSearch; }; @@ -79,7 +79,7 @@ }; 8194323886ECAF7E912EFDAFC84017AA /* ZXSDK */ = { isa = PBXAggregateTarget; - buildConfigurationList = 702C70FAB15C1256D5CDB0E1AE949E8D /* Build configuration list for PBXAggregateTarget "ZXSDK" */; + buildConfigurationList = 2D332E71D2EB81E9402144981B454116 /* Build configuration list for PBXAggregateTarget "ZXSDK" */; buildPhases = ( ); dependencies = ( @@ -92,7 +92,7 @@ buildPhases = ( ); dependencies = ( - C2B537A7B0121571C7968255381B9EAC /* PBXTargetDependency */, + DBC24143E98243D4AF1EA5BC398DF911 /* PBXTargetDependency */, ); name = AMapLocation; }; @@ -103,5127 +103,5288 @@ D984A768DD4A1ECAD484A89C6159909E /* [CP] Copy XCFrameworks */, ); dependencies = ( - F12D1B019C7180F20A92D3C2AAF995CD /* PBXTargetDependency */, + DB107D7CB98F06D8F8316BDF80F19D13 /* PBXTargetDependency */, ); name = GTCommonSDK; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 00163F4101C75E466D374529D3F742B7 /* AnimationConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D6DC81BAFA296758CF20F117E7A283A /* AnimationConfiguration.swift */; }; - 009F3E30D7FA73B953B542D6CE0478F4 /* Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42E84DD790B283F0D5185499E7E6716 /* Utilities.swift */; }; - 00D69AD872EF460A7A9715B345A1C31B /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = D08BE8E0FEE054D26245C2FF226177A0 /* Protected.swift */; }; - 010225CF66F664A19FA67E883D0A5BA6 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E1546130068EEAD3189EC41869D6F14 /* UIImage+Transform.m */; }; - 01216C042B056FFF0FC7EE32A002C38A /* IQKeyboardCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 525CD205D27F9863472F14703FE96F86 /* IQKeyboardCore-dummy.m */; }; - 01251B0F77150F7AB43D9384DF6307B5 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 769581DC9784BD5739E44A9BD1FEE12D /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 013D0B0A8786F5B34F039FB3704E12AB /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC5247F475E31AF3FCDD129E145E5EA2 /* Indicator.swift */; }; - 017B571D84F5F8CE98B17E0221D123EC /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = DC9DF62EF43848BE1C5F234D65BCBC98 /* PrivacyInfo.xcprivacy */; }; - 019E2E60370D97793F78BFA5B82E7F70 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7375C57236DEA3235E0F2EEB61FA4BC5 /* ImageProgressive.swift */; }; - 01A2F980FF2D6910240FF18E32D42F01 /* URLPathComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2FF16D1D087D591C2B162AEF8018694 /* URLPathComponent.swift */; }; - 01A8F02D2B45B1A7995955F2FA96BE80 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = BB3FD8C20C18627E7DFACF967A196E8D /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01DB231356AA70412D3F0CFD9DDD5536 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB3370B2D9A7B4B4FEE5BBFAC62D485 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01FCBA3480BF4F485F07F1C7B25B88D6 /* NSObject+YBImageBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB45231F1F5EB920B95C347ADDA37E0 /* NSObject+YBImageBrowser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 021063C8698125D953F5706AABD452C2 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C3F217B8362CC3E3556A8BBDC8F0693C /* SDWebImageDownloaderConfig.m */; }; - 02137A1D7F2DA49192522B3CF40ACB6F /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A5BFBD150FA1FFD5F8206A024E6D8015 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00163F4101C75E466D374529D3F742B7 /* AnimationConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D5B12012F6233B5D8F331C901A7869C /* AnimationConfiguration.swift */; }; + 0064701BFCF9493C543F9EA81131D857 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A509ACD41593F9645F64E6E501A170B4 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0069ED224FBE6CB9E7C00EFE24D18CE8 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 77108217CD9670D65A815C85CAD4BC74 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 009F3E30D7FA73B953B542D6CE0478F4 /* Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADDCBE1A39A53B0074D2F5EB3E791CCF /* Utilities.swift */; }; + 00A2D7844984BB5F3786A89A8583B088 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 712994A3D2CF6756C96528319EEF6AA9 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00D69AD872EF460A7A9715B345A1C31B /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC26C4F91EEB4297476C8D0F8B4D97BA /* Protected.swift */; }; + 01216C042B056FFF0FC7EE32A002C38A /* IQKeyboardCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B20E54E915DD05D6DC0A202B6A746A5 /* IQKeyboardCore-dummy.m */; }; + 0128B45833224DCB79FCE4EDBD501E43 /* IQTextInputViewNotification-IQTextInputViewNotification in Resources */ = {isa = PBXBuildFile; fileRef = F956E149F5B195BB7833F97FC6211AE8 /* IQTextInputViewNotification-IQTextInputViewNotification */; }; + 013D0B0A8786F5B34F039FB3704E12AB /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C427136B27DC559447F9182284C8042 /* Indicator.swift */; }; + 01461285DFE546C71E99B49A3BF32601 /* CocoaMQTT5.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6153E9D8FB50D6577852480096F689B /* CocoaMQTT5.swift */; }; + 018484B9FC55FBB212B6A2A24558C516 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF18E46D35DFA8EA15926BDEF825725 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 019E2E60370D97793F78BFA5B82E7F70 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2CD2E3BBF844A6612B4784DF5C04CFA /* ImageProgressive.swift */; }; + 01A2F980FF2D6910240FF18E32D42F01 /* URLPathComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E25ED01381098B01A662D40ED3B1C5E /* URLPathComponent.swift */; }; + 01FCBA3480BF4F485F07F1C7B25B88D6 /* NSObject+YBImageBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D69DB59BA23808B9FC7CA5290FE648 /* NSObject+YBImageBrowser.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0217BD2D535BBE17D651A40D117783C5 /* Kingfisher-Kingfisher in Resources */ = {isa = PBXBuildFile; fileRef = C298ABB78D9B05529B89D8322DB2E7B0 /* Kingfisher-Kingfisher */; }; - 02661A0934BC99375198D41EA84CDD7D /* YBIBImageCell+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E7CB556326C9077DF63BEEB7B2E40E /* YBIBImageCell+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 02683E28CDD2177B4C9357DE2703DDEA /* ControlEvent+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65D71891D845159664180BE4751EE547 /* ControlEvent+Driver.swift */; }; - 02D2DB67E038F3DAD4147733C3DAC7FC /* DDASLLogCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = DC26BBCF312733BE82EE83250C2C92A3 /* DDASLLogCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 02E3116300863BD1C354A8D903D7565B /* OIMMessageInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C10ED747514E81C114AB0F3CA16FEE2 /* OIMMessageInfo.m */; }; - 02ED202445E582ACB19CAAEFAC809CA3 /* PhotoManager+Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = A41EF41F02941532EE13C414E23DEEDD /* PhotoManager+Download.swift */; }; - 02EF3A9D8DDA3246BD301B1102089A2A /* Core+PHAssetCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89D6F4F353F9668ECBCBFBCFF03BAB81 /* Core+PHAssetCollection.swift */; }; - 02F77CF19A41C0AB44D560F038B17E47 /* IQKeyboardReturnManager-IQKeyboardReturnManager in Resources */ = {isa = PBXBuildFile; fileRef = 110BD425B6CAD6801539E2C6AB6E0662 /* IQKeyboardReturnManager-IQKeyboardReturnManager */; }; - 02F91E3C48D92BE962A7748A6788CD6D /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 584B397D010BE3052C3967E87A313165 /* SDAnimatedImageRep.m */; }; - 032A08256DCE07E9C62F690AA69B4D27 /* UI+SectionedViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 130BE4B7F904DF2C8DB08317F844B561 /* UI+SectionedViewType.swift */; }; - 03760AC656BC11C388DB4824EAF3EFF8 /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CECC955C1BC5B80B4C9603E67AF9B13 /* MainScheduler.swift */; }; - 03ABABC12DB32941CACA6E84B73A6E4A /* String+IdentifiableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = E91916B07C37A209D25B7D910842E604 /* String+IdentifiableType.swift */; }; - 03DDE32C9E982AE87E8AA3D926BCEB35 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A08D4E2AC3083940E2DD5AB50F42519 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 03DF4BF1D027604EBA81A2B71EFB9080 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58B9B2BED448FF6B8E278E87D6D430A3 /* QuartzCore.framework */; }; - 0416889045464020D660A5621EB34E34 /* AssetManager+AVAssetExportSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = E42FFE14BC42749A348DCFC03CFCB2BF /* AssetManager+AVAssetExportSession.swift */; }; - 042116C407630C22F93E1349008E29F8 /* OIMMergeElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5199447D815E8771DC0B057BD811E2AE /* OIMMergeElem.m */; }; - 045A49902242E7B3D70B9F988CA78AF5 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 82E339D953808BCD8DE3A8DE42F2039B /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 046C8CF4F5BC1F8F7AEB535E1FB5CFF9 /* TADotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 17FF6580767902B4011A015F2B07A578 /* TADotView.m */; }; - 047B4D6CD41F000AA47649010F82993F /* PreviewVideoControlViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5F61B293B8A4C483CC96C8328E45C9D /* PreviewVideoControlViewCell.swift */; }; - 047B5E7719C01E0B8F74EFF450844D54 /* MoyaProvider+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 753831899F12C2CB084FFE69415AB0DD /* MoyaProvider+Internal.swift */; }; - 04AC99F44BE90EF4C3AA1C4E650524A2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 04BE13B7BE601D68D258C5C2141CE32D /* VisibilityAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11557BC158C05BFB9E2F996F3EEF9C99 /* VisibilityAnimation.swift */; }; - 04D2FBEDB09B8FC903912AC7993FF237 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 29F796D6472EA6FC82B038C97ECF4785 /* CoreGraphics.framework */; }; - 04EB3FD7471864461899D550CEE10E67 /* SGTorch.h in Headers */ = {isa = PBXBuildFile; fileRef = 89178DBDEDAE6B75FB7DB74297B2681C /* SGTorch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 04FBCBF56FCF4C5D0720AC79C655568C /* EditorCropConfirmView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15D5EFF4E9FEA0C1A35B46E0B26B96DD /* EditorCropConfirmView.swift */; }; - 05258BE5ECB12221959C3063D7FC2D65 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A5645C607400D64B7E1AB629322A90E /* ShapeLayerModel.swift */; }; - 052A668537A68ED7885540E5C57DBFED /* DateComponents+Extras.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D36685DBD069796D57F250F298F4E12 /* DateComponents+Extras.swift */; }; - 053D5ECAC6AB411239EADAC1C5F02451 /* CompatibilityTracker.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D400804C9D63E6FC3EC09C0CDDD6D2 /* CompatibilityTracker.swift */; }; - 053E17D6D68FEA74FD5AE22B6802A997 /* SetContentProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3ED3DE1B23ED24A4AD3B102497F472B /* SetContentProviding.swift */; }; - 0543AA6007B40C505F972E8DFD40D358 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = B99344DA0C98D4C009A4E1AECCDF9459 /* RecursiveLock.swift */; }; - 054A91521A2745391CE2146B6F155213 /* ItemPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BDA68A4AB4B1C7ACD7A370540F816C1 /* ItemPath.swift */; }; - 0560CF0FAED380A38E9AC7B99E4DAA91 /* SGPermissionCamera.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E084374ABF7B54C419FC9A80C6AA656 /* SGPermissionCamera.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05900739BCE69610C92CB0C95F876B91 /* AnimatedControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90ABBE9D63AD78104E5DACFD423F724C /* AnimatedControl.swift */; }; - 05A4658C91684151AF00A23640687114 /* EpoxyableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA1147DBAED55DD02A850E00497B92DB /* EpoxyableView.swift */; }; - 05B425A1503F1F39BC47560E422BA861 /* EpoxyModelArrayBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 291F235F7EF38C4F833B4A14B6C4236F /* EpoxyModelArrayBuilder.swift */; }; - 05C2F1443184466A943591154955D0D1 /* SendMessageCallbackProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = CD009445A239BEED49369C3E6069079A /* SendMessageCallbackProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05E2B7C1DB7528A0BBEA1521BE0DBAF1 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 780859E89AEFB4AE5934635E23DD9F9E /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05E73561BC60D31AC165FAE1231C6478 /* PhotosUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1296678825E509F2A6EBEA9A83A60147 /* PhotosUI.framework */; }; - 05F4664FC4EF89925161A064AA6481BB /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFAFFED0F09E8D30612FFC64F749D3BA /* IQKeyboardManager+Position.swift */; }; - 061133BB6337EE5A3410B5128CFC2CE4 /* GradientAnimations.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC3BD5DF5C448ECFA97F2D14FD13D728 /* GradientAnimations.swift */; }; - 0633DE475D1D557CF95B89721060EA76 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 944D14CC3340E5906FB0AE787C227F8A /* SDImageAssetManager.m */; }; - 06365D4673388FDCBC959A28CAA66A2C /* KingfisherWebP-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F68BD6425465F18A23B292AC6D7B869 /* KingfisherWebP-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 064D909CD827405E8DCC309DB1B7775A /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E03558060FDD52E3C586D6C52AE3EEB /* ConstraintLayoutSupportDSL.swift */; }; - 0689573C4CB915F596ACA7E8D0FA2FA2 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21AA7EE52A3DAD218EF3EAB7703979AB /* RecursiveLock.swift */; }; - 06A37E1EACF17C6B94837E61D623B2DB /* sharpyuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B493390BFB085C207195D0FFD8C73B3 /* sharpyuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 06BF9E1DE98B5299648D75DE99246159 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8DA1971C85095100A5EE182440E27A2 /* Platform.Darwin.swift */; }; - 06CF4848159EBE88FF4132522F525057 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = BDE3C415D49D9DBEE2D6B0B692F711A8 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0742024C403D33DAE1A61F92BBFB5E77 /* Shape.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFA30AF832CB05775709E542E804898A /* Shape.swift */; }; - 074387D1012BC0F5C90B358F27A1331F /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55EA2E5B9949ED4975A64ED4EF5C4522 /* RequestCompression.swift */; }; - 07B21EEE77A36892011309491EB2EC0D /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCDE5AF3EB4961DEC846A4D7B35E777 /* Infallible+Operators.swift */; }; - 07CA17824EC0D3FEE27CD298B01DF318 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A9A5A6309F39C14ADCA5F233F829C0AB /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 07F13C3B7C638A4698BC8027BE97F41A /* InvertedMatteLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC837C19FBB78BFC74ECCA16877EF7B6 /* InvertedMatteLayer.swift */; }; - 080FBC62B74BF059220234CB58B07DF7 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7FE6109F51AB7D33301A8EC635FFAA0 /* Image.swift */; }; - 08245D4B470F47E0B48E2FAF0AC143A3 /* MarqueeLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3046218CAE71E06503DEE56FE37F2119 /* MarqueeLabel-dummy.m */; }; - 083B0B494C5F6B69924BB36E3850D23E /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2E935C69715E7BEAA6E8BB816DE0032 /* RequestTaskMap.swift */; }; - 084C46802D14C32B995FE54FB53ACD0D /* Core+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E097351E3CA0442F19440EBE19E5E6 /* Core+UIImage.swift */; }; - 084E92CB08662FC57F439221B88153F5 /* _RXObjCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = 4606C2115D48BBA83BE7F9CC386AB737 /* _RXObjCRuntime.m */; }; - 08719ABCE689ED74FE7486B1E49DAA6C /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F44A98B2397C9F6E5B8CFED65CE453 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0873B6769DCEF912824DEFEC89E814B5 /* PhotoManager+Language.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8223C1F95FE293B35A7BBCB5B6B8125 /* PhotoManager+Language.swift */; }; - 08805C91EE5E8F3B036C8A2944A1FEC0 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = B47068467C61A7C35C481F7855A87237 /* Map.swift */; }; - 08808820A664FF8A05D05673DFC2F0D9 /* Defaults+StringToBool.swift in Sources */ = {isa = PBXBuildFile; fileRef = D835F5767328148D3747835C4E0D09CD /* Defaults+StringToBool.swift */; }; - 08A74961FEEC9A18DF39B2D15B0FCA03 /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2F7D06A790CB3DE1726D6C0C304807A /* ObservableConvertibleType.swift */; }; - 08BAC516D9FC9F41B4BD38C7D32EEB00 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9446A922C299F4C733B3E3B64FC4DF /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 08CEC0498D8A036E9B1C73E75EA97DA7 /* Archive+WritingDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 803551D524EB59D9A654D4CB1D25BE8F /* Archive+WritingDeprecated.swift */; }; - 08D760F7FD56D081A8EC93E79E2AF58C /* Date+Compare.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC806792CC71E85249287A955EF3507D /* Date+Compare.swift */; }; - 08DE41CEAAE46D4F36B5A49C0215C73F /* YYAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = F92FC47C21AB70D50DE321EF7CDC1FEF /* YYAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 090DA6F59EF2FFD1D4CCF09575EB78EF /* ProgressImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4559C34E42D4D2C64A174AA002B8056D /* ProgressImageView.swift */; }; - 091C8409581AE1022225E05E5416E01E /* OIMUpdateFriendsReq.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D589F9274BAFDCFA26362A2DA2F9EB0 /* OIMUpdateFriendsReq.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 092C1D4CE48DA5E626971772CA2B63FA /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFE14717EDAB4A6C917DC1DC5F037922 /* Error.swift */; }; - 095210E5E9EA5A07D9E27224A6306B39 /* RxPickerViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C6E0BBACCC2ABD7E1753510C4D994B7 /* RxPickerViewDelegateProxy.swift */; }; - 0975A08237E7A3B1A89703DF4F95D2CE /* NSTextStorage+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C30CD98BDFEAFA1281C881CB316CD95 /* NSTextStorage+Rx.swift */; }; - 09B1E7904CF237490E6EA35DAB2AFD76 /* Marker.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEB9AB80392ECE7248709873DCA13FCC /* Marker.swift */; }; - 09D303C994021652DF841C463DBD1DC5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 09E1F569A93FAD4B9149E30B9301F44A /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB018CCCA925531421DF2AABFAE43A25 /* ConstraintPriority.swift */; }; - 0A064677F67C9C59B3EC08EA2C6882C0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 43E68058B169D1FBD605BEB82E2A7B8F /* PrivacyInfo.xcprivacy */; }; - 0A3AA3796404AE5372CD8BF82DB292CA /* SGQRCodeLog.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E3669AB59288D37DDEF78C1D1789C8 /* SGQRCodeLog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0A5209C46796D51E1A1887AD438B2B68 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A4D97DA05C3A8E92FE31917D35A2473 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0A543346E663B7BA3CC071AA92390EB4 /* TADotView.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB07160DFB218EECCC7DBA7F12212BD /* TADotView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0A58664142EA2685FD6FE2DF0AA0FBC6 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E906325386DD455125AD4ED4D148D2 /* UIImageView+WebCache.m */; }; - 0A6AAD2D2BA4C7238396D11707EAEA18 /* Calendars.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85D1B0A1709FD35727940D11722F80FA /* Calendars.swift */; }; - 0A7047F9F316230DC3D91A5506FCC0CA /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04FC9167B623F82556D7A2A397717795 /* PrimitiveSequence+Zip+arity.swift */; }; - 0A8D9AC2B8F9313FA1E0766D228E2633 /* YBIBDefaultWebImageMediator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA880E07DFDD100C561A72CF77D3DB3 /* YBIBDefaultWebImageMediator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0AB7466CAD9AFA68F7D623D26216DD29 /* PolygonNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = D48287B30F0088EC0C5310945CA4B7A1 /* PolygonNode.swift */; }; - 0ACE791308083423E3C7527EF3A9D5F8 /* unwrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC43992A1CEA954A9FF7EAFBFE2123A5 /* unwrap.swift */; }; - 0AD12222CC550A22E04D0C4CD300EEAA /* AssetManager+ImageData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F2F63F0B03B6BFA25E6C141689BD633 /* AssetManager+ImageData.swift */; }; - 0ADC968298C0D9A1089DF880985DBBAD /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = B9D4067406FA8209E984A168CBD3D6A7 /* SDImageLoader.m */; }; - 0AE6E0A416E18503E36FBDB73A7EB31F /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 16355D6BA368A1364975051A8532358E /* UIImage+ExtendedCacheData.m */; }; - 0AF16F084FDB6E84677C4692CD931EE6 /* TAAbstractDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B2B2FCF8F9A4061EFB2C1C80198FBF1 /* TAAbstractDotView.m */; }; - 0B3286E093C11F29E2781EB2C89E9145 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F7005538E0ADBFEE28935345444E9BE /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0B6EDB15A5AFF1C293C87685F2AFDED4 /* HexColorTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = E60749802573F5E98F0C09AA9D2F3812 /* HexColorTransform.swift */; }; - 0B72E2D6759DA3AD821EFD74DDD47A52 /* YYImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 32262A01385AA280BD0BCCC5C70A0237 /* YYImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0BC1D7B347B7BBFD5D95BBDA306E859A /* ImageAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2436D99B65B6A8D428A0B859116B860 /* ImageAsset.swift */; }; - 0BCB47E9D038A812EEBA83A8B9E5E7E8 /* PhotoEditorDrawView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94E6EE5AEC188C24CA3F770D37E635EC /* PhotoEditorDrawView.swift */; }; - 0BD03DDEEB3CBDB7C2D899140420AB5D /* YBIBVideoCell+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 59FF3CB194901CFCF1A50573DE01113E /* YBIBVideoCell+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0BD1E52C6A20A1E2F9B6044C2CF41DAC /* SDCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 57E2B9941F8CBF419C46C68C9AF8CE62 /* SDCollectionViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0BFC16EDC3C5B27C356AE6874D501A4F /* GradientValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 380BDB77A870AFA5A57428CCF35356E9 /* GradientValueProvider.swift */; }; - 0C9333022A04758AE828D9F279411DBD /* RxTableViewSectionedReloadDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A5AE75EBDE8DA870927704CD94AC0E1 /* RxTableViewSectionedReloadDataSource.swift */; }; - 0CA7A132ABE7018DE9295456732F38BB /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AA3C5C4BE5AF110BEF84C2B425AA0 /* ConstraintAttributes.swift */; }; - 0CC2D56EACB32070DB435FD288A1CD4E /* DidEndDisplayingProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5D3C4F3B57323AEE14C3961892E5BBB /* DidEndDisplayingProviding.swift */; }; - 0CEC3ACCB21A1514075A65CA04ED003D /* CALayer+setupLayerHierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0063BE2DFA2C0152F5DDEEF7CA4531B7 /* CALayer+setupLayerHierarchy.swift */; }; - 0CF8BA66E12078120DB863307972EEB4 /* MultiTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 961625FA203A229009E5377F960B59F0 /* MultiTarget.swift */; }; - 0CFF7D4D0E7F1D23CE8D0B8059428B78 /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = DEE0EF0F26FC8E76181FFE777C562CBA /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0D24F81A53BBD7B165BF5CB77A3C79E7 /* AnimatedSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BED7A2A6B98402F4898A2ED5031C9DD6 /* AnimatedSwitch.swift */; }; - 0D2AE7D9CDDDBC4664A8A74CA2824FCA /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C18AEDBF31CB2572AB07F8722E0870F3 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0D416C0305A0EC46EA7B9D44984DD1C1 /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 421FF5F39905655DDCE1A5F2FF2176D9 /* BooleanDisposable.swift */; }; - 0D56D4EF41351DAE13C3E467D4168FDC /* ObservableConvertibleType+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = E535975A1E831BDA5977960E97506533 /* ObservableConvertibleType+Driver.swift */; }; - 0D7A87A56DA3B690ECAE9690D7D86E89 /* YYFrameImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5369DE443FA67414E25C47C16C19CDD2 /* YYFrameImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0D938196DFD18FB78E92B65939ED3DF0 /* CurrentFileNameHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27759D268EA3293ACE7824423B8230A2 /* CurrentFileNameHelper.swift */; }; - 0D97A8A4AC6C7B5ECBC2120ADDF396E3 /* OIMFullUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 565598230E6135EF0029F6DFA99179EE /* OIMFullUserInfo.m */; }; - 0DB7EBD9B5E8EDE55DC6565BEFB2501C /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FB634BBC441E1A91C3B4D8D27BFF7BD /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0DBAE07ED5D8EFF25BD2F6B66EE97A50 /* YBIBAuxiliaryViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BEF055B7F4F83D3D0FEE7E0F24A888D /* YBIBAuxiliaryViewHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0DC813E62FCEF6C6C3009180D7790BFE /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 907CC3064F74B222E3E0073D5AD8B602 /* Result+Alamofire.swift */; }; - 0DE397C98C939B745F424A87A2B0F4C2 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 6FA64DC127F889004374FBFEC2973DD1 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0DE5DB9C6227B3416778D8417DD95EA9 /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24EB183736E04F3300474C4908E03098 /* ConstraintView+Extensions.swift */; }; - 0E13270B2F909467965F667C340E2179 /* CallbackContextEpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6C5691B4B9FEB2303C898F704D97B3F /* CallbackContextEpoxyModeled.swift */; }; - 0E30A2856E438861946ECEE79ADC366A /* Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E088D11842C15829D25C41127693532 /* Font.swift */; }; - 0E61B65A6B4B7D35361B09DD9328F462 /* IQPlaceholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2082CF6101F2C1D95E6AA64DA48FA9C6 /* IQPlaceholderable.swift */; }; - 0E658960F47D4CF87A47AA250064BA14 /* ignore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C734560368C98DD1126AAEE26285B2F /* ignore.swift */; }; - 0E69D7FEC523A96BAD55D2F023719866 /* partition+RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4DE10A108C2BBBDF4265A2B0E9396B5 /* partition+RxCocoa.swift */; }; - 0E7F7BDD99F835B83F946ED6E6C5E69E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - 0ECDDB52DFF2A8C21B6FEF7889ED3D7D /* DDOSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 12EE9646A1EE8B5F4F5EABA208A9045D /* DDOSLogger.m */; }; - 0EF10747EF2A02413E84BD5EF7C87A4B /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = E335BCACA8215B4F832B6972CE0B45A4 /* MJRefreshNormalHeader.m */; }; - 0F00F218544256F621E912A1B2D31E14 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A8167F7A91C1C9DD4217753A632852CD /* SDmetamacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 0F3F1ABE78283E64572B46B6F2128961 /* IQTextInputViewInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = C727B0032405B20871145670E76F6A35 /* IQTextInputViewInfo.swift */; }; - 0F4377E02EB437F7B9E8057DD477F38D /* PhotoAssetCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = D773DCDA3327CB85C313A8E3F689E532 /* PhotoAssetCollection.swift */; }; - 0FAE540AF1B286B3DB2B1A692C9CFA9C /* URLSession+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9813C135DE125969EAF42F73CC20580 /* URLSession+Rx.swift */; }; - 0FD18359A58F66248D18498A8252A505 /* AssetManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7736D9652CE71234ABED55D62ADBD35F /* AssetManager.swift */; }; - 10176A35E59957F7BEF5D7CC5C75D6BF /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACD8B678F457F12617E8F02C445A9F0 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 103337BF8ACBBD1355A09C1805816F01 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40B3777A774404758AB6FCB677DE0654 /* Platform.Linux.swift */; }; - 10358166A89DEA3283C1A996CD8DC55E /* GroupOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675B12B7CAD812ECF38A4EBD29B11E06 /* GroupOutputNode.swift */; }; - 106F4BFFBE4F028458C0C4A5BAFD3B41 /* YBIBVideoTopBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A3B7CF5EAD9973DAF3C6FFBAEE5AFE /* YBIBVideoTopBar.m */; }; - 1080C4E4B6FB8B1BD23CB4AE3A2C31C5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 108D25E96A8834F93D0DAD5C26D654C0 /* RxTableViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB06F3844E78B224186730DD60CA0865 /* RxTableViewReactiveArrayDataSource.swift */; }; - 10A4345F4313A493E14D63E1D3898591 /* CGColor+RGB.swift in Sources */ = {isa = PBXBuildFile; fileRef = 635BD03226AC5A8DC2C0FCBBE2A1A271 /* CGColor+RGB.swift */; }; - 10BF11AC5501D529FC0AC9C0EAB13BF9 /* ProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A87581B2556DBA6F40B051DD8E340A1 /* ProgressHUD.swift */; }; - 10ED26F8959949C6A935D09FA076BDA7 /* YYImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A10F0B9F0023A1C363E7C4517DDDBD /* YYImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1105B4A023D2B23A2003AF236E9376E0 /* BaseCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EA54F0BF8E86197CCAC3BD763221B5F /* BaseCompositionLayer.swift */; }; - 114069EBE34C9108E81D3884C4112C08 /* DotLottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0406D4904704EB518E43EE52B4F1D1AA /* DotLottieAnimation.swift */; }; - 1140FCB1BDC1B86277347BB1A1325370 /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC62F1FD8293CE55DC16776968CD8EFA /* LottieConfiguration.swift */; }; - 11538956E6B6D748323391EB865CBFFE /* UISegmentedControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A86E5B1317FA3F4A9D3EC10B4842235 /* UISegmentedControl+Rx.swift */; }; - 115E6A3F461DC8C1E92EFEE3058E0291 /* YBIBOperateBrowserProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C90D4DF6532EC599263E6EAF62E3B481 /* YBIBOperateBrowserProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1194E62AA3F6F506799B1A43B16942B5 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DC7F488D40CE43018AB21B6B897E2FC /* ConstraintDirectionalInsets.swift */; }; - 11C45A1CC537C7E9935BA352E85D1FED /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D47897E34F522D3CF1F0C22AB710E89 /* NSImage+Compatibility.m */; }; - 11C929E6BFB46F981685446F26DCE605 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C62129F292FE4AAAD3B0854D292C8412 /* MJRefreshAutoFooter.m */; }; - 11FC9573D3140E8580EE8B826043B4D4 /* YBIBSentinel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B158E503EAACD9D43DEF7BA2586498A /* YBIBSentinel.m */; }; - 126496714AD564062A8C10787CC01B8B /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = B9E550B72777FDD735DA970FB0A93766 /* MJFoundation.m */; }; - 126D18E956154F413FA6C9945824F505 /* IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52DFC3D116D363CE880108238BB7C1B9 /* IQKeyboardToolbar.swift */; }; - 12747F86266940B02E2B373CFB2EE754 /* OIMSoundElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A15F4C96CAED1C108C40708EE87EF4 /* OIMSoundElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 128276DC4BA59E2853877B13A2F4AEC1 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - 1296188B598424BFCB3A8F6EAC649A86 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = A8F92E2A7462A6E9C1EBE6F316F7E10B /* SDAnimatedImage.m */; }; - 12B0F9412DA72E5C518155799154EFCA /* NSObject+YBImageBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CA16EE1A89EBCA3540FF1842B65A1F0 /* NSObject+YBImageBrowser.m */; }; - 12EACF1F31743BA54D16E93D18AA3922 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65CFE3481B5AC8650B206B3A373CA75D /* ImageIO.framework */; }; - 12FD280D22C0437C026AE1532F1C1E9C /* IQKeyboardToolbarManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2E05EB2A16264EE344D5C57B626E0E7 /* IQKeyboardToolbarManager+Toolbar.swift */; }; - 1313426F64905A867293DAA192DDAB28 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = E620B11AE2F7F2E8AE1F8A1757329947 /* URLEncodedFormEncoder.swift */; }; - 13416A8B642871CADD954FD04797CC67 /* DataExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6F586A5D8FE098F83C58AFB7B88C5B9 /* DataExtension.swift */; }; - 138D67F6083B792390FB49401FC6B96C /* LayerEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54869EC81C5539A8AD92881BFD342D18 /* LayerEffect.swift */; }; - 13B0512A565AFF7DD1AF210965AB35FA /* DDLog+Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACFDC59C4D51BAC7D448516B4133A38B /* DDLog+Combine.swift */; }; - 13DBF1513F653277014B703362F3DFE3 /* Int+DateComponents.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DE992B84532B2F0319D59578C0E1B8A /* Int+DateComponents.swift */; }; - 13FA81FF80477E468F9F24ED719D367D /* UIView+WebCacheState.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C9DAE1505A940BA7AE87B8FD412527B /* UIView+WebCacheState.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1407DDEFD5573025A5DCF3952A155A14 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EEA47533FC8C4392A59226694906812 /* Filter.swift */; }; - 141E78E1381DBCAF7D310FCC1C8BA54E /* YBImageBrowser+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CB9679AFC8A1A93C637AD8DA4B2A103C /* YBImageBrowser+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1463FCD0976200B9E656F31FC5803F5C /* OIMFaceElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BCC4F82D2FB23B74FAFB19A6D5D21C1 /* OIMFaceElem.m */; }; - 146980AB2006B0CD80481D0F8B4E254C /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4A299CFB1CC50C15D414460381F776 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 146D792687FCC9B4459731BFB80EF030 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E04FBA11E10D9D33996D230B6C10B978 /* CoreFoundation.framework */; }; - 14943D0EE97A4966510A86F5C3FC66A5 /* MJExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F40F3FE6E6E74FE180EC6601023DBA74 /* MJExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14A37558E0138C9C3201C28578DA6EED /* CocoaLumberjack.h in Headers */ = {isa = PBXBuildFile; fileRef = E70DEF2275BA1DE435D81CA32E5E7FB6 /* CocoaLumberjack.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14E7FA491D8E0ADD6C6E74B1772E73CB /* ViewEpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = F559BB90CE3167F1DC71176358384C83 /* ViewEpoxyModeled.swift */; }; - 1509D9892B9A6D6BE7DE77053F26DDBA /* OIMGroupApplicationInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 560ABA646A2022BD1E5E93D0A9E39B26 /* OIMGroupApplicationInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 150AE9D9823A639C27DC66D0421797FD /* UIView+WebCacheState.m in Sources */ = {isa = PBXBuildFile; fileRef = 51F6B5ECB20B05B4A5117043241B8C90 /* UIView+WebCacheState.m */; }; - 150C4577BF48F57FB9C9117625A2C538 /* CombinedShapeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BD6B4F346C99BD856693783A8C59593 /* CombinedShapeAnimation.swift */; }; - 154230695B4E3D61B8D2BD02DAA2CE91 /* IQKeyboardManager+Appearance_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFE98B38843AE0C4E89B36CF77B5387B /* IQKeyboardManager+Appearance_Deprecated.swift */; }; - 15B86EDE2F58A6BFDC8A2FA898F256D4 /* UIColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA0BB7AB446A12933B77D4C0AE7B8AA8 /* UIColorExtension.swift */; }; - 16193C8B78D3C682E0C526D1DB17AD35 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50D8313D8270CA25B860F255BE28A21D /* TakeLast.swift */; }; - 1625D017B0A759A680FCB0C5C797A1A3 /* SGPermission.h in Headers */ = {isa = PBXBuildFile; fileRef = ABAA6161220738159EA6407CD6D75B1C /* SGPermission.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 16746E111A8A707073043335AEC0A654 /* SGQRCode-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 450ACC10D4C6E5EF773D09E25222F0C0 /* SGQRCode-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 16CC427093CE09F879561F11238C085A /* OpenIMSDK-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 20659E5169F93017F52987EB322E311C /* OpenIMSDK-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 16CF11A7B684AFF2F7B389CF10EF0EDD /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 850D41C7AEEAD377501D1391EFF8CD50 /* SDWebImageManager.m */; }; - 174953FEBCEE7B162A5EDB2290126D12 /* ImmutableMappable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5001850E080A2D52833E20CF7C699547 /* ImmutableMappable.swift */; }; - 178C56922BA738F67A565CA8681F0F05 /* OIMFriendApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 039025967C251ADD69ACE1553B51DDF0 /* OIMFriendApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 179439396BE32AAC0EBD8AF986573053 /* DDAssertMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E04BB4D8359BD5A95AAD8B56BFE57B6 /* DDAssertMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 17950D311BAF4B98B5BDB1D63C25457D /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA0874C875EC9052754A0E09B82B4E6 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 17ABD1A935188470A532AF5630EAE19A /* CGImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = D477BCCAE115C780D1F45A92E5F3BE15 /* CGImage+WebP.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 17BDA99227A012CF9CEA639D56A748A2 /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2AAA811CAAF000CD5110DE8E1FF8B85 /* RxPickerViewAdapter.swift */; }; - 17D774DAF5C4C286CCED8F85F4B36271 /* CodableTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87DDD42375DF8D0404926440BA144451 /* CodableTransform.swift */; }; - 1809335C833BF5E3FE86CB05C7075723 /* SizeValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BFE805D984AAEF8498138BA0166F120 /* SizeValueProvider.swift */; }; - 18280EBD305C8AA2B854584F685C75F7 /* UITabBarController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B4B93F368A61449309541689291E7CE /* UITabBarController+Rx.swift */; }; - 186A2DC5B476A02DCCFD4808E3325486 /* ColorValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0242CA8AEDD877040E56C254660FC43 /* ColorValueProvider.swift */; }; - 186B573F1BEB8A23419A02814A7741DB /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F4420A9FB2F691DC1A5C98FBAD4EB4 /* MJRefreshFooter.m */; }; - 18B278264A1FE87940BBC5A97028513D /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76F771CC8FF3EE94CAD251B016704D2B /* Rx.swift */; }; - 18F2FD69EBCB5B9F1941D0C1FABA4684 /* VideoEditorMusicAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8212076E19A3552BC329E458689B1B1 /* VideoEditorMusicAnimationView.swift */; }; - 19164B08BA217FB9A3A7F6E1AFF24AEC /* EffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48F6E0EA41E40ECC2E2F6DD4D0B38CB1 /* EffectValue.swift */; }; - 192D402166F9E726D8BFFDAB9F7A1686 /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = C71982C9D407CCE05012DF8D73A62516 /* Just.swift */; }; - 19449EF5B493DC41104B6ED4B6DBB907 /* IQTextView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D6A062A7548B784F291EECB08E8550 /* IQTextView-dummy.m */; }; - 19455C60A2177C13A8725D642AC1D990 /* CompatibleAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFEAA4C469AAC85BB62868EA0E706D5F /* CompatibleAnimationView.swift */; }; - 194AF5868782BB0839C3D4A3C1122B48 /* Core+UIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCA5382951AE75A98792835CE4E99624 /* Core+UIView.swift */; }; - 19C0FD2FFAF58F668A3FDC8386699728 /* StarNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57760EBDF3FB84060CA612EBDDE56C1C /* StarNode.swift */; }; - 19DCC268C6178B9F89DD7ADDFDB5F5FA /* PhotoPreviewSelectedViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA80AAE9A8F4745194A22138D50BAC46 /* PhotoPreviewSelectedViewCell.swift */; }; - 19E9F9236F77468892AE69B7F5ED27E8 /* DateRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F5DBC544730FD8223729C38F6CB1F5B /* DateRepresentable.swift */; }; - 19ECC094BE1E1C01F0BEFEEDC266A38E /* IQKeyboardToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66FE82E0510BC72FAD7C76AD60B9E90D /* IQKeyboardToolbarManager.swift */; }; - 1A10909BFF2392D9F946A6487405E164 /* RxTabBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C88A87AA6AF553A2EB67FF48CC974717 /* RxTabBarDelegateProxy.swift */; }; - 1A47F6B6428CC393D000C663CFBFF3F5 /* UIBarButtonItem+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08B73798103120C7A3AF0D936520F1C0 /* UIBarButtonItem+Rx.swift */; }; - 1A4BC84B0C50F51F8FFE8A37227EE46B /* RxCollectionViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E5634D8FC150EAF451F26D4D2ACDD62 /* RxCollectionViewDelegateProxy.swift */; }; - 1A7B9ED5CA59C67DD04CAC926E695425 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C0F4847E0F170E3F59D0BC7F2811ED /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A7E28AA5B547FD2C03AB849E47A73CF /* not+RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = B256BABEEDB82B55BD4DFCE193D4745E /* not+RxCocoa.swift */; }; - 1A8C915663836B11DC3524DAAE284FF7 /* OIMVideoElem.h in Headers */ = {isa = PBXBuildFile; fileRef = BD860D73C4D35821C2B060BD58768183 /* OIMVideoElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A9393A1B5F70A3BFCB9967DFFA7980E /* PassThroughOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2377187B31347A650A1587E782382FA /* PassThroughOutputNode.swift */; }; - 1A98401B81923265F3F2F1533C629044 /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1455F488C0E919D87D16AC66AD04C9B /* PrimitiveSequence+Concurrency.swift */; }; - 1AD63F875F45797E7C1D46E7C898CFE9 /* AssetManager+VideoURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A2B506E2416B5C91B799DFE0B69F278 /* AssetManager+VideoURL.swift */; }; - 1AEB50393C88A3A8E94E1C7F17881747 /* LayerModel+makeAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 745E49067846460E0A71AE45B322158C /* LayerModel+makeAnimationLayer.swift */; }; - 1AEBA7397BE356EB62FBA07D451124BD /* YBIBImageData.h in Headers */ = {isa = PBXBuildFile; fileRef = 797D2CF8D70578E3BCF39EF8F5D828CE /* YBIBImageData.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1B54B5D6BBE60B992AD6E0B0C38B54D8 /* DDFileLogger+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC105F4B4286E65A9A821818A51A5FB /* DDFileLogger+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1B5B440676B88E51CC477BE0C3EB7BD4 /* YBIBDataMediator.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F040177292504B70D8F778A5E3CD95B /* YBIBDataMediator.m */; }; - 1B6904F021949ED4F17DE3BFFE7C55E2 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - 1B87A741E524BA00E3CFD3A38E24F71A /* OIMUpdateFriendsReq.m in Sources */ = {isa = PBXBuildFile; fileRef = BB4CCEF4612B6E93B18A7AB979A7B8E6 /* OIMUpdateFriendsReq.m */; }; - 1BA63FA9A4AB11699E3B8636B3F7A504 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B830DCD4FD06C452454EBFFF301A61 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BA75F56E78A454136945A7C6F67BEE4 /* StrokeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DABBD081B5C4DA063F4DB121147E586 /* StrokeAnimation.swift */; }; - 1BAC69260156BD0B7C09BAE5D070F0D0 /* YBIBDataMediator.h in Headers */ = {isa = PBXBuildFile; fileRef = 51DC42C2419121C34A1A37FAEF5CADCD /* YBIBDataMediator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1BDE2FFB1EFA43AD2D8EADD6BD3D851C /* repeatWithBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22AAC60424375432315859887EDB95E9 /* repeatWithBehavior.swift */; }; - 1BEF0570918130CB9C4E7EE398035F17 /* ColorEffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE8AC2C8937DC5474F53AD860FC089B9 /* ColorEffectValue.swift */; }; - 1C016469B5AA70C08BDFECAA27EAB051 /* OIMLocationElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 34B31BD1C43D0EDD718C40AF38280324 /* OIMLocationElem.m */; }; - 1C2F9A89151532ECE06B20206EEACCE5 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager in Resources */ = {isa = PBXBuildFile; fileRef = 80A40EDA3AF0499BDBCFF09467BB49AD /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */; }; - 1C4341D3342F37B1C47EE7F2B75E2CB8 /* SharedSequence+Operators+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E76BF6D7E4423019EBAB88941DBFA91 /* SharedSequence+Operators+arity.swift */; }; - 1C4D430B867251402232CD36BA776B17 /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 716510DE893831EBA6423B0D86C62DDB /* ImageView+Kingfisher.swift */; }; - 1C5A7BFB8D2A5906F22C3F37C11CC18C /* CompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B702621E70E249E80F3885815B6D43E0 /* CompositionLayer.swift */; }; - 1C5DCB1C09DFE05047C4F73EA34A065D /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 16CB11B23A5ACD2B188960D308AFB6DF /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1C830DDC3D4ED10535E1D569D66A6CEC /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22391A5817E334075345521FE1174BED /* ConnectableObservableType.swift */; }; - 1CBC86CE3D92034C0EFCB7E717132C29 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40AA1A10068FA06843F9B866D1548021 /* Queue.swift */; }; - 1CD64DB96914999F5DB0A8E5156C82EB /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABDDA2F98E6FF243C9EAAF78BE220BA3 /* UIView+IQKeyboardExtensionDeprecated.swift */; }; - 1CFA0634F7CCBDDC1985E4C56876EA3C /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80FC60B5A2EE8A0941AF06CB71BD4601 /* Asset.swift */; }; - 1CFAEF271291CF9E61AB9A05C13CE091 /* ObservableType+Weak.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B95BC3382D56B69F02F01E003F03796 /* ObservableType+Weak.swift */; }; - 1D1144A29931237DA172952B098FA026 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C64131280A69B51A01F471E184A6303 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1D147502E163B4AA9D2C66CB26A2C14F /* StrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E3C9772593EC36053DCE3AD21CDA16D /* StrokeNode.swift */; }; - 1D2CB89B3DBBC0EBB613F753F58FAD32 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC74A3DD06D0A473754208FC64517B43 /* Date.swift */; }; - 1D2D66E3331F77A55BB82C3920F7C40C /* OIMManager+Group.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E5EAE84819EF1BA77DF74FCED0F3399 /* OIMManager+Group.m */; }; - 1D74158DCC81C4E83C0A8945EDE69C86 /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 203E00991678D02363AB9B6B65D253A5 /* SizeExtensions.swift */; }; - 1DAD16111DCF0BFEDDF9BD4D09008454 /* DotLottieManifest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10BDD4803F2D3B0D30C89BAB4D03D216 /* DotLottieManifest.swift */; }; - 1DB413B01CC591F2EADBBE0923F02E8E /* mapTo+RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2131626EC27604913E004ACB3CBC060A /* mapTo+RxCocoa.swift */; }; - 1DCE04A9FCE27FC61473B81D02AEAC8E /* IQBarButtonItemConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB38A21B400317176AA9BC8FFBF61A5E /* IQBarButtonItemConfiguration.swift */; }; - 1DE5A65531D35FBB1E317481CD316342 /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7E6A17940D1B64025EF4866E44EB716 /* ImageModifier.swift */; }; - 1E38D43C5BCA95E8CC8DF9A5DAE7A4D5 /* UITextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DB8DC9169D71A0D31807029AF82F168 /* UITextView+Rx.swift */; }; - 1E5AAE8872B0EA30EF8795F9ADD121CC /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A226DD5B5DE35D44F9321FEA69D7502 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EA011B45EC780B434507AFB3D9647ED /* NSObject+MJCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = DA665FB1BA93A17FF0554D6D7B30AD0B /* NSObject+MJCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1ECC5F320AEFB120081358B4FFB7442F /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FFE248620888CCBBC57FC0D85239779 /* NSString+MJExtension.m */; }; - 1F14E7B047EF0704D6AEC1C2DCF78B1C /* SDCallbackQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = AD1C37483F1765480EA3F2E60B78344D /* SDCallbackQueue.m */; }; - 1F2DEB722138E3D7CCC4A02F01414AEC /* OIMUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE753BC375C0C5909BCC6A256CBBD0C /* OIMUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F39EA6FC15C297E962E3F767D38B951 /* IQTextInputViewNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 080BA283B9623B19CAC631DFF76437E6 /* IQTextInputViewNotification-dummy.m */; }; - 1F78DE9E7ACC9AC18383BDA3886A4320 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 164C4FECB95EA7C55B2E7FD4257F2960 /* Range.swift */; }; - 1F843A0B4CC4D94F6DD9D266567AE6DB /* BaseConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3189E630103A74A0218C59894B1E16A8 /* BaseConfiguration.swift */; }; - 1F95E373A37C5625CC6CD68D1F433556 /* PreCompLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F774BD72D02B75021A7214A32F49A43 /* PreCompLayer.swift */; }; - 1F99468BBFBE7CE266CF259EA2A0B50A /* lossless_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F1EE42D6061CE2501B5E1A22B55D08D /* lossless_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1FAC5166DD3165E52DAACE50A194AE9E /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B4EA8A05D522735104DD7E10130C37B /* Producer.swift */; }; - 1FBB47887AF2968FBFB65187522F2BFB /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 60468C1CDF1862AB603DFA2962774120 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FBC61AD6C848603C1B3AE2B8CE82C0F /* YBIBImageCache+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A35504DC759D1D6D581B34A9591AB9F4 /* YBIBImageCache+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1FBE17889C1976DC4022F1202E19E5EC /* OptionalType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BE0270AFD495A209831013F68A46EAA /* OptionalType.swift */; }; - 1FE523A57E1F050C9462927D72E6453E /* PhotoEditorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0718A024C52D04F10056B23069A34F1 /* PhotoEditorViewController.swift */; }; - 2014B01D7621E7DDAA1C4784FF7EF0D3 /* DotLottieCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E8AF1331E01EDB4F004F4129550A574 /* DotLottieCacheProvider.swift */; }; - 202812410FF22B588DF523787B54E176 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 20342C3491090D9F1DB91C5CE745291E /* ItemsExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C7351CB3EB502D83F5D34EE4B38D7D8 /* ItemsExtension.swift */; }; - 2055774CD703B52DABFB1CC588394A94 /* MJExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C816BC11F808237533A304258E6B9519 /* MJExtension-dummy.m */; }; - 205EB01AED14BB574DD54EAFE26E4786 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 208BA7E9A4055B273B4BA785F0A0E6E5 /* SectionedChangeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = E27470085DEB31191E56C66DFE1A64EF /* SectionedChangeset.swift */; }; - 209449480FF69F2FB4146CDA1765BAAB /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C8B492C658E83648F36B13B1502DD29 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 20988E7C942B437989E7A7BF1F8E9136 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1C6598101489A7E7111805E5CF77949 /* DispatchQueue+Alamofire.swift */; }; - 20FDBBA13FADC258306290D61E078B30 /* UIView+SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5C78551AE5DF3F869970B180F880896 /* UIView+SwiftUIView.swift */; }; - 210F7EA56537707CB22ED35A96752D3C /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5D3CD64711395EDE1E0558AA48CB7F /* types.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 213346E0F366A1B688A63C84AC78E925 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = D712C754D0B3BEFA8D9854077BC94893 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 215254D820230480A086DCC6E323D256 /* RxDataSources-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4163D447B518D4BC6E0EE0EAC80736EC /* RxDataSources-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 21ADD9908F7B0003FCC8E1D221548068 /* MainThreadAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36CF504BACFF929BC4D8BACB9C800E9F /* MainThreadAnimationLayer.swift */; }; - 21B415E684E478369BB5D2C63382C613 /* VideoEditResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8FC5D8D4CAD082AFDF06500203F157F /* VideoEditResult.swift */; }; - 21F6EE314B4240BC580A3DC7A29F23DB /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8E122838BA266BA2FC542DB6D6CA7FC /* SerialDisposable.swift */; }; - 21FF1ECA305411EED75B074549EDCECF /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DC53E0ABF02CD9BBAB8D62559EA0E36 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2217E80655E7B80BAAF4306735E008A0 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = DD3998C13E9D092608AC6F455C49F819 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 22516EA77E7120000632C30BD9A03927 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = D27C029A21462E439909BC6A1460A0D3 /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 225B339BBBB5BADC1BCA9E6E050486C2 /* HXPHPicker-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E262E45D9D025FC0B1E6F5F63C96BAC /* HXPHPicker-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2260352B17E9CBFB9A5E5306851A2649 /* DDContextFilterLogFormatter+Deprecated.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EE4B63201F50240A5E467DFB9D59047 /* DDContextFilterLogFormatter+Deprecated.m */; }; - 227638CEE6F92D3BD0F9B0D45B49C833 /* RxTextViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93EB8108EBFD809D4BA7DD0D01AC8F2F /* RxTextViewDelegateProxy.swift */; }; - 22ABB2CB25ECF7224B583221B4C97CBB /* ReducedMotionOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD5E810B692FBB786B2032A23F252AFE /* ReducedMotionOption.swift */; }; - 22EF1D1B405331F794F1D42A447A1E9C /* FromJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4E622365146682D7E08A6242B2B73CB /* FromJSON.swift */; }; - 234F0B1EC64D7CDEB732BDA103C452DE /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E975FB8AAE5124E00FDEC64DB28529 /* Deferred.swift */; }; - 23E0E5B329060D9643B8C247723D203F /* PhotoEditResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3DD3163F3F69703D57F0C5EE33BFEE0 /* PhotoEditResult.swift */; }; - 242F4F563272D34C38C98D5D4F9F92F8 /* IQKeyboardNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17C56352D67E8BCA827335C748E6BF1E /* IQKeyboardNotification-dummy.m */; }; - 243FC08968D968284B21109B4C52F5A1 /* CompoundBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6C2FBB7FA150DD8D8F445CC781BF20D /* CompoundBezierPath.swift */; }; - 244C78EA225D2E2BD955913E5D38DBA5 /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3D8BAD44D231ABE9E2CF363728BB827 /* Infallible+CombineLatest+arity.swift */; }; - 24637C51989929A62E5E75585544A14D /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE2806152713FE09C2CB6AA76C33BD73 /* IQKeyboardManager+Debug.swift */; }; - 2484ADD920601725235FE16E245C687C /* IQDeepResponderContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADE1736DF811673FB2909732A3F3BF40 /* IQDeepResponderContainerView.swift */; }; - 248FE8D6745BB73161E3D1118BB9CDF8 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = C13189BB9C5B978BC239E0FC3A946821 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 24A4CC474AE353733E5372A03F61BF2B /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 64DA66D7FA4D6D1DFF8EB0A3D5A1B537 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 24E72CBC4A4DB70615D5F552218E906D /* CoreTextRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4B19EAC26B64E59FF162E36726E6092 /* CoreTextRenderLayer.swift */; }; - 24E963C1D6245F98BAC8A0ACCB7DE987 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = D3DF20CFF93070089A3F83A2130C4121 /* NSBundle+MJRefresh.m */; }; - 24F05AE767C4BA4A3D46405B285C1917 /* LayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3EEB3D929F12DA17005E1F37882A2F8 /* LayerModel.swift */; }; - 24FBD47B712E095533043716EC91A2A6 /* IQKeyboardToolbarManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 963E16D80DDA6E3F39317FBEEF4A019F /* IQKeyboardToolbarManager+Internal.swift */; }; - 250DB522E2B88BC538C5B468436228DC /* SwiftLogLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = B053BB799704A9F6F6384BBAF294DA09 /* SwiftLogLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 254CE2A3C57933C285803C1241806765 /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBC3EFE6841863A2FC0E1F280D5E0C18 /* WithLatestFrom.swift */; }; - 2558B9A09FEC5710F7D00DD5E3E053C5 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB0C8AFD4E85D17435F4F56F8794C41 /* Request.swift */; }; - 2567FE276DB76481DEFC7DDFE7D775CC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 25691C42AF5ADC1B7AABB62199030F4E /* URLNavigator-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 457470DF1C51CF053BB4ED593859965A /* URLNavigator-dummy.m */; }; - 2592486071DE6F98A5C55F487F7FA386 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = F91BB611743387130526B221F2AD7EC3 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25CE41F0442E533D2AB0256D4527FFCA /* Binding+Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE5939CE0FDBDC6B3C62814EA03E1F30 /* Binding+Map.swift */; }; - 25DC15011A46811CCD6ED7C3F8C0D96B /* DDAssert.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57F981F58E1DB9D729CF4481BFD2287F /* DDAssert.swift */; }; - 261EF92C048F313E01114B86B08D0E73 /* YBIBVideoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F49EC34BA25445FFAFDB75752FD9EFFE /* YBIBVideoCell.m */; }; - 263DC1F3C2EF5F1B9D867061F1E91853 /* SGScanViewConfigure.m in Sources */ = {isa = PBXBuildFile; fileRef = A10D88129CFDA405482F878874F048F1 /* SGScanViewConfigure.m */; }; - 2688DF9C89CE58D50C174F1E1BB89DE4 /* SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 344CE732EC91350D560B03E4C413A059 /* SwiftUIView.swift */; }; - 268C2C9BBF4967CE0B06DAE477030173 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF15FC481CCD2B54A0EF2DC21F04F419 /* Interpolatable.swift */; }; - 269A492E07AD9684E6B11AAA03B97264 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E33D64E680019C177618308CB75EF6A /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 269D5BD5031AE2E93B3ECD48F9FAFBFA /* YBIBAuxiliaryViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 28D97C1931912760D88F8AEDC0081E77 /* YBIBAuxiliaryViewHandler.m */; }; - 26A74998FF747B99E618103E7902EDC3 /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78F7A8987B24B2D899CBD7F38349871F /* KeyframeInterpolator.swift */; }; - 2703C0DC58FB460C01ADE8E8D22C9F62 /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4829363F4F1E0B4952D62D858E19E4AD /* SessionDataTask.swift */; }; - 270B3843CF38BFC4CC014912C65372BD /* UIRefreshControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 356B08F72A46EBDA220703321CE1814C /* UIRefreshControl+Rx.swift */; }; - 27485CB5DD472CBEDABEF78CF9DD36E3 /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 036352F214EB5A26251C99D81D7BF15C /* Date+Dispatch.swift */; }; - 2776432A35C89643DCFD114EEC2DE838 /* DDDispatchQueueLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D7C53CFA21D0B65B5810275F9B1B2F4 /* DDDispatchQueueLogFormatter.m */; }; - 277E92350B422767A7A8C06B450D05E0 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 726A570EB3A764BD9182B257D8A9B086 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 279197F2D4222FB813C09D15F93F0051 /* Observable+Alias.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79397AC7344C5EAFB7C39EC8AC865589 /* Observable+Alias.swift */; }; - 27A5B531FBB9758A4C8EBD45F7D46B34 /* UIView+RespondersObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E3A4D823011F833B4CE1C1AB3DC381E /* UIView+RespondersObjc.swift */; }; - 280159C811343669BD8CA8A23A24DF75 /* OIMConversationInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 75E5014C5A20DE4797B4451A675607F3 /* OIMConversationInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 283D02109109BBD9F05A22C4EBA4E3B5 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE2132552A633B5B0604562F34FC8D0 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2849A018772515A2A420A69B13954E8F /* PreviewVideoViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21DB69F87DC93861A4FEB14C6B788C7E /* PreviewVideoViewCell.swift */; }; - 2856121070FEFC1B4D77693641551510 /* YBIBPhotoAlbumManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D78C9FF90C7172E103F3D42D122546 /* YBIBPhotoAlbumManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2865DC1A7B133D7BE1C40975DFFA1D9D /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C92449F72A6498CADEADD96E8DC26B9 /* ObservableType+Extensions.swift */; }; - 288CD3416B265CAC1300D7938167AE66 /* MJPropertyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = DC9F85B076220EC545A9E0817FAA7561 /* MJPropertyKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 28BA9702905AA2B4C1E9E4878032D4E4 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 71DF2431E6CA3D1CAA83A2C349EEFD5D /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 28DDF775177170CEF65E550AD4EF6111 /* OIMSimpleResultInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = CF707A0420C20F296F4B5A4D3D2534DD /* OIMSimpleResultInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2962C56DA00F10C519469C70EB1087B3 /* CocoaLumberjack-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C90B489DE950DD12FC8930AC3EAFE6AB /* CocoaLumberjack-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2966C57815E8A7DFC25ED23AFAD66C31 /* BundleImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E29063E89830E3D7872C21835ACA7C8E /* BundleImageProvider.swift */; }; - 296BF59A80969CF54CFCD4908064CF87 /* NetworkActivityPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76C66EEFD236908E007E71E3DEB9A2C1 /* NetworkActivityPlugin.swift */; }; - 299BC9F3FD6FDB13F90CAADA0E85E625 /* OIMSimpleRequstInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 27C4EB466DCF1D0C56B87A1492131A17 /* OIMSimpleRequstInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29BBECE17A90C0CE055D94D4C7DC96A1 /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4F5EC1C754116115B07C3500772FE8C /* Optional.swift */; }; - 29C0DBA2B06EB4A2A273B356AEDD27B5 /* Vector1DEffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 489AB4A9B338E825DFFB1745D2B1E16E /* Vector1DEffectValue.swift */; }; - 29C433665FA967606C6CD5B8A265D1B6 /* Moya-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C805396EBE9A3676570EE86EDD4E85 /* Moya-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29D4B4F01F898A67E67DCC582FD06AAF /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DC1922990EE3C6470B7E270DD74209C /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A00AD64351718EA40475CCF924B0870 /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB4DCA05AF0C1A1C21B89A7468E041BE /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */; }; - 2A5D5D23BBA9E041D733CA56472C1F4C /* BezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9469079C705E0ACD65CE0D499E85ADB /* BezierPath.swift */; }; - 2A61C66DF98A7F7FC183B67F5B9F97F8 /* CallbackProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F0240DF73AE0C77CD3F808BF400356 /* CallbackProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A8F210A67132914E0613F1C99193F7C /* PhotoPickerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F1950A2EA3EAEE2DB8542A2B3D3F33 /* PhotoPickerViewCell.swift */; }; - 2AA4D8A29372E9703E65E22948131B63 /* ClassReference.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43CBA87A6062D67B43C728A78CDD889F /* ClassReference.swift */; }; - 2AB34339C98BF370283B2679E890BF9A /* MakeViewProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57CDD5F0D5ADF12E245977A57296A75F /* MakeViewProviding.swift */; }; - 2AD120375AFF9ADE8702C3BFD80BDB5B /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B63629946BAA0F141F5000D45DF5B53 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2AD40AFC4BB803B3EF3C41BDE61118E5 /* YBIBVideoData.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A43AEB8060E50780CE46E8FFB7F94D /* YBIBVideoData.m */; }; - 2B067825708D13E7E455426389397D1A /* UIView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6938529B4FFE728CE76E763A02DB60F /* UIView+IQKeyboardManagerExtension.swift */; }; - 2B20067EAA2480AF957719D9D01C2CD7 /* YBIBScreenRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E16049507CC03B9090F2AF6AA72E29 /* YBIBScreenRotationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2B2EB369550CE92CEEFCBFD3D32B8A3F /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01F8EA59DEAAA738ECEF7D68FCD45C7E /* ConstraintInsetTarget.swift */; }; - 2B319E44D7ADECC5928D4059D35090FA /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = E64CECF2B277E1740E8F08CA7B8F77A5 /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2B956A20DE80B42EA2C4D55BE6DBDB67 /* TagListView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D663E2E1139410A15C558A6896C8C7 /* TagListView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2BA2440F9918444C393690BFC7D9212F /* FilepathImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF9D3F780F9307B2A4956B12C94603D9 /* FilepathImageProvider.swift */; }; - 2BAD02719D969EC5C6E65323E04A505F /* RxCocoa-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 309006C332A939D8335F54EDC23F48A6 /* RxCocoa-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2BC30E20EF04FAC4C6C5675473E6B29C /* not.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BB619052F7DA53A970B433F53AAEA9E /* not.swift */; }; - 2BDC9B4412E51F70435144EC2F215184 /* ErasedContentProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 477382C0F53729E89AD8720A95AB42A7 /* ErasedContentProviding.swift */; }; - 2C0F8A44FFB8F67FDAB18E7E90950EC1 /* YYImage.m in Sources */ = {isa = PBXBuildFile; fileRef = ADB41122F7EEAC1BC2E8C6BA3079508C /* YYImage.m */; }; - 2C763A73ECF7621B40360E6929ED2A27 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 2CC446772DC028C095278529D924D35D /* ShapeRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5592B24A3177FEA4ABEED9D0B3A6F84B /* ShapeRenderLayer.swift */; }; - 2D105BF9B700D92896BF06F340275B83 /* NotAuthorizedConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97DE3A82457FECCDA36D235A9A527121 /* NotAuthorizedConfiguration.swift */; }; - 2D3ADCFAF670D6C9816369F7ED3B7696 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FE0AF0A4A942C9B375AB754DEE35103 /* SDImageCacheDefine.m */; }; - 2D3FA71FDBFCF6BDD341426D86C54F82 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A9EB2433B6E7A927FB90C619CB9BAF2F /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2D56C6EFDC9DF036822FA06D50ADE2C1 /* CAAnimation+TimingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 975ECCBDDA389719AEC4E54DB0112147 /* CAAnimation+TimingConfiguration.swift */; }; - 2D58EA07BF9420CB519FB4C5C1C64E54 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 109ACDAA5C60690C3C29F4D995BFF459 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2D62BA53B0142D84D921DB41ABDC5434 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 078588641DE48A9F8B942FE651C967F5 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2D8245FE7A22ED672D3DF95E77A96E46 /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5033298D1CA93A7865AE65144ECEDB7 /* UIButton+Kingfisher.swift */; }; - 2DC44A09A6C9D6DC7D1BDA2DFCF99EE3 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F523AE274FF96B23B5AE0188D46239B /* MJRefreshConfig.m */; }; - 2DD1C0AC76A3D56A0B95C39413C9C5A7 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 247A39E873C37C701BDF648B2D50C5EC /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DE638E2260CE1DB06F76ECA93C24E0E /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 39DCD7EF97C0B500D13C50F86E116058 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2DEE9D67E280C52847E66A1B4431FED7 /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A4FC0DEB2145AEA826609AB69FE096B /* Skip.swift */; }; - 2E13E22E2981ABD137854CB0BF3D8F01 /* Keyframes+combined.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41E7C809EA33C0393A6AE27000AB14AA /* Keyframes+combined.swift */; }; - 2E2DC0C6F0E4A994820F917CC88B1168 /* Core+Dictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00666232685340897FBF612CDC76B348 /* Core+Dictionary.swift */; }; - 2E9C5A7894CD69E92C70E00B0510C1A8 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 1227C89CE60E2237AF4BD0EB74800DFD /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2EA3AFEE09D681E491F24C9B1A85FF44 /* ObservableConvertibleType+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3898027613E6C50E0078414D3DF1BE7 /* ObservableConvertibleType+Signal.swift */; }; - 2EABAE5AB809F505775B13EF046431F1 /* SelectBoxView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F45B5F359E982E067E2109249A8B0784 /* SelectBoxView.swift */; }; - 2EB965F2E798586AE033A73467469967 /* StrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDB98AB321A5B30B05F0F320384699D3 /* StrokeRenderer.swift */; }; - 2F1757EAD479C3E8C7C75561BADB0F1A /* LottieLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD253B873F2B67521833408BB82D843B /* LottieLogger.swift */; }; - 2F594E0CEF6E7B8BDDA677C93ADE5970 /* Entry+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = B96763E0F72C4F15536986714E73823B /* Entry+ZIP64.swift */; }; - 2F6774015407B5B4841C9A34BC009900 /* PathElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33DAC44C2ADAB17A1E18E59C3363BA98 /* PathElement.swift */; }; - 2FDA0F9A0DBB98A99500F2E0B5B7753C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 300106D253D6B0A83D0FA41EDA408B77 /* PhotoPreviewVideoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25A588051320603C531C4D4D035FD277 /* PhotoPreviewVideoView.swift */; }; - 301ED3D73C23F6A80BA38E30E05BAE44 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 45AD7FAD1E5345477CDADB368908F59E /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3046A808080A7F90F3D3629B3CDCDA32 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8DAD8511E44DA440DA3B2E026B7BB11 /* Take.swift */; }; - 308AC672301C6E7DB6824993D255E0DA /* OIMMergeElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 58D937DEC9A6DADC4020FC73AD7DB7DD /* OIMMergeElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 30B4C66BD3BF1A31240A34D540BB1362 /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AFF3A2C20A0878A9F0BD547D0C6006C /* GroupBy.swift */; }; - 30BE83ACB80227A5F67D6A1347B1293A /* YBIBIconManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EE250BA3582E9617496529A94B3D2AD0 /* YBIBIconManager.m */; }; - 30D6F928FC08B13B5BFEEB154A2089C1 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 655F16E86C5BE41F3D3568111B89F78B /* IQKeyboardManager.swift */; }; - 30F32C55A2BDA22D805A0B0C0AEBB50F /* Mapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70FED667384419D528193F57E48A8F1 /* Mapper.swift */; }; - 31000B277CE79D21BA8C1ABA26659D9C /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = CC24CDDC3C41D4E90FB7A47FD047D37A /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3104E8F987B0D3FDB1106E49ED803A03 /* IQKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A610F8E5A523D74EB02337C66D2442C /* IQKeyboardNotification.swift */; }; - 311B7A37EF82A4625087384B10A169D2 /* RxRelay-RxRelay_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 0B06FE4EB869890001614655A886414E /* RxRelay-RxRelay_Privacy */; }; - 314194E9E0C7A9EDAF93EA83122B3C1C /* SGQRCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B09F2B014F2F335A6DD1960BA5E604AF /* SGQRCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 31477C3CCE2D60FF4F7BC2C8013669D7 /* Keyframes+timeRemapping.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8DEBF09645160014D2988AC5BC499ED /* Keyframes+timeRemapping.swift */; }; - 3164BCCBA9C6BDA00D4E46E1DA4AD5ED /* PhotoAsset+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAD52A080AAEE8A81783F36FB0CFFCE0 /* PhotoAsset+Codable.swift */; }; - 31B55ABBC6F62FCE46A58D54F2298062 /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50577F76F9EACE83C1F8DB7EEEED065B /* SubscribeOn.swift */; }; - 31C92344565509BFA8F64CCAF193C78F /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E76CF312E733637C8775BF05416542E0 /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 31FB1355B0B598BCE30B2FF61A6B3792 /* CompositionLayersInitializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD03CCC56A646093FE8F14113693E9AE /* CompositionLayersInitializer.swift */; }; - 3206FC7A03AAE9D7995E1C20BAC2A741 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB0F03F7DE9B75763FEE50F19F9CFE7 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 321F87DA34863DC5C977323BAEDB2B55 /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = B77B6CE440BB9382708B4A69C5FD7B41 /* NSObject+MJCoding.m */; }; - 325514A9E0AC13E73854C6257EE434A6 /* RxSwiftExt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 558D712381B568AD9457624A9865B29B /* RxSwiftExt-dummy.m */; }; - 325CA20B9271F3E008234E1518B79061 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC2CA99DCB07C318665A8C26096B21E /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3261AA0480C168A6529576CDA9642ABE /* FloatingPointType+IdentifiableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFC30276B8929B72D79A2C9660B6AAD1 /* FloatingPointType+IdentifiableType.swift */; }; + 02661A0934BC99375198D41EA84CDD7D /* YBIBImageCell+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 765D3D4E7343A74C9DAAC6872CCA30D6 /* YBIBImageCell+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 02683E28CDD2177B4C9357DE2703DDEA /* ControlEvent+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360D5277A3EBD251BE1D7B8B657CBB2 /* ControlEvent+Driver.swift */; }; + 02B594763EB091EDFBEBB557DC9389E2 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 467D1F0F2F8DC4407D4DE1A116DA6822 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 02C66795522176B28B835F653FC4A868 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7197893149C4441D96B6DD968118BD8C /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 02D2DB67E038F3DAD4147733C3DAC7FC /* DDASLLogCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 289FCFE3D6DDD65B8122E6130BA5048A /* DDASLLogCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 02E3116300863BD1C354A8D903D7565B /* OIMMessageInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 65A438944C929D5F4B8B213A41EE08D7 /* OIMMessageInfo.m */; }; + 02ED202445E582ACB19CAAEFAC809CA3 /* PhotoManager+Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA74D2870A019BA4740B7F676D3BE43 /* PhotoManager+Download.swift */; }; + 02EF3A9D8DDA3246BD301B1102089A2A /* Core+PHAssetCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = D64FB7527955C366D9B03609179CA6CD /* Core+PHAssetCollection.swift */; }; + 032A08256DCE07E9C62F690AA69B4D27 /* UI+SectionedViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581BE4EB6C70F24C0FEE8559206D377C /* UI+SectionedViewType.swift */; }; + 03ABABC12DB32941CACA6E84B73A6E4A /* String+IdentifiableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F69A46DACB8CF34C53C60CC2D027E792 /* String+IdentifiableType.swift */; }; + 03C5BCAD51533102DFD2357DBE9A9A1C /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E2604177A3E85192F036556469BE54E5 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 03C5C53DBB1C0342175A24247C8718FB /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 1410AE1CD716A6B76D8C34B2C0718A1E /* SDWebImageError.m */; }; + 03DF4BF1D027604EBA81A2B71EFB9080 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F2C997ED187FDEF21DB00D42F13F8ECC /* QuartzCore.framework */; }; + 03E4969A888B2C0C264DE71ADAB66527 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A00EA2624DD142E40DE0ADF47D2A0AB3 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0416889045464020D660A5621EB34E34 /* AssetManager+AVAssetExportSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB9927B03C2D0F7E7F9022B6EFF4C646 /* AssetManager+AVAssetExportSession.swift */; }; + 042116C407630C22F93E1349008E29F8 /* OIMMergeElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AA728D87B7F91C945463B669D4EAE5C /* OIMMergeElem.m */; }; + 046C8CF4F5BC1F8F7AEB535E1FB5CFF9 /* TADotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D2052BC73AF3D0CEB469FDC3D6C867 /* TADotView.m */; }; + 047B4D6CD41F000AA47649010F82993F /* PreviewVideoControlViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE3AC6EFED534E56B45FDD982333FDED /* PreviewVideoControlViewCell.swift */; }; + 047B5E7719C01E0B8F74EFF450844D54 /* MoyaProvider+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 154A80EEAD6466B904FDDB7938F4AB13 /* MoyaProvider+Internal.swift */; }; + 04B759CD5C2C5F25319F9C5E8C2482F6 /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FA9E6EBAB2A16F4CB0E52505E665B07 /* Create.swift */; }; + 04BE13B7BE601D68D258C5C2141CE32D /* VisibilityAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 173E5A5AC9E0556461707258329978E9 /* VisibilityAnimation.swift */; }; + 04D2FBEDB09B8FC903912AC7993FF237 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFA273262C05031D86CC3431CFFA95B7 /* CoreGraphics.framework */; }; + 04EB3FD7471864461899D550CEE10E67 /* SGTorch.h in Headers */ = {isa = PBXBuildFile; fileRef = 240416C6EF8122892481AB95ECC4CDC3 /* SGTorch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 04FBCBF56FCF4C5D0720AC79C655568C /* EditorCropConfirmView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C112C980D7117A563F32576ED0A5757 /* EditorCropConfirmView.swift */; }; + 05258BE5ECB12221959C3063D7FC2D65 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 614C8C7093D354C0AC700DB212837602 /* ShapeLayerModel.swift */; }; + 052A668537A68ED7885540E5C57DBFED /* DateComponents+Extras.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7C46C3987E417EC909753A8454CF13B /* DateComponents+Extras.swift */; }; + 053D5ECAC6AB411239EADAC1C5F02451 /* CompatibilityTracker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A0488FD76DB5F611BF73447B6E0CF0E /* CompatibilityTracker.swift */; }; + 053E17D6D68FEA74FD5AE22B6802A997 /* SetContentProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35E53EB427E531962F3F3AAD0D6BE4FD /* SetContentProviding.swift */; }; + 054A91521A2745391CE2146B6F155213 /* ItemPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DFB101CA626227DCFB08754A265952E /* ItemPath.swift */; }; + 0560CF0FAED380A38E9AC7B99E4DAA91 /* SGPermissionCamera.h in Headers */ = {isa = PBXBuildFile; fileRef = 254F53AF9EDB6FBC8B5E1899B6E3CFB4 /* SGPermissionCamera.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 05900739BCE69610C92CB0C95F876B91 /* AnimatedControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8EAC22AF845ED2317153E3913ACB6B1 /* AnimatedControl.swift */; }; + 05A4658C91684151AF00A23640687114 /* EpoxyableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FB94AE8C5C0B522D4E322D48D4429C0 /* EpoxyableView.swift */; }; + 05B425A1503F1F39BC47560E422BA861 /* EpoxyModelArrayBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C6A878365FAE3831D101B7448192821 /* EpoxyModelArrayBuilder.swift */; }; + 05C2F1443184466A943591154955D0D1 /* SendMessageCallbackProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 397F90741022772F19158E4EB60AC6C5 /* SendMessageCallbackProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 05E2B7C1DB7528A0BBEA1521BE0DBAF1 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 36DB87A7158E945BAE661177931BBB5B /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 05E73561BC60D31AC165FAE1231C6478 /* PhotosUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73FB8216CF2F66343E68F8498EADB79F /* PhotosUI.framework */; }; + 05F4664FC4EF89925161A064AA6481BB /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 661B11CB82859F4F63BB986EEA203D75 /* IQKeyboardManager+Position.swift */; }; + 061133BB6337EE5A3410B5128CFC2CE4 /* GradientAnimations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CFB128BAD33D109C98CF3A44600DE0B /* GradientAnimations.swift */; }; + 06365D4673388FDCBC959A28CAA66A2C /* KingfisherWebP-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B300794F61F87BC9AE775592D972BEE3 /* KingfisherWebP-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 064D909CD827405E8DCC309DB1B7775A /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B116CF6C24DE8991292084F188FE48C /* ConstraintLayoutSupportDSL.swift */; }; + 0689573C4CB915F596ACA7E8D0FA2FA2 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1565C58CB6645EE5908226C8FA71D0F8 /* RecursiveLock.swift */; }; + 0698F5A9D63CA4D0197FA0E1AC614229 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D623539744C92AC2DF81C3ABEF834DA /* SDImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 06B7908CB9299B647356E5A19711B03C /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2953C440B57675D5159D5D8B8AA7E00 /* Never.swift */; }; + 07052A43F310EE6CDC0302D69EA29A28 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = A2A3A2F1F37FF6F5C217BD219BA3DCFA /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0742024C403D33DAE1A61F92BBFB5E77 /* Shape.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BDC74945EC8BC04AD74B2B1BE2EB72B /* Shape.swift */; }; + 074387D1012BC0F5C90B358F27A1331F /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2DA3850B293BF553D6E776C8DE0A579 /* RequestCompression.swift */; }; + 0760006FCC7B25877D2946A874A40FCF /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8493E3C56E90747096AE38907297A71A /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0763E96624CE87A93B0FEAE0087698C2 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 07D0C4E9495B63B74FEB580EE16DBEC2 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0769FBA2E0CC84A1B08F7B9F716361F9 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 57C8B09E9B907A910FA2CA113D4EE94C /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 07F13C3B7C638A4698BC8027BE97F41A /* InvertedMatteLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4EB46D249CB60D0D7A24DFBCDEC31B7 /* InvertedMatteLayer.swift */; }; + 080FBC62B74BF059220234CB58B07DF7 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18E56EA95B0B63455E9FD121268B2EAB /* Image.swift */; }; + 08245D4B470F47E0B48E2FAF0AC143A3 /* MarqueeLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA7328C77B8873228D8F9F083DD76E06 /* MarqueeLabel-dummy.m */; }; + 083568CB5595DD405BCF2728104FB06F /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1840F6778BA7A0E6406875B5666EA43 /* Window.swift */; }; + 083B0B494C5F6B69924BB36E3850D23E /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41ADAA54FC8D80364D38BC19F8E41595 /* RequestTaskMap.swift */; }; + 084C46802D14C32B995FE54FB53ACD0D /* Core+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 797F1309BF0507E755025835173DA3E3 /* Core+UIImage.swift */; }; + 084E92CB08662FC57F439221B88153F5 /* _RXObjCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = E66D165B0BE2563D5DADFEB252DF1608 /* _RXObjCRuntime.m */; }; + 08719ABCE689ED74FE7486B1E49DAA6C /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 72CE3573CD388705660B27A2AF26D4C5 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0873B6769DCEF912824DEFEC89E814B5 /* PhotoManager+Language.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47B17333D0907CCF5AF2E8678FD6D83A /* PhotoManager+Language.swift */; }; + 08805C91EE5E8F3B036C8A2944A1FEC0 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C88283412781FE32730568EB4E8A4BF /* Map.swift */; }; + 08808820A664FF8A05D05673DFC2F0D9 /* Defaults+StringToBool.swift in Sources */ = {isa = PBXBuildFile; fileRef = 504C9200A2BCDBCE5D1038BE5C36DC92 /* Defaults+StringToBool.swift */; }; + 08CA4F3040AC07A6F6E25FBF13A06EAD /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 147C5981170C19FD63555EC085839A12 /* SynchronizedUnsubscribeType.swift */; }; + 08CEC0498D8A036E9B1C73E75EA97DA7 /* Archive+WritingDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98FE132ACD16AAAFCB4C2207A360977B /* Archive+WritingDeprecated.swift */; }; + 08D760F7FD56D081A8EC93E79E2AF58C /* Date+Compare.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2994D8B96A2BDBA3F7FDC7E3829339CC /* Date+Compare.swift */; }; + 090DA6F59EF2FFD1D4CCF09575EB78EF /* ProgressImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 906D0A72EE028674565F0303DE1D205A /* ProgressImageView.swift */; }; + 091C8409581AE1022225E05E5416E01E /* OIMUpdateFriendsReq.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D908919FE42CF57972EE6C0A340195 /* OIMUpdateFriendsReq.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 095210E5E9EA5A07D9E27224A6306B39 /* RxPickerViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9C19B02A149A3CE437F509ED0B3F6D6 /* RxPickerViewDelegateProxy.swift */; }; + 0975A08237E7A3B1A89703DF4F95D2CE /* NSTextStorage+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBDE0A3AD89058345ADDE79961120897 /* NSTextStorage+Rx.swift */; }; + 09896F9A54FE4E986FC9D2E62865266E /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 601E4E3E77557AF9F95EFC7AA4B4CB27 /* PublishSubject.swift */; }; + 09B1E7904CF237490E6EA35DAB2AFD76 /* Marker.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB7E0915414C93967B126EDE0A3EAE9C /* Marker.swift */; }; + 09D303C994021652DF841C463DBD1DC5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 09E1F569A93FAD4B9149E30B9301F44A /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAD5FA39926E92F28F3AB831E3E144F6 /* ConstraintPriority.swift */; }; + 0A233373E480EC041044A3D3308E7203 /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 719C9CE13C261293D1AE894B5DA81EB7 /* Throttle.swift */; }; + 0A274738A00EB1D66898D470DDBFD136 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AD40EA1CF3BDED2A363F76D9B6911F2 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0A2B07F68FFDEFF49FA6F165DF5B4123 /* Infallible+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0796F5670CD11B847772FE42520CD128 /* Infallible+Debug.swift */; }; + 0A3AA3796404AE5372CD8BF82DB292CA /* SGQRCodeLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 8095762029B20322EA90B44A9EC7A0B2 /* SGQRCodeLog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0A543346E663B7BA3CC071AA92390EB4 /* TADotView.h in Headers */ = {isa = PBXBuildFile; fileRef = FA45A4A7B7866A3D8115C051623E3CF7 /* TADotView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0A6AAD2D2BA4C7238396D11707EAEA18 /* Calendars.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7E778E7BD5CE4AAFAD2713C620AF5E0 /* Calendars.swift */; }; + 0A8D9AC2B8F9313FA1E0766D228E2633 /* YBIBDefaultWebImageMediator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E215B4152D0A6DA7FBDD58BF58BA1A2 /* YBIBDefaultWebImageMediator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0AB7466CAD9AFA68F7D623D26216DD29 /* PolygonNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EC8F3147D548524F2105F1B4D734059 /* PolygonNode.swift */; }; + 0ACE791308083423E3C7527EF3A9D5F8 /* unwrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E321387479547D50CFE05D0B62300A0 /* unwrap.swift */; }; + 0AD12222CC550A22E04D0C4CD300EEAA /* AssetManager+ImageData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92825D18FFC3CBC0A7BD59C44FACD099 /* AssetManager+ImageData.swift */; }; + 0AF16F084FDB6E84677C4692CD931EE6 /* TAAbstractDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = F55A04BD28A92256172FFBE62A100A7B /* TAAbstractDotView.m */; }; + 0B0A3A1044D081A95821B26BF0C69B68 /* FramePubRec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57AFF0686BCCD3B8F8E64BF3694786B1 /* FramePubRec.swift */; }; + 0B6EDB15A5AFF1C293C87685F2AFDED4 /* HexColorTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = E09E6912A84AAB34450313597D8759AE /* HexColorTransform.swift */; }; + 0BA592B0168441965B0358B168955F32 /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = C945AE6B7986CFDFCD103CCDC547424A /* Zip.swift */; }; + 0BC1D7B347B7BBFD5D95BBDA306E859A /* ImageAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4876B235EFC3F79E4FC7B2FAF3A32B1 /* ImageAsset.swift */; }; + 0BCB47E9D038A812EEBA83A8B9E5E7E8 /* PhotoEditorDrawView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78663799850368AB5C48ED1F8C841B69 /* PhotoEditorDrawView.swift */; }; + 0BD03DDEEB3CBDB7C2D899140420AB5D /* YBIBVideoCell+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8949E81B22A5BA6D918960149D5B3E4C /* YBIBVideoCell+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0BD1E52C6A20A1E2F9B6044C2CF41DAC /* SDCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B0AB04C5B7E187EB649C48990318B217 /* SDCollectionViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0BFC16EDC3C5B27C356AE6874D501A4F /* GradientValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 969C95064469988CF9DD2C0988D5721B /* GradientValueProvider.swift */; }; + 0C1FEB6DDA1E3DCA294E91970EF70979 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE548559FF88988E65F345D73AA762B0 /* Error.swift */; }; + 0C35E7376EC7CB317E82802F199A52C8 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26D99830BD02D5E12946A9993FD9B433 /* Completable.swift */; }; + 0C5A1A53C0ED5FCC9083DF46369A0345 /* IQKeyboardToolbar-IQKeyboardToolbar in Resources */ = {isa = PBXBuildFile; fileRef = A16FD016E18EACCF6B23F219F2E236FE /* IQKeyboardToolbar-IQKeyboardToolbar */; }; + 0C9333022A04758AE828D9F279411DBD /* RxTableViewSectionedReloadDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9427F04B99D87CA5595F70B09E854EDC /* RxTableViewSectionedReloadDataSource.swift */; }; + 0C9FA288554B0A0C3CDAAC8DA720B362 /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F3BA19563A1CD125A820FAECF01DAD1 /* PrimitiveSequence+Zip+arity.swift */; }; + 0CA7A132ABE7018DE9295456732F38BB /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91F40D000DF542C6D6257B1B433BAA8B /* ConstraintAttributes.swift */; }; + 0CC2D56EACB32070DB435FD288A1CD4E /* DidEndDisplayingProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = D031895E50BDFD816B263068206932EA /* DidEndDisplayingProviding.swift */; }; + 0CEC3ACCB21A1514075A65CA04ED003D /* CALayer+setupLayerHierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5AFA1348A84302F6F2CBA39EB6F5AB7 /* CALayer+setupLayerHierarchy.swift */; }; + 0CF8BA66E12078120DB863307972EEB4 /* MultiTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1AF925CB18B9B0B703C6F5CA5025160 /* MultiTarget.swift */; }; + 0D24F81A53BBD7B165BF5CB77A3C79E7 /* AnimatedSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB2DA40F1188D559D2779EB5EC0331BC /* AnimatedSwitch.swift */; }; + 0D56D4EF41351DAE13C3E467D4168FDC /* ObservableConvertibleType+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F5BBFBC93786C1203D7B9FC6A5D8002 /* ObservableConvertibleType+Driver.swift */; }; + 0D938196DFD18FB78E92B65939ED3DF0 /* CurrentFileNameHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEA62DA3B37F8C57C82A14C0101890F3 /* CurrentFileNameHelper.swift */; }; + 0D97A8A4AC6C7B5ECBC2120ADDF396E3 /* OIMFullUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DF95CF1A956131DE522B1EC58F5D47 /* OIMFullUserInfo.m */; }; + 0DBAE07ED5D8EFF25BD2F6B66EE97A50 /* YBIBAuxiliaryViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 83921C9664E047ECE321FD559ED72F36 /* YBIBAuxiliaryViewHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0DC813E62FCEF6C6C3009180D7790BFE /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAE70D15CB0E723B27BCADCA5F142B7B /* Result+Alamofire.swift */; }; + 0DE5DB9C6227B3416778D8417DD95EA9 /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1FC999A64120C01A02C6491C02500C3 /* ConstraintView+Extensions.swift */; }; + 0E13270B2F909467965F667C340E2179 /* CallbackContextEpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F9DB03149250DF330B6D48C0E61D964 /* CallbackContextEpoxyModeled.swift */; }; + 0E30A2856E438861946ECEE79ADC366A /* Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57A5630091B1B1F7BEB362A6247CA11C /* Font.swift */; }; + 0E3CE3B0D20FE412F21CF712225E0259 /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D9E14EEDE501EE2045A8F5EF26EDD10 /* SynchronizedOnType.swift */; }; + 0E658960F47D4CF87A47AA250064BA14 /* ignore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 183ECF3CB3F9B9A28400DF0443F735D0 /* ignore.swift */; }; + 0E69D7FEC523A96BAD55D2F023719866 /* partition+RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9C7F4582926271F92F237DDB69DF485 /* partition+RxCocoa.swift */; }; + 0EAEB1E9D38A99A316467CE6F913218D /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = D88DF71236E722809CDC054A7C195C5F /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0ECDCFA9D12BBA0A59E8236199F7DC44 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D3D05FEE8ADDAB27B74995F22E6B4A65 /* SDAnimatedImage.m */; }; + 0ECDDB52DFF2A8C21B6FEF7889ED3D7D /* DDOSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DCCA16221D7CCCCB0947FEC9E1C1F3A /* DDOSLogger.m */; }; + 0EF10747EF2A02413E84BD5EF7C87A4B /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 468FE65CB846EAB3F699F8E68CCDFC1E /* MJRefreshNormalHeader.m */; }; + 0F4377E02EB437F7B9E8057DD477F38D /* PhotoAssetCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 670E69BFA8B8E794E20278DDDFCCFC1B /* PhotoAssetCollection.swift */; }; + 0FAE540AF1B286B3DB2B1A692C9CFA9C /* URLSession+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7697809BBA99F7988F7FFD07178DF004 /* URLSession+Rx.swift */; }; + 0FD18359A58F66248D18498A8252A505 /* AssetManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3771450394E341C8109007FD4453F6EF /* AssetManager.swift */; }; + 101EE02DF118858FADA52364B1419E72 /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A82381F95A0B1C9085F0DC4DCDEE26B /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 103337BF8ACBBD1355A09C1805816F01 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46F633D702261FD3818B8BC3F02C82DC /* Platform.Linux.swift */; }; + 10358166A89DEA3283C1A996CD8DC55E /* GroupOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9E1FF60C3DFA18D3698A5B0976068D9 /* GroupOutputNode.swift */; }; + 106F4BFFBE4F028458C0C4A5BAFD3B41 /* YBIBVideoTopBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C5CFBD20109F66699F30CEBC6AB89D14 /* YBIBVideoTopBar.m */; }; + 1080C4E4B6FB8B1BD23CB4AE3A2C31C5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 108D25E96A8834F93D0DAD5C26D654C0 /* RxTableViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC4CC40B8B0D567BE5F577D1576BDBDC /* RxTableViewReactiveArrayDataSource.swift */; }; + 10A4345F4313A493E14D63E1D3898591 /* CGColor+RGB.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31C046C0CC4193B0A2A553D90BB92F7F /* CGColor+RGB.swift */; }; + 10BF11AC5501D529FC0AC9C0EAB13BF9 /* ProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 956F909BA66A7652F595667B35B52BFF /* ProgressHUD.swift */; }; + 10CE029BDCCADE7B3EEDBA341638EC90 /* Combine.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0A90D1C88AE636E67296B135530FC21 /* Combine.framework */; }; + 10D3D2FE2F2333DF1C45411E7620D35E /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = DC0328F98F4917C4905DA2AD95CC417A /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 11046E796D234137C1BE618CD93B2C85 /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FAFB9102A7821804A603A0AC1AE1A19 /* SynchronizedDisposeType.swift */; }; + 1105B4A023D2B23A2003AF236E9376E0 /* BaseCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24B4AEB38B8B095C56E839AEF1BCB6FB /* BaseCompositionLayer.swift */; }; + 114069EBE34C9108E81D3884C4112C08 /* DotLottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C3603E52BD81ED0DFEA15C65199D20C /* DotLottieAnimation.swift */; }; + 1140FCB1BDC1B86277347BB1A1325370 /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8CF6B41020B1C18360CF68D29A37865 /* LottieConfiguration.swift */; }; + 114C81D88949616817C9CC12A151EAE6 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B45AD70807BBDF6B47FDAA4390A5C5 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 11538956E6B6D748323391EB865CBFFE /* UISegmentedControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E82BF932F82DDF213C52EC34483CFB3 /* UISegmentedControl+Rx.swift */; }; + 115E6A3F461DC8C1E92EFEE3058E0291 /* YBIBOperateBrowserProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A2CE0AF51BE27F12200078A93A6C66E /* YBIBOperateBrowserProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1171C66C417E998F0BDC4449B7938B82 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 1194E62AA3F6F506799B1A43B16942B5 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C7A61E9DB82D02FEA27B03B819C2C7A /* ConstraintDirectionalInsets.swift */; }; + 11C929E6BFB46F981685446F26DCE605 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B202162B632B08EE2812503526E54FC /* MJRefreshAutoFooter.m */; }; + 11FC9573D3140E8580EE8B826043B4D4 /* YBIBSentinel.m in Sources */ = {isa = PBXBuildFile; fileRef = 465B409F53432E81A5A256AE2E926B8C /* YBIBSentinel.m */; }; + 126496714AD564062A8C10787CC01B8B /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = 53594C8166DD9CECAC206989DD8F274D /* MJFoundation.m */; }; + 12747F86266940B02E2B373CFB2EE754 /* OIMSoundElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E05D9021DDD8DE479F93C6DA29461F4 /* OIMSoundElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 12B0F9412DA72E5C518155799154EFCA /* NSObject+YBImageBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 4041C387548214F751404450BF39B769 /* NSObject+YBImageBrowser.m */; }; + 12BAC0D88E72578D863B0CCFE7D8DE98 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E23A82FD88F15BCED19B1985CF16548D /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 12BFAC7BBCEADD5934026623E8FB8B59 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A044FDCB634FCC2E2D4514A1D478D6E /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 12DF3001E99174FC92085BE6467517B8 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = F27BBCA6BA4C196D7AE3AFB1E1710DD0 /* SDWebImageDownloaderRequestModifier.m */; }; + 12FA9B81BDD131CCF1C8796918207858 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 12FEC145834F9E1CAEF646C4BCBCC378 /* YYFrameImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E27C6104885875C65D924ABDA4E3D40 /* YYFrameImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 130A51F65E41782E0D2C44FAD405C472 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A95E8634ABD3401F658163DA5877CED /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1313426F64905A867293DAA192DDAB28 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99A57B66940EB146F742E55C77359AA8 /* URLEncodedFormEncoder.swift */; }; + 13416A8B642871CADD954FD04797CC67 /* DataExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F899F189DB3B7D9DF35DDEA3110CF17B /* DataExtension.swift */; }; + 138D67F6083B792390FB49401FC6B96C /* LayerEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6883A58E11528E040F55C0325D7B37F /* LayerEffect.swift */; }; + 13B0512A565AFF7DD1AF210965AB35FA /* DDLog+Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = B81878181733515C615DB48F037DC03E /* DDLog+Combine.swift */; }; + 13DBF1513F653277014B703362F3DFE3 /* Int+DateComponents.swift in Sources */ = {isa = PBXBuildFile; fileRef = 001CAC5B0387F752F807373679700C1A /* Int+DateComponents.swift */; }; + 141E78E1381DBCAF7D310FCC1C8BA54E /* YBImageBrowser+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F1ABC498902A7C5F1A16E46F26227B68 /* YBImageBrowser+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14435C7937441FB8744FDD53F12A4711 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A53ED458B025D58C4FD11EC93FFAAA2 /* types.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1463FCD0976200B9E656F31FC5803F5C /* OIMFaceElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 294772D1AC56A8AFBAFF4406865E8529 /* OIMFaceElem.m */; }; + 1484DE903206BF8D6B6900A0F8A71692 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 91AED5A00B8A2452332D3796039AFA18 /* SDImageIOCoder.m */; }; + 14943D0EE97A4966510A86F5C3FC66A5 /* MJExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B0BBCA140DCBB401B2DB7E116FC93D /* MJExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14A37558E0138C9C3201C28578DA6EED /* CocoaLumberjack.h in Headers */ = {isa = PBXBuildFile; fileRef = E939347E78A0391184298A74581E8A4B /* CocoaLumberjack.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14E7FA491D8E0ADD6C6E74B1772E73CB /* ViewEpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = 488940941E25EEC0F1419CDC1C942616 /* ViewEpoxyModeled.swift */; }; + 14FD166E09E03302D347CD373DB56DB1 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = BC58BA55D7533F2245DB9FE3327E7353 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1509D9892B9A6D6BE7DE77053F26DDBA /* OIMGroupApplicationInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 21EF815B6C34644A35D6B92C9DF3DCEF /* OIMGroupApplicationInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 150C4577BF48F57FB9C9117625A2C538 /* CombinedShapeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15DB7F8C2DB86CE0AAF598E6C439B423 /* CombinedShapeAnimation.swift */; }; + 154230695B4E3D61B8D2BD02DAA2CE91 /* IQKeyboardManager+Appearance_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = AED21DA327E29BB41B917FB1E341C399 /* IQKeyboardManager+Appearance_Deprecated.swift */; }; + 15B86EDE2F58A6BFDC8A2FA898F256D4 /* UIColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF9DEF0B8FE64352C40FF7FADFC32A4E /* UIColorExtension.swift */; }; + 161AD6A1FD1567C9D48E62AB5A8BAB68 /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CE9DBE9C323FFDFD3869DAF5A13CFF9 /* StartWith.swift */; }; + 1625D017B0A759A680FCB0C5C797A1A3 /* SGPermission.h in Headers */ = {isa = PBXBuildFile; fileRef = 9291056517CD88E650D02DBF191884B9 /* SGPermission.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 16746E111A8A707073043335AEC0A654 /* SGQRCode-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1CA4230DC2DBBA4DE46A15D56461F6 /* SGQRCode-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 16CC427093CE09F879561F11238C085A /* OpenIMSDK-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C9AEE725EBC8AF812D343242835B5448 /* OpenIMSDK-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 16E02FAE9A06528993720ACF5F7680A8 /* IQKeyboardNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F5FB553F91C4DAAD1EEBAB85DD87170 /* IQKeyboardNotification-dummy.m */; }; + 174953FEBCEE7B162A5EDB2290126D12 /* ImmutableMappable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DE1E8395E47D386B6490E17E8F67252 /* ImmutableMappable.swift */; }; + 174C03CECE0755237E65408465CACD10 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2B71D301E15E6410F723894618F8B2 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 178566C64EBE62048DEC6A78AD16FA25 /* IQKeyboardToolbarManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFA1464237676D38F4BF5A57D9F5A55D /* IQKeyboardToolbarManager+Debug.swift */; }; + 178C56922BA738F67A565CA8681F0F05 /* OIMFriendApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 21539E4C77DD56C4E08819C238A77241 /* OIMFriendApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 179439396BE32AAC0EBD8AF986573053 /* DDAssertMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 44443D8FED362A663B7F86031F24FBC4 /* DDAssertMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 17963E14ADC36534628E33A2E456A9FD /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 507C90449A9C2A97E2871ACAC9B1A441 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 17ABD1A935188470A532AF5630EAE19A /* CGImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 362C318AC23BC309320600A5C2B2254E /* CGImage+WebP.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 17BDA99227A012CF9CEA639D56A748A2 /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74ED59197619BCC0BC378F7696D9CF23 /* RxPickerViewAdapter.swift */; }; + 17D774DAF5C4C286CCED8F85F4B36271 /* CodableTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1159483893C79D787E89D45D687672E6 /* CodableTransform.swift */; }; + 1809335C833BF5E3FE86CB05C7075723 /* SizeValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08BF7E05FE4526682EBDA0F71476A16D /* SizeValueProvider.swift */; }; + 18280EBD305C8AA2B854584F685C75F7 /* UITabBarController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B3A498E078050E333B31F85315541AC /* UITabBarController+Rx.swift */; }; + 1844AC03F7E1C318AC87DC505B3BE062 /* MqttCocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E45E6AF7340B004DA48A8AE2F8B53F37 /* MqttCocoaAsyncSocket-dummy.m */; }; + 186A2DC5B476A02DCCFD4808E3325486 /* ColorValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D66E4A666F8AD6639F3BB8433543EBB /* ColorValueProvider.swift */; }; + 186B573F1BEB8A23419A02814A7741DB /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = E10CC87B0811F86105A32F88A4F75123 /* MJRefreshFooter.m */; }; + 189966E79B3BFB2BD1E49CC56F03DCC0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E0843B42A030B55090DA9565D93667E /* SDDeviceHelper.m */; }; + 18F2FD69EBCB5B9F1941D0C1FABA4684 /* VideoEditorMusicAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8B35159705EBE2193CC79CA9B894E50 /* VideoEditorMusicAnimationView.swift */; }; + 19093EF705B706BEFB97DE1C2BD8E609 /* PublishRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3DE50759EFD988D04743C79471C7618 /* PublishRelay.swift */; }; + 19164B08BA217FB9A3A7F6E1AFF24AEC /* EffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57DAE67362F099548C9435D60264C18C /* EffectValue.swift */; }; + 19455C60A2177C13A8725D642AC1D990 /* CompatibleAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FAE59124813F9278DCFBAD69B7244C /* CompatibleAnimationView.swift */; }; + 194AF5868782BB0839C3D4A3C1122B48 /* Core+UIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02840ACD5872409C5A15AF32A909BEC0 /* Core+UIView.swift */; }; + 19C0FD2FFAF58F668A3FDC8386699728 /* StarNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 889A561130AB6E4C8C73F23593C54B4D /* StarNode.swift */; }; + 19D1AC27CED63C2BF64F14D47BA96A17 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02B1232ED02FD0082124D9CDF6969512 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 19DCC268C6178B9F89DD7ADDFDB5F5FA /* PhotoPreviewSelectedViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C881CC130CEB757F00BBCE825670589 /* PhotoPreviewSelectedViewCell.swift */; }; + 19E9F9236F77468892AE69B7F5ED27E8 /* DateRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9B0C75F024986060AABFDD7233FC611 /* DateRepresentable.swift */; }; + 19EB3D966E33BFCF2240BCB10D24A2E2 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 5163127D0CC7B14BDF70ED1E3ABB888C /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19F02EEEEDC69DC212DE3BBE5B0FECA8 /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C6318E30F642CCF4DCF9EB42BEBE4A9 /* TakeWithPredicate.swift */; }; + 1A10909BFF2392D9F946A6487405E164 /* RxTabBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 728E021DA9E63720A04C56E1FB52DA37 /* RxTabBarDelegateProxy.swift */; }; + 1A47F6B6428CC393D000C663CFBFF3F5 /* UIBarButtonItem+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 844DF282F910BCA1C2789FDB5A2CB231 /* UIBarButtonItem+Rx.swift */; }; + 1A4BC84B0C50F51F8FFE8A37227EE46B /* RxCollectionViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 328666E1FE05310AC0A5D3D31B1E08E1 /* RxCollectionViewDelegateProxy.swift */; }; + 1A7E28AA5B547FD2C03AB849E47A73CF /* not+RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BE64571CFA39F6E7F89C21A96D1D7FB /* not+RxCocoa.swift */; }; + 1A8C915663836B11DC3524DAAE284FF7 /* OIMVideoElem.h in Headers */ = {isa = PBXBuildFile; fileRef = E1FB0CE6CC1C2683C361076E7AB82D61 /* OIMVideoElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1A9393A1B5F70A3BFCB9967DFFA7980E /* PassThroughOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74E51E407C4A9311284CCF23D154B71 /* PassThroughOutputNode.swift */; }; + 1AB69E4AB50F68DA1FC1473E49F2A502 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DC8C41B7AB96DC700B00AEB39525F5C /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1ACCB8C5C27C1444D4F45DBC081965F6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB1AF2C85681828F45ABCA77CA811B2 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1AD63F875F45797E7C1D46E7C898CFE9 /* AssetManager+VideoURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE53DF77216A675C25EC903D738D2065 /* AssetManager+VideoURL.swift */; }; + 1AEB50393C88A3A8E94E1C7F17881747 /* LayerModel+makeAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EFDC55D9C77B32C3928B5308CA1A0C3 /* LayerModel+makeAnimationLayer.swift */; }; + 1AEBA7397BE356EB62FBA07D451124BD /* YBIBImageData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E667A962419E1AC1223896870D663EF /* YBIBImageData.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1B1B3DD8D52AFFEF0497E8558A52209E /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C98EBBA8FA597707BF0B50B83AE3CE9 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1B289229F7E62A4EABA042918B85CEEA /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 76CC33947A6F23A709A9F9686648B932 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B54B5D6BBE60B992AD6E0B0C38B54D8 /* DDFileLogger+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BB176CC8A097D4E742BA5C362AB0B997 /* DDFileLogger+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 1B5B440676B88E51CC477BE0C3EB7BD4 /* YBIBDataMediator.m in Sources */ = {isa = PBXBuildFile; fileRef = C5E4AC95D725AE9914E15B02C6040935 /* YBIBDataMediator.m */; }; + 1B87A741E524BA00E3CFD3A38E24F71A /* OIMUpdateFriendsReq.m in Sources */ = {isa = PBXBuildFile; fileRef = 48235EA9287F0138124F456EEB881070 /* OIMUpdateFriendsReq.m */; }; + 1BA75F56E78A454136945A7C6F67BEE4 /* StrokeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9909A72F16EE2DC3ABF5C0F04E9ACEC3 /* StrokeAnimation.swift */; }; + 1BAC69260156BD0B7C09BAE5D070F0D0 /* YBIBDataMediator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BDE57FD5D9733AD03237000523DFF20 /* YBIBDataMediator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BDE2FFB1EFA43AD2D8EADD6BD3D851C /* repeatWithBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9020DDE726D79775743E62A9859FF53 /* repeatWithBehavior.swift */; }; + 1BEF0570918130CB9C4E7EE398035F17 /* ColorEffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AD6F8BAAAFF98186138E4A6113D787B /* ColorEffectValue.swift */; }; + 1C016469B5AA70C08BDFECAA27EAB051 /* OIMLocationElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 00CAC1B2D31769B3178F778D87E68816 /* OIMLocationElem.m */; }; + 1C3F07299171B82493D3696239A11BAF /* MGCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 850C6A13A8188DD67C782628C68BEC21 /* MGCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C4341D3342F37B1C47EE7F2B75E2CB8 /* SharedSequence+Operators+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 650CBF9346AD732290BB7ED692D6B5F7 /* SharedSequence+Operators+arity.swift */; }; + 1C4D430B867251402232CD36BA776B17 /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E228DE53A7843A9B62E323CFFB04240 /* ImageView+Kingfisher.swift */; }; + 1C5A7BFB8D2A5906F22C3F37C11CC18C /* CompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5E0182FEE828DC6578A7F76F77A59EB /* CompositionLayer.swift */; }; + 1C7FE625D2FEBBE2F565CB6459BDB0AB /* sharpyuv_csp.c in Sources */ = {isa = PBXBuildFile; fileRef = 735D6AE5E93EF5DB28F313B462B8620D /* sharpyuv_csp.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1CC49A9BD8554882D499AFC657485A76 /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BC91B6AC1E57B084227D354F0152109 /* ObservableConvertibleType.swift */; }; + 1CFA0634F7CCBDDC1985E4C56876EA3C /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 901DB6006F9C44DE01F74CB94CF76648 /* Asset.swift */; }; + 1CFAEF271291CF9E61AB9A05C13CE091 /* ObservableType+Weak.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65EB44BEDF8C30E6FF3250EEF9BC03B2 /* ObservableType+Weak.swift */; }; + 1D147502E163B4AA9D2C66CB26A2C14F /* StrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FE035ECA7BD09E6EF69413B6CB12ACB /* StrokeNode.swift */; }; + 1D2CB89B3DBBC0EBB613F753F58FAD32 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81EBE4E4D49DF7168E5925FA02B2916A /* Date.swift */; }; + 1D2D66E3331F77A55BB82C3920F7C40C /* OIMManager+Group.m in Sources */ = {isa = PBXBuildFile; fileRef = C45803DEA9BBD6D69D4D24C69F4DAFA1 /* OIMManager+Group.m */; }; + 1D4637E0811723E3A42D519DDFBC4ECE /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85FAC75B5F2BEA1511718CAA480E2ADC /* OperationQueueScheduler.swift */; }; + 1D74158DCC81C4E83C0A8945EDE69C86 /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9108431DE0EE65E182C641811F6F644A /* SizeExtensions.swift */; }; + 1DAD16111DCF0BFEDDF9BD4D09008454 /* DotLottieManifest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F57B91C4DA1E7A118360091C50ACB4D6 /* DotLottieManifest.swift */; }; + 1DB1ACD53F7A32A602A8883C88B141AE /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DBE5FAED8A096071298FA384ECCAB5D /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1DB413B01CC591F2EADBBE0923F02E8E /* mapTo+RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00D5B305DEE1ED75EE8C4354CC33DDCA /* mapTo+RxCocoa.swift */; }; + 1DE5A65531D35FBB1E317481CD316342 /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74CA6CFA6A9272E68BB7A7285B05F588 /* ImageModifier.swift */; }; + 1E1DDB49C9A4045FB76C69930DBA2F1E /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D40A187A4C62181827B7D1C0CFFEFFD /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1E38D43C5BCA95E8CC8DF9A5DAE7A4D5 /* UITextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE537AA8E8B46BAB0B6477FFC2C8F915 /* UITextView+Rx.swift */; }; + 1E9951B4A9662CD4C746E3EECF40E635 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = F6FB256EA07E33D5F394A9EA0450C896 /* SDWebImageCacheSerializer.m */; }; + 1EA011B45EC780B434507AFB3D9647ED /* NSObject+MJCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB1411EA19E9E5CCE78567975424B15 /* NSObject+MJCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1ECC492499B186A4611E3D985575810D /* IQTextInputViewInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836495F110F408D974AF64E8A7A6D754 /* IQTextInputViewInfo.swift */; }; + 1ECC5F320AEFB120081358B4FFB7442F /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B335E945CD78406784CCA803F62F16F3 /* NSString+MJExtension.m */; }; + 1F2DEB722138E3D7CCC4A02F01414AEC /* OIMUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F9F954A9051F47DF3AA5D6404469F27 /* OIMUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1F3A35AA20200F882745D5FA8432730D /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D5A618038C5542D4884F2ADAEB84259 /* SkipWhile.swift */; }; + 1F843A0B4CC4D94F6DD9D266567AE6DB /* BaseConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9C28583AE34DED7B6FCD1ACDB354EDC /* BaseConfiguration.swift */; }; + 1F95E373A37C5625CC6CD68D1F433556 /* PreCompLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F060B4B84D52BF88E54DC7C9B28D410D /* PreCompLayer.swift */; }; + 1FB7FE3D859627710638E47EAC61C2DD /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9FBF3319C645F6D97915F2E5794574E /* Buffer.swift */; }; + 1FBC61AD6C848603C1B3AE2B8CE82C0F /* YBIBImageCache+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8B49FE54508962DCCAE48FF9C6BE2C /* YBIBImageCache+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1FBE17889C1976DC4022F1202E19E5EC /* OptionalType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1900F12C0F59A2EE38FF64396E3A02DF /* OptionalType.swift */; }; + 1FE523A57E1F050C9462927D72E6453E /* PhotoEditorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB260D469E13128154D9E7ABE02CAFB8 /* PhotoEditorViewController.swift */; }; + 1FFFC2B6E599D4C2125E35182E161F2B /* sharpyuv_gamma.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FAE7BDC15B4ECF9C5F5FD05C6AFD281 /* sharpyuv_gamma.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 200355A1D6B2618C8BB30BFA6973FE01 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C25E233CFC387CA4A006D4D00CDBB57A /* SDWebImageDownloaderConfig.m */; }; + 2014B01D7621E7DDAA1C4784FF7EF0D3 /* DotLottieCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0547616BE46FF1E17F8F0D22C74EC2E2 /* DotLottieCacheProvider.swift */; }; + 202812410FF22B588DF523787B54E176 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 20342C3491090D9F1DB91C5CE745291E /* ItemsExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEB39954F2E0BFA206C3D194C20D02C2 /* ItemsExtension.swift */; }; + 20457FA9C1E51F32C3B2F8A5821B0ABB /* IQKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0ACE6098C6600F130B1FBE95DA09FCB5 /* IQKeyboardNotification.swift */; }; + 2055774CD703B52DABFB1CC588394A94 /* MJExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 727FFC6D0A7BEFB9E947E7D5FEB69455 /* MJExtension-dummy.m */; }; + 205C83B3629F462C40CBBFC1E1FCBC3C /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 45676A1039F53B7B44E96257EFC0755B /* SDDiskCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 205EB01AED14BB574DD54EAFE26E4786 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 208BA7E9A4055B273B4BA785F0A0E6E5 /* SectionedChangeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED970E0B932A9A86C6B9B60E4F4A43DE /* SectionedChangeset.swift */; }; + 20988E7C942B437989E7A7BF1F8E9136 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1023870AD95A079CF71B1619FF07463 /* DispatchQueue+Alamofire.swift */; }; + 20FDBBA13FADC258306290D61E078B30 /* UIView+SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F4A9FE6A3F2ACD446C28FAE8E1F0E53 /* UIView+SwiftUIView.swift */; }; + 210D4C72506ACFDA3F5129966DA002BB /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B629D4BA0B10122B36F8D3078B38BA6 /* Event.swift */; }; + 215254D820230480A086DCC6E323D256 /* RxDataSources-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCC3CCFED5B0E4592E403671601ACEF /* RxDataSources-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 21ADD9908F7B0003FCC8E1D221548068 /* MainThreadAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7537436472ABFEAD772B0BF688824449 /* MainThreadAnimationLayer.swift */; }; + 21B415E684E478369BB5D2C63382C613 /* VideoEditResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2487C96BE7C199B1C2B818C214ACE2A1 /* VideoEditResult.swift */; }; + 21E2F85CE870CA57AF08B557717E2588 /* IQKeyboardToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1970F255FBB8A6704AB7CFD5716435DC /* IQKeyboardToolbarManager.swift */; }; + 221C2C5A677210D28C7092AB45DAFBAD /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 1CE5CC4648FB6DF842BA008DD474C9D0 /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 22516EA77E7120000632C30BD9A03927 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF1F452F9623F8A1F1BC97F1971B9AB /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 225B339BBBB5BADC1BCA9E6E050486C2 /* HXPHPicker-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E062A58C2152A34289C191C1908410 /* HXPHPicker-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2260352B17E9CBFB9A5E5306851A2649 /* DDContextFilterLogFormatter+Deprecated.m in Sources */ = {isa = PBXBuildFile; fileRef = 94441A97766437C85EA2053848569EA5 /* DDContextFilterLogFormatter+Deprecated.m */; }; + 227638CEE6F92D3BD0F9B0D45B49C833 /* RxTextViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13257E2CEB981F8DE0977FDCD119CA08 /* RxTextViewDelegateProxy.swift */; }; + 22ABB2CB25ECF7224B583221B4C97CBB /* ReducedMotionOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9827171C80049752294AD9E3E7618E0C /* ReducedMotionOption.swift */; }; + 22E8465DC034A34C40E02C7B3E38AF50 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D4A842BE2E110919CE40363C5F007E2 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 22EF1D1B405331F794F1D42A447A1E9C /* FromJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE4001EA3C74696CD653D4D456B33090 /* FromJSON.swift */; }; + 23B8C15ECD59DB68A10AEE5BC18A66FA /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 30BD85190BA6619C60F905C8C99773A9 /* SDImageFrame.m */; }; + 23E0E5B329060D9643B8C247723D203F /* PhotoEditResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 996E52A9F81C41390E20DE3A4592D278 /* PhotoEditResult.swift */; }; + 243FC08968D968284B21109B4C52F5A1 /* CompoundBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 480D5CF8CBC208B22CD517AAD0704692 /* CompoundBezierPath.swift */; }; + 24637C51989929A62E5E75585544A14D /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20A89EBE355145B0F7D0CE86923C8686 /* IQKeyboardManager+Debug.swift */; }; + 24E37A83108B1C7DCCCEEF273881A6A5 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 87F5684EEAC16057EE7CFC5BACC763C4 /* PrivacyInfo.xcprivacy */; }; + 24E72CBC4A4DB70615D5F552218E906D /* CoreTextRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA10D70D427E316E20ABE84F02DE485D /* CoreTextRenderLayer.swift */; }; + 24E963C1D6245F98BAC8A0ACCB7DE987 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 198CEFDEA8156A3D6EA872BE843B4316 /* NSBundle+MJRefresh.m */; }; + 24F05AE767C4BA4A3D46405B285C1917 /* LayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 862203B641B5E8B956897660DF943C86 /* LayerModel.swift */; }; + 24FA5CC8250E9A64219FA2F3201539A5 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 432FA1B90521DCF2ABD467F6CB5BE0D8 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 250DB522E2B88BC538C5B468436228DC /* SwiftLogLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = BAD8A328CB6EDF375064B5BEE7F65B87 /* SwiftLogLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2558B9A09FEC5710F7D00DD5E3E053C5 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F8206ABFEFF019F1EA61DE7AADF9462 /* Request.swift */; }; + 2567FE276DB76481DEFC7DDFE7D775CC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 25691C42AF5ADC1B7AABB62199030F4E /* URLNavigator-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D0437BBB36BED63582B9839D1E20DCA8 /* URLNavigator-dummy.m */; }; + 25A38F09D2BE68763FEEFD4C71B99257 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = DBD5C92406FF93CF245F5E43F82BE580 /* UIImage+MultiFormat.m */; }; + 25CCA7DB92870A0E9B9DB81FE7CC635B /* IQKeyboardToolbarManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0E60F83DE43BBBF924BEF72B94D7D88 /* IQKeyboardToolbarManager-dummy.m */; }; + 25CE41F0442E533D2AB0256D4527FFCA /* Binding+Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDE09D4F498218C6D85FACE5AF9F3203 /* Binding+Map.swift */; }; + 25DC15011A46811CCD6ED7C3F8C0D96B /* DDAssert.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19B267246ED5549EBC604DE7947CDE89 /* DDAssert.swift */; }; + 25E001DB4C1AF58D359B83CB604EC927 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = BC82B7E9975E6980600CDB79F602BDD8 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 25EBA3F34C0061382B844D4A9E3B464D /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 233D806C4FEE853AA2DB63AC1F837D4D /* DispatchQueue+Extensions.swift */; }; + 261EF92C048F313E01114B86B08D0E73 /* YBIBVideoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 57A2457AF7E1D5EF7A21A2F3D540DA59 /* YBIBVideoCell.m */; }; + 263DC1F3C2EF5F1B9D867061F1E91853 /* SGScanViewConfigure.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A41343F97BF0D399ADC1E9711D86A22 /* SGScanViewConfigure.m */; }; + 268008A236ED740E643732F35E784099 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C9B78922BE02FFF53369884C14F1FB /* RecursiveLock.swift */; }; + 26871F8BD6198C4D087B2EE2E8A20EBD /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = C05D0791B25960724D44549980AD74B1 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2688DF9C89CE58D50C174F1E1BB89DE4 /* SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6231FD2D37A52E5BFE0B866D8EB940C /* SwiftUIView.swift */; }; + 268C2C9BBF4967CE0B06DAE477030173 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8CAE6D15F1B3B7A425CDAC4B3BEB3A /* Interpolatable.swift */; }; + 269D5BD5031AE2E93B3ECD48F9FAFBFA /* YBIBAuxiliaryViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 37D11A371CBE51534B1035243FE652C8 /* YBIBAuxiliaryViewHandler.m */; }; + 26A74998FF747B99E618103E7902EDC3 /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AE15C20A74AE7258AF74FD1B506F1AA /* KeyframeInterpolator.swift */; }; + 26C23B7B2314ADFC8B910E21F066D80A /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A1DACC2DC8AD21EC30FE9C39863EC883 /* SDWebImageManager.m */; }; + 2703C0DC58FB460C01ADE8E8D22C9F62 /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227239C8727C62367AF6079F3FDB9577 /* SessionDataTask.swift */; }; + 270B3843CF38BFC4CC014912C65372BD /* UIRefreshControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5FE50E2C3759529F39015ADF4515455 /* UIRefreshControl+Rx.swift */; }; + 271276372725504F72DF758F8FF03934 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = A0754BE3F77591C44FFAB586747F773C /* SDAnimatedImageRep.m */; }; + 2749B0C5BDC4FE8527CA5A1EEE444749 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 626BED7AFF918C2EB7C12F491DDB7BE7 /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2776432A35C89643DCFD114EEC2DE838 /* DDDispatchQueueLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AC9E6CA74830BF0C4F0A5DEB598B368 /* DDDispatchQueueLogFormatter.m */; }; + 278DFD4F490310BC9B416EC7C28254AF /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 31391E8B55977047175BC0FA348319BA /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 278E08ECD06CE42D68C327B7ED07B31E /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 2393D8EC822992E154A2A546A2FA3CE3 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 279197F2D4222FB813C09D15F93F0051 /* Observable+Alias.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C03FDAE6EE74E76EBA2288AEB50A1EA /* Observable+Alias.swift */; }; + 2799155AAA7AC8118EC37F5E30D89B6B /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = FDA3B029D6EB1945FC6FE325674E10FF /* SDWebImageOptionsProcessor.m */; }; + 27A478FEE0C7EF6A9FE97D7F76571E6F /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 937527F6AC0ACCCA2F3FE296E1CEAA54 /* SDWebImageDownloaderDecryptor.m */; }; + 280159C811343669BD8CA8A23A24DF75 /* OIMConversationInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B1881949C33489CEE44FB1A8CE92D7EA /* OIMConversationInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2849A018772515A2A420A69B13954E8F /* PreviewVideoViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B575818A4B7E646C5F142DB98D4CD278 /* PreviewVideoViewCell.swift */; }; + 2856121070FEFC1B4D77693641551510 /* YBIBPhotoAlbumManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D60BD316ED3AAEB173CD7E6D10C500B /* YBIBPhotoAlbumManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 288CD3416B265CAC1300D7938167AE66 /* MJPropertyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = DFD1D7F5AE312A4CF621602C119A807D /* MJPropertyKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 28A85A89E4CC5CF4E4CE71FC660E4730 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = E9EFABA771877ADF9180E7DC0B95C72D /* NSImage+Compatibility.m */; }; + 28B54402C159A5D46AE0930CC115B860 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 36867FE9CEB2E51AD35828908BE554DB /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28BA9702905AA2B4C1E9E4878032D4E4 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBEE290B7F33E3A002E037EFADB8B2F /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 28DDF775177170CEF65E550AD4EF6111 /* OIMSimpleResultInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6075D01B0C2D3160EF60C4BB2ED644 /* OIMSimpleResultInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 28E2D1FFBAEC6CFB57D72F44CBBA018C /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BB7796CE00BCED66E4B2F23431A73F6 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2943E6BAA581FB96B5D98F32706C231D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + 2962C56DA00F10C519469C70EB1087B3 /* CocoaLumberjack-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 316B60AE42434791E20A83CEC6A09383 /* CocoaLumberjack-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2966C57815E8A7DFC25ED23AFAD66C31 /* BundleImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6ECB7242FE69E5D1474792D4B6FBD21 /* BundleImageProvider.swift */; }; + 296BF59A80969CF54CFCD4908064CF87 /* NetworkActivityPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B3CE22D40D563D3716D2B637C30D428 /* NetworkActivityPlugin.swift */; }; + 299BC9F3FD6FDB13F90CAADA0E85E625 /* OIMSimpleRequstInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D4D5D1D01BF0456AD4F21C830F01BD /* OIMSimpleRequstInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 29C0DBA2B06EB4A2A273B356AEDD27B5 /* Vector1DEffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AC56FB29A4BDFF4CF1349AF6A43D9F9 /* Vector1DEffectValue.swift */; }; + 29C433665FA967606C6CD5B8A265D1B6 /* Moya-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 58E05B5C93BADAEFD58E919F0B6DB5D0 /* Moya-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A00AD64351718EA40475CCF924B0870 /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF4F5D327A12E7ACE2DFF76883BD526E /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */; }; + 2A3F75428348E6B2AB9828388AD4B9CD /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D73881111D0B6F5672FE5D8E90E98FA /* mux_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A5D5D23BBA9E041D733CA56472C1F4C /* BezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = B37E5F666720987BD19B13495B1D2AEC /* BezierPath.swift */; }; + 2A61C66DF98A7F7FC183B67F5B9F97F8 /* CallbackProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = A99EBE5E9E3CAA905EC6539367F7792C /* CallbackProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A8F210A67132914E0613F1C99193F7C /* PhotoPickerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33480720859FB80422F18693CD711143 /* PhotoPickerViewCell.swift */; }; + 2AA4D8A29372E9703E65E22948131B63 /* ClassReference.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC327E3E09A630F76C0A3C2C4014967D /* ClassReference.swift */; }; + 2AB34339C98BF370283B2679E890BF9A /* MakeViewProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA123271654EAC1C72B1A246499543F9 /* MakeViewProviding.swift */; }; + 2ACBCEA4A2C9BF7E1DE378F47A085951 /* IQTextInputViewNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BF32372FBC1D4CEB416B12E4E4D35483 /* IQTextInputViewNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2AD40AFC4BB803B3EF3C41BDE61118E5 /* YBIBVideoData.m in Sources */ = {isa = PBXBuildFile; fileRef = 193E7324AAD235E26ADFD7F5B3EEB6C7 /* YBIBVideoData.m */; }; + 2B067825708D13E7E455426389397D1A /* UIView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D95D57DFF072259B98628A58665039F /* UIView+IQKeyboardManagerExtension.swift */; }; + 2B20067EAA2480AF957719D9D01C2CD7 /* YBIBScreenRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D95A95805D665C143687E0AF8794CAC /* YBIBScreenRotationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2B2EB369550CE92CEEFCBFD3D32B8A3F /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61831D41BCD7315F136D4DF2A5ADD114 /* ConstraintInsetTarget.swift */; }; + 2B956A20DE80B42EA2C4D55BE6DBDB67 /* TagListView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 59DDD979CBD6C9981F4FC9235EFC9381 /* TagListView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2BA2440F9918444C393690BFC7D9212F /* FilepathImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F6B9B8EEDDD183E1425AB22C7937309 /* FilepathImageProvider.swift */; }; + 2BAD02719D969EC5C6E65323E04A505F /* RxCocoa-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D1EC99C6BE34665E03162207933049DA /* RxCocoa-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2BC30E20EF04FAC4C6C5675473E6B29C /* not.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ECDE574BC8FD1E32B99075B12144063 /* not.swift */; }; + 2BDC9B4412E51F70435144EC2F215184 /* ErasedContentProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76FB8636DE8E4F96063F7028E44A0E04 /* ErasedContentProviding.swift */; }; + 2BE4EE63CF1855AE9F3E6F93F06119CF /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2C92E71F92957D93A3E7A0F3E1C393 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2C763A73ECF7621B40360E6929ED2A27 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 2C96A318BE047B6E68309B615CB5B8FB /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = D684D3C9D84C465A70ABF5B38AB813C7 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2CC24AE55F29AEF0890A4258AE601A88 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 728F4A0612FA1A63487666BF4A4B68DA /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2CC446772DC028C095278529D924D35D /* ShapeRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D8493AA193CAA6E09CB81F3D8A8C477 /* ShapeRenderLayer.swift */; }; + 2D105BF9B700D92896BF06F340275B83 /* NotAuthorizedConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FC1EE43154306096568FB039E407BD3 /* NotAuthorizedConfiguration.swift */; }; + 2D56C6EFDC9DF036822FA06D50ADE2C1 /* CAAnimation+TimingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F24D6C58E498E7B37DF8D75A1208F70 /* CAAnimation+TimingConfiguration.swift */; }; + 2D8245FE7A22ED672D3DF95E77A96E46 /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E7634E51DE590157C8F535EA1D247B4 /* UIButton+Kingfisher.swift */; }; + 2D9874572CEDB7AACBA158CB64EF379C /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A2434F3EB6290F8CE20AB41821143D16 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2DB9E576AE22E204A74411EF598FD0D8 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = A9770EBDF903A431CE5AB241FCFFA29B /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 2DC44A09A6C9D6DC7D1BDA2DFCF99EE3 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E9633A6F0549DD0FA20124BD54A186F /* MJRefreshConfig.m */; }; + 2DD150D77A9745899543093C3896972D /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = B76508B90B02228B7DEA4C69F78B18D6 /* BehaviorSubject.swift */; }; + 2E13E22E2981ABD137854CB0BF3D8F01 /* Keyframes+combined.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99A13D9C8041EE3BD62071DAE3F0C6B2 /* Keyframes+combined.swift */; }; + 2E2DC0C6F0E4A994820F917CC88B1168 /* Core+Dictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9005A4BA6A695B43606F43DA74AF0ED0 /* Core+Dictionary.swift */; }; + 2EA3AFEE09D681E491F24C9B1A85FF44 /* ObservableConvertibleType+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BE318237005B61F9AF9628B6F039D09 /* ObservableConvertibleType+Signal.swift */; }; + 2EA5C7350AC28ECBF0BF9640F1AE0F96 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = A2FB51B9742FF46DD5E6F6CC65B93B6B /* SDWebImageCompat.m */; }; + 2EABAE5AB809F505775B13EF046431F1 /* SelectBoxView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FB12255CE9417581E8B581894EB9660 /* SelectBoxView.swift */; }; + 2EB965F2E798586AE033A73467469967 /* StrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98675E3A1A2936ED5AD80EDCA005B45A /* StrokeRenderer.swift */; }; + 2EE30EFD051670E0930EEC564D982911 /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F894448A1A6571D3135218466860C95F /* Producer.swift */; }; + 2EEA29F33BBE2927BD5730625105C993 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 68CCF82D67A8D5BF212E5D1E132B0103 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2F1757EAD479C3E8C7C75561BADB0F1A /* LottieLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBBC4A106EB08D48922BFA7B703838F9 /* LottieLogger.swift */; }; + 2F23C06874D2AAB852A93809AB216A24 /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CE0D06257484EC85831F397106980B /* BinaryDisposable.swift */; }; + 2F44F439C70D865DE857F8A71E11D548 /* MqttCocoaAsyncSocket-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 08750421AE2FCC141D4D1F8E3C6C6789 /* MqttCocoaAsyncSocket-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F594E0CEF6E7B8BDDA677C93ADE5970 /* Entry+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = A06D2EBC68A9A66C6DECE0BA1D733FA3 /* Entry+ZIP64.swift */; }; + 2F6774015407B5B4841C9A34BC009900 /* PathElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB42CF3C2FE27263094321A19D8E34CD /* PathElement.swift */; }; + 2FDA0F9A0DBB98A99500F2E0B5B7753C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 300106D253D6B0A83D0FA41EDA408B77 /* PhotoPreviewVideoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD8F7F80F12F551B6BDDBBD6981BC3E1 /* PhotoPreviewVideoView.swift */; }; + 300B7BFD749B06AE3B711426442E41A3 /* YYImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B8AA282E96B073F73D645D38CE1096E /* YYImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 30617D7947DF3FBD9154F1CA87D3DBEE /* CocoaMQTTMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F078664F20916DBD98CD43B1695DBAD0 /* CocoaMQTTMessage.swift */; }; + 3072B174CD0EE983BFECE8586173F397 /* YYSpriteSheetImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 600B0109CAD95BF5917C28BF3281115C /* YYSpriteSheetImage.m */; }; + 308AC672301C6E7DB6824993D255E0DA /* OIMMergeElem.h in Headers */ = {isa = PBXBuildFile; fileRef = D43D3D49600F86D5154E1438DC7E9E53 /* OIMMergeElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 30BE83ACB80227A5F67D6A1347B1293A /* YBIBIconManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C04AF582F9D6D4B5C00FBDCDB0C3039 /* YBIBIconManager.m */; }; + 30C51CA989B9666063FE1095581E93DE /* YYImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 378A71B05B4B6E35FEFA06A102708B90 /* YYImage-dummy.m */; }; + 30D6F928FC08B13B5BFEEB154A2089C1 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBCBAB931CCEE194C1467906C7B7D94C /* IQKeyboardManager.swift */; }; + 30F32C55A2BDA22D805A0B0C0AEBB50F /* Mapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D35101D07B11F5698DC173C735AC6B7 /* Mapper.swift */; }; + 30FD62F4759445BDDE759B1102FEA7A2 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D1A524C5B6ECAE4BAC7424565E81C313 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 3128BD706592ABF336A95E04E8262330 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 3419D2C8671536D5EF4FAFBBECE79EE0 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 314194E9E0C7A9EDAF93EA83122B3C1C /* SGQRCode.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2D181860A376B53B945D2F66652716 /* SGQRCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 31477C3CCE2D60FF4F7BC2C8013669D7 /* Keyframes+timeRemapping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 042A695EB5A0C54C275F88586AB33EF3 /* Keyframes+timeRemapping.swift */; }; + 3160A07FF7E8C76646BBFF324589BF9A /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FC8DE6CE3CC887158E8DC8331DFDB39 /* ObservableType+Extensions.swift */; }; + 3164BCCBA9C6BDA00D4E46E1DA4AD5ED /* PhotoAsset+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A180C55B9B74D99B78B2F0EDB46D1C8 /* PhotoAsset+Codable.swift */; }; + 3184604BA228388F115333291336137C /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93D9B635C959143CB4FFDC5AFF2342A0 /* AsSingle.swift */; }; + 31F42206CBE3923A5758B97AD729A7DB /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F41F37C01FE78AF3EB2EBE2C0063C55 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31FB1355B0B598BCE30B2FF61A6B3792 /* CompositionLayersInitializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58FFDDCF04DB129070555E67F7D62F4B /* CompositionLayersInitializer.swift */; }; + 321F87DA34863DC5C977323BAEDB2B55 /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = BD344724CF8CFF05B4EC629141908CFD /* NSObject+MJCoding.m */; }; + 325514A9E0AC13E73854C6257EE434A6 /* RxSwiftExt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D85D65A785DD11618ACCAF108CFE339 /* RxSwiftExt-dummy.m */; }; + 325CA20B9271F3E008234E1518B79061 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5848253A22D6396B7A068D7D2A0277C9 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3261AA0480C168A6529576CDA9642ABE /* FloatingPointType+IdentifiableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3514A7FBBF4EB30D7EC248635A87A74 /* FloatingPointType+IdentifiableType.swift */; }; 327BA3DDA513422E632D3DA4A8FC60EC /* MJRefresh-MJRefresh.Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */; }; - 32A204B2A7BF8766BCB7E94E244CA6C2 /* MarqueeLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 49109E0282ED87E8EDD6FB47CB18C964 /* MarqueeLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 32AC044F812E57DA9C85C6E83D60EA1C /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B84ED04EF6E738BEDF956904DC7E150E /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 331451D311170A432A1FAA9AD81AFA19 /* EnumOperators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41FAE3704616441F385176547E15B85F /* EnumOperators.swift */; }; - 332EB3263B1002A5A0A146CCE70501AD /* IQRootControllerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1CBC6FE30779E662A20B0F6FB6BF989 /* IQRootControllerConfiguration.swift */; }; - 3345899CAB69BA4C8E09CEE3C7BD8270 /* OIMPictureElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C2073401AAF79A598AB6B0B912877B8 /* OIMPictureElem.m */; }; - 33476FD5E53BCDFDF5EC6882D951B06A /* OIMNotificationElem.h in Headers */ = {isa = PBXBuildFile; fileRef = C961DD0E63F5AF416C1B3514F9AEBF47 /* OIMNotificationElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3349665DDB553E9B414AC41BEA46BCA3 /* ShapeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BA20785663BFF2D9EB5DA399BF39DB2 /* ShapeNode.swift */; }; - 3358462564AA5B1FBBC955BDF8877DB7 /* SGGenerateQRCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E1DD7D29BF1FE1A9B3EA3877C3D2A929 /* SGGenerateQRCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 33798D67D14D1204B31A48503769D2E7 /* SDImageFramePool.h in Headers */ = {isa = PBXBuildFile; fileRef = 564EC0EDD2FAFB0AF6925E211B89F1CD /* SDImageFramePool.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 33860EAD6F6E3FB15D909D37C9CC63FE /* Stroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18A237F8AFB1DD864B2E065B762851FB /* Stroke.swift */; }; - 33868191124C9202405A7A4B640C7372 /* libwebp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B0BA1B9007316089950248F030BD49 /* libwebp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 33A18CB4C8841E664E14BDA0C24B5039 /* filterMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 871E714FD37A86D38B34456ADD948A3D /* filterMap.swift */; }; - 33D4E19DAC45622690570E3E4E106BAF /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B34C0675FA28CE45E9A9E5129638E48 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 33D7D43D9779D06D5F55880A00A62E63 /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD65B01FFFE710531CEAB6814557AA61 /* DelaySubscription.swift */; }; - 33F68809FB1FE1590E2414602781160A /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 72679461AA0F6BDFD187D5631DB82AEB /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3418FE0819D95B803BA81F37DD1948FD /* LottieSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EC2C9B5255FD1BD8E427E9A7A199580 /* LottieSwitch.swift */; }; - 3468FD7E83C0A6607F7229DBAB70A135 /* YBIBCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2724F7D5E46D3CB108BBF81954389D65 /* YBIBCollectionViewLayout.m */; }; - 3474B30C8723FEBC3736A59B7AB046FC /* toSortedArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31E78FA0D84F351E9823CE5E2062575E /* toSortedArray.swift */; }; - 349CA4516F8DCBE57054EF6E8F15D4C8 /* mapTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58EB1FF15EF91274F887D47E933DE7AF /* mapTo.swift */; }; - 34A90FA56CA4751EE718D8FC7B800C52 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B244600AA2104B57BCCCA5F23E2F4613 /* PrivacyInfo.xcprivacy */; }; - 34AC7EE85AECAF484EC811C138A82E6F /* CompatibleAnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C52DF26092158048682358F43565CB5 /* CompatibleAnimationKeypath.swift */; }; - 34C1E55916E3C238EC24EE3CDDC0025E /* SingleValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 630AE44EDCEF6C485BEB0D998AE18947 /* SingleValueProvider.swift */; }; - 34E1EFAD3DDA7672F89B228CB8067F85 /* DeniedAuthorizationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 026F29BAA77629475C91162F66FF4839 /* DeniedAuthorizationView.swift */; }; - 34E4F069384DB75E1AA09E52C0A61D7B /* SGScanCodeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 541168B5F63506CE532597108DD96983 /* SGScanCodeDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 34E9D5F556C832BE78D1074553F78F91 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = EBC7D79FCFE59C1D4E2B2EEC9415C53B /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 34EE43FA8D0849C39D6B7A68A7EEDB02 /* ToJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D01AEE6FEB31BADC6ABBB964F92BFA6 /* ToJSON.swift */; }; - 3513BC85F4699997C3DBB8A077D5DB12 /* Popover-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 67C09087FD721CE9595DAF45BC6B7889 /* Popover-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3540E178FA1028BA33C5308A5E70B24A /* OIMMessageElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 212097E109C37ABABE45EE6C1CB93074 /* OIMMessageElem.m */; }; - 35585F0F14FF02CC22B4724742344C98 /* Core+Bundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = D867D1C31B709009EFE974B0553F9D9D /* Core+Bundle.swift */; }; - 355A2A3962A82AE25D219DB774CB6AEE /* UIView+ResignObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78CB2111E31FA7D356C77E38AD4E7B19 /* UIView+ResignObjc.swift */; }; - 356B49A0C32559CCEE631C44CB2B0B40 /* AnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2FB81BBD6BCBE9C6D6A155576A27671 /* AnimationLayer.swift */; }; - 356F7D6C5EB3383BE2B8ECBC58810926 /* Core+UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = F26CC0BC63B38EDBC22273E9C0D67DF2 /* Core+UIColor.swift */; }; - 3575A2E218096B1FD9A1B2B0C6DD40D6 /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC59F0F7B131E5DEDB3606A093622755 /* Reduce.swift */; }; - 3577F172FA68CBAE47CFEE6FE25C5404 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = C803D3D90266F99C8F0394B468092649 /* ConstraintOffsetTarget.swift */; }; - 35AA2D02723EC5CB583C6CC4B077EDA8 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 5631AFA1B502DB722A84A7D8AEBC9608 /* PrivacyInfo.xcprivacy */; }; - 35E16B7BA80A25B2B4063CC2362EB8B6 /* RxTabBarControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D915E50F6FCDF1F827027D737E68CB8 /* RxTabBarControllerDelegateProxy.swift */; }; - 3610091956D90D4861D5E206BCF37FA2 /* DDAbstractDatabaseLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EF5D80D80065619CED3075AD992270A /* DDAbstractDatabaseLogger.m */; }; - 3636DAB7FF443D6A94EEFF759FD706C4 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = BBBC010B85BCBA9FA6908DE4D9348839 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3667945C95696169C2F3E7EE37188664 /* PreCompLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFD2FEBE902487EB11E1F3B27258FDE6 /* PreCompLayerModel.swift */; }; - 366BD3046AE8E0558AF52F571AD039FA /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D0884D8E461C506BA1299415A08D8E6 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3676A648CEE267ABE6886CF97B0327D5 /* AnyEquatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89EF7D735951E4D80CDBC73A687206F8 /* AnyEquatable.swift */; }; - 3683E0632283EDB6B8B0F3E2506704E4 /* YBIBToastView.h in Headers */ = {isa = PBXBuildFile; fileRef = BB3D3CAB8E5BB7D166549F00AB9C0C15 /* YBIBToastView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 369DF6199E86E719191E7B2D4F040B9F /* CALayer+addAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 285EA2B479EE8B45155F473C9D20EED7 /* CALayer+addAnimation.swift */; }; - 36DF23DE9EF12D0C9F3B4DA80D06AB42 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = F05C90425892DDCDF4B66655B97AA849 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 36EDE8F37831FDB474E621284702ED94 /* MoyaProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BC1184B394B0F1891FA39A297FFFEA0 /* MoyaProvider.swift */; }; - 36F5B11E0F51C1CAEC8E3BF3BD1397F7 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F4975EE0DFB3B2FF2DC34F0C3FAD60E /* NSBezierPath+SDRoundedCorners.m */; }; - 372B028224B230942D573C6071980027 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D2F58F6D75CD6EAC8B4645270447959 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 373D6A9E56AA0F29E9366CBF901182BD /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BED3A0B0A00EA2FA5675D1740AB8EBD /* InvocableType.swift */; }; - 373DE1A8B1676910BADF13B1A9CFE712 /* UINavigationController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41249D28A0A1532043F7069D1A9E3DEB /* UINavigationController+Rx.swift */; }; - 378BD5280F6C07B11CF30B253D824972 /* IQKeyboardExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = B86E1E6F43F67612B84DE9E72FB2157C /* IQKeyboardExtended.swift */; }; - 37B890ABDC7DD441E6AA662325D412E6 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = F00857D4A1176AE49F933BBAE966C775 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 37C01DDF19DA22727830A62998953BBB /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CE5A9E99CE471E9A158B19E7DA75F2C /* SchedulerServices+Emulation.swift */; }; - 37D637B577E1AEE9A86932C97CE11F7E /* YBIBAnimatedTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D106F8687416EA77319E7ADE562850 /* YBIBAnimatedTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3834F6B013F16886BE2866A29E65F22C /* YBIBSentinel.h in Headers */ = {isa = PBXBuildFile; fileRef = 73CD422A69C42F923FBDDB22D2266109 /* YBIBSentinel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 38755BDFD20CBF8C82F5380B3FFA9249 /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C029410FACF307A2410FE68E0C0FBB4 /* Sink.swift */; }; - 388BB4079F7D18CB3D7AF0848BC98F08 /* UIView+SDExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AB6CBC4746778086E329DD344D09063 /* UIView+SDExtension.m */; }; - 388E9AB445D19AAC2B88CA28406EE7A3 /* LRUAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A09E695B709DD7B53EE9791CFE0DA7E /* LRUAnimationCache.swift */; }; - 38C2517BC6611A88A77F119A3753513E /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6641FA3ACADA3576F1D309E21FC9447 /* ToArray.swift */; }; - 38C96772D989E3D1023A2D4FE66545FF /* CustomDateFormatTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1643B1405173B32A64A5AB78741EBA0B /* CustomDateFormatTransform.swift */; }; - 391B27BAE013804D48948F0985BA840F /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6737E046AAEEC1377A37635597AD9339 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3956E7FC11B63EB5599333059EF1FBB5 /* DDLoggerNames.m in Sources */ = {isa = PBXBuildFile; fileRef = 8071246364071191EF7E463371025B98 /* DDLoggerNames.m */; }; - 396607D0F1FBB75736DD27CB92EB9999 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = D3C3F3D9536425D441065A0DD49296FA /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 397FC8643361169A2EAD49BE467DCC4D /* EditorChartletView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD9041B6DF19370EC5F993457993D52D /* EditorChartletView.swift */; }; - 39ADCCB0719C1404E44818F79F665F4F /* NSObject+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22ADD96CD00B989B7126ACA192406A98 /* NSObject+Rx.swift */; }; - 39B33D7873CD89C6A7E96ACD36A1EDFB /* UIScrollView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A728065D0A8D6804B2901F182770F32 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */; }; - 39CD61C38849FB1D75225ECB96384C43 /* IQKeyboardToolbar-IQKeyboardToolbar in Resources */ = {isa = PBXBuildFile; fileRef = A16FD016E18EACCF6B23F219F2E236FE /* IQKeyboardToolbar-IQKeyboardToolbar */; }; - 39D449220194AE1CD884069FBF6F735D /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1F579E8E331132963070FBC936F1C2B /* URLSessionConfiguration+Alamofire.swift */; }; - 39FBB955C79378BA3C17AF80374A019F /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7E1ED39AAD946F41815380593F8080E /* IQKeyboardReturnManager+UITextViewDelegate.swift */; }; - 3A0FCD7E6EE386F0B20221A7079577D6 /* EditorStickerTrashView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43E499C40D12F0BA44448C3A8FE1BA57 /* EditorStickerTrashView.swift */; }; - 3A13E0541707F58A17D927824A9A8B32 /* AnyValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD27972448441D5FB6107C986BEBBE74 /* AnyValueProvider.swift */; }; - 3A2FCB914F6EADED828FF05F7E9132AE /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 45AEBEE9E3F79E4CDD32A46B927067A9 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3A4AF8E172B30D070ABA2D212B67355A /* IdentifiableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 989D623AF0CB634DB11052E3FC4DC617 /* IdentifiableType.swift */; }; - 3A4B897B65DE3FAAAC2C0AF9FBCE87E7 /* DateInRegion+Components.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C6097CD51385779D9DD1CD30E169A70 /* DateInRegion+Components.swift */; }; - 3A52295413184C31AEA430BE39BFC491 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 587526430D6035E65DAF5B13CA90B45D /* HistoricalSchedulerTimeConverter.swift */; }; - 3A64F2D6B35DA2E5DF97F1C53B2FF446 /* TextLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86EE28E7DEABA7E24637E97FC9F503A5 /* TextLayerModel.swift */; }; - 3A6B20BEE4F7A5B5835DE5D1E509754E /* IQActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BF72E2AF2147FA1AAC4682FE8CD2024 /* IQActiveConfiguration.swift */; }; - 3A75B3C179F71755659842A0DA8C538B /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = EDB10F862D32D2EB8157A71B23F041C5 /* SDInternalMacros.m */; }; - 3A8BFBBB8C6B72DD0C33BF3589621D91 /* PrecompAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94F7F3E3105E990CC2499FF7816AE311 /* PrecompAsset.swift */; }; - 3A8E2E05E1836E45FFE3021DE5AEDF40 /* UIStepper+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E66C33D1549606616E2570F9CA08627C /* UIStepper+Rx.swift */; }; - 3A90C72B0F8F9939213C668E668754DB /* UIPickerView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27137F8A01D16088D332E2DBCE90D361 /* UIPickerView+Rx.swift */; }; - 3A9DD9A71347A70E56007D5104BA32BB /* PhotoListCameraCellConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF440B48F12C86D500E4870C7336F8CE /* PhotoListCameraCellConfiguration.swift */; }; - 3AAF427F8890A73EF93A1B309201AF4F /* VideoEditorCropViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57693EF93CD5CEFDC6308D6BDAB5934B /* VideoEditorCropViewCell.swift */; }; - 3AF586464F2E155F19FA21CD13CE86E9 /* KeypathSearchable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AC04D79457374349B95B0B732D07A31 /* KeypathSearchable.swift */; }; + 32A204B2A7BF8766BCB7E94E244CA6C2 /* MarqueeLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2A4FB1654D2C01A0BB8DF98D396CF8 /* MarqueeLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 32C22FD7A0748373999BFAC35C3AFC28 /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = A48AE4B983D1A1F6626A2B7F77DFA6B2 /* Switch.swift */; }; + 32E39C6EB2A04EC7B64B5E22567CD4B2 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 81A904CC270F40DAD1A3F3B872317F74 /* PrivacyInfo.xcprivacy */; }; + 32EBC704E71F378249AD902DDA6B9925 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0366DC09C0344E545847265A75E5AF /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 32F42F432E1925E1EE9F1DF10E230B05 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 24FC9168D387E6F56C45A5E422ED6057 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 331451D311170A432A1FAA9AD81AFA19 /* EnumOperators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12C03BC1B83CC86160BD1E3A61E1D046 /* EnumOperators.swift */; }; + 332EB3263B1002A5A0A146CCE70501AD /* IQRootControllerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9714A1AD9F2DF6D9204ED18A1C836E6 /* IQRootControllerConfiguration.swift */; }; + 3345899CAB69BA4C8E09CEE3C7BD8270 /* OIMPictureElem.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBA512CDD9A14E3AE8881732D0ECCF6 /* OIMPictureElem.m */; }; + 33476FD5E53BCDFDF5EC6882D951B06A /* OIMNotificationElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B031927313E161861104668E21A8DE /* OIMNotificationElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3349665DDB553E9B414AC41BEA46BCA3 /* ShapeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1A9571D4A22125DDC26AAC81C21512 /* ShapeNode.swift */; }; + 3358462564AA5B1FBBC955BDF8877DB7 /* SGGenerateQRCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 54CE1D0923681693A97900F260F5D57A /* SGGenerateQRCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 33860EAD6F6E3FB15D909D37C9CC63FE /* Stroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB272087ABE824979CB58F3810B9CDB8 /* Stroke.swift */; }; + 33A18CB4C8841E664E14BDA0C24B5039 /* filterMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BBE0E370C0970A23FE497F665D3E7BB /* filterMap.swift */; }; + 33EDF0B768037D79D2D812243EAEB5C9 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = CB226B090B92DCBB1D0C6EDDAC487C5D /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 33FF3CD3E08555DFBD99128351618032 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = E9267C55D20111C7DA6661FF692F1FCA /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3418FE0819D95B803BA81F37DD1948FD /* LottieSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F193B62510CE37DFCF289B85FBBE78F /* LottieSwitch.swift */; }; + 3468FD7E83C0A6607F7229DBAB70A135 /* YBIBCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A36550B8B2CBBB52150C46F5E083568 /* YBIBCollectionViewLayout.m */; }; + 3474B30C8723FEBC3736A59B7AB046FC /* toSortedArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F764035CA9E883524E86CEB7BF6FF7 /* toSortedArray.swift */; }; + 349CA4516F8DCBE57054EF6E8F15D4C8 /* mapTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 976B64416E3016008D42A1E155509FD3 /* mapTo.swift */; }; + 34AC7EE85AECAF484EC811C138A82E6F /* CompatibleAnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E811FDD3EDFA0440713C2597DF1941A /* CompatibleAnimationKeypath.swift */; }; + 34C1E55916E3C238EC24EE3CDDC0025E /* SingleValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 839BCE2FB3C9925AE8EBE4D4E23D267B /* SingleValueProvider.swift */; }; + 34E1EFAD3DDA7672F89B228CB8067F85 /* DeniedAuthorizationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEB247929A37EFE26C6A805DEA433B91 /* DeniedAuthorizationView.swift */; }; + 34E4F069384DB75E1AA09E52C0A61D7B /* SGScanCodeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BE02DA192D2F9168548C9F3E648036 /* SGScanCodeDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 34EE43FA8D0849C39D6B7A68A7EEDB02 /* ToJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = E36C51FA8863274AB0025855E64ACC3D /* ToJSON.swift */; }; + 3513BC85F4699997C3DBB8A077D5DB12 /* Popover-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 12043476FB1F109D8DD030BF0DAF525F /* Popover-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3540E178FA1028BA33C5308A5E70B24A /* OIMMessageElem.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A885057A11B51887D16E84D82AF7A6 /* OIMMessageElem.m */; }; + 35585F0F14FF02CC22B4724742344C98 /* Core+Bundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC85375D7D20F08BF74644A806E2502A /* Core+Bundle.swift */; }; + 355A2A3962A82AE25D219DB774CB6AEE /* UIView+ResignObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16B62285E67238FCDFC2EE5E85A20C18 /* UIView+ResignObjc.swift */; }; + 356B49A0C32559CCEE631C44CB2B0B40 /* AnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06400FEC0E7815877B9FFAD947B38F12 /* AnimationLayer.swift */; }; + 356F7D6C5EB3383BE2B8ECBC58810926 /* Core+UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E4D9D32F645C0F77FE2B2594942BD5A /* Core+UIColor.swift */; }; + 3577F172FA68CBAE47CFEE6FE25C5404 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A3AB5C61F217707706D0EE32CFEA319 /* ConstraintOffsetTarget.swift */; }; + 35A44C895BD9F20049CEA78E270DF27E /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 846E1E84BB431FCF9858146EC42AB802 /* Sink.swift */; }; + 35D4EE5441CE7FFC75C0138C0E6B5E81 /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28B010A2146BDC61697A76663AF9803C /* IQTitleBarButtonItem.swift */; }; + 35E16B7BA80A25B2B4063CC2362EB8B6 /* RxTabBarControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C258350AE25DA6A17D93C6E9D2CF991C /* RxTabBarControllerDelegateProxy.swift */; }; + 3610091956D90D4861D5E206BCF37FA2 /* DDAbstractDatabaseLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = F38473A0318DD5468977B8B5695A90DD /* DDAbstractDatabaseLogger.m */; }; + 3642914BB58CFD81FBBF88BDA48A0170 /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = C70EC81EB5E7986D89207A07B93295B9 /* HistoricalScheduler.swift */; }; + 366784118C275CC1C4321EA25C25E756 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = E62BB35812EB4C99463DE18C1B9EB0BD /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 3667945C95696169C2F3E7EE37188664 /* PreCompLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 840A962BED1D9BADAEDE3E7E183A317D /* PreCompLayerModel.swift */; }; + 3676A648CEE267ABE6886CF97B0327D5 /* AnyEquatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9945C30FA08BD9EC319748ED2D43517F /* AnyEquatable.swift */; }; + 36771549218157A81F13322EF18824E1 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA70B6D54C3434DE9C65E169C333587 /* format_constants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3683E0632283EDB6B8B0F3E2506704E4 /* YBIBToastView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDB059CE88379E4FEA3A790FFBAB04A8 /* YBIBToastView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 369320288CC80D26C93803B808FCB61C /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DF8F1CDC802D0250733D25924A17835 /* SDImageTransformer.m */; }; + 369DF6199E86E719191E7B2D4F040B9F /* CALayer+addAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C419E6E04DBFE2E3EFEB4AD94165FA9 /* CALayer+addAnimation.swift */; }; + 36CDE98915D684098B3B7013BAA91590 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = DA3E6508700E6F2FE2BF9BEBCE2BE979 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 36EDE8F37831FDB474E621284702ED94 /* MoyaProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E3F8640A2B68814B6E3049FE1466EB3 /* MoyaProvider.swift */; }; + 36EE04E8AA35610C63F5EF4B37C78E82 /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3841269555E945A5F05B6B656275018E /* Amb.swift */; }; + 37204DA94E4713CB9F6C97D3C684BEB3 /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59E77574A6D6A8484D6E798D4473D69B /* DisposeBase.swift */; }; + 37208D2FEBA0C1A0A2CFF4918326F4F9 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 0592B4FDA541D739DA37618ECD3F548A /* SDImageAPNGCoder.m */; }; + 373DE1A8B1676910BADF13B1A9CFE712 /* UINavigationController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D68DD308DBBCA95916FA607C00564308 /* UINavigationController+Rx.swift */; }; + 377C075A77ADE633702916D401435B7C /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = A11B776E936D8D46C6A528A1CE11FAC3 /* Utils.swift */; }; + 377DED16F7843193371F3FAAC29D5346 /* IQKeyboardToolbarConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 865A4BFB2CB8DB37C3E1407B2C8BB4AC /* IQKeyboardToolbarConstants.swift */; }; + 378BD5280F6C07B11CF30B253D824972 /* IQKeyboardExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3F1699EBCB271D06621D975F6663A0E /* IQKeyboardExtended.swift */; }; + 37B890ABDC7DD441E6AA662325D412E6 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA38E1760C227E8492F6B7419EBD670 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 37D637B577E1AEE9A86932C97CE11F7E /* YBIBAnimatedTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = D50376BA225C0801D90EFEB172B1D6C4 /* YBIBAnimatedTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3812BEA7F8A1D931C4C8BA0B782A92A8 /* IQKeyboardToolbar-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F3484843917C882FECBCCF7474F59F /* IQKeyboardToolbar-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3834F6B013F16886BE2866A29E65F22C /* YBIBSentinel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FCAFE810B996502DE8E815BB6C1AC95 /* YBIBSentinel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 388BB4079F7D18CB3D7AF0848BC98F08 /* UIView+SDExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = AD1D86B254CE47711A06BBB8609D5C1C /* UIView+SDExtension.m */; }; + 388E9AB445D19AAC2B88CA28406EE7A3 /* LRUAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = F71C401A793A925B16B2794B641577F0 /* LRUAnimationCache.swift */; }; + 38C96772D989E3D1023A2D4FE66545FF /* CustomDateFormatTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B8DD93F892EB3A76FC4B0CC65600DED /* CustomDateFormatTransform.swift */; }; + 3956E7FC11B63EB5599333059EF1FBB5 /* DDLoggerNames.m in Sources */ = {isa = PBXBuildFile; fileRef = DF0D59AB65BAC48A5EE451E2781AF508 /* DDLoggerNames.m */; }; + 397FC8643361169A2EAD49BE467DCC4D /* EditorChartletView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34C7C1820ED663FD4EDC639404C09D55 /* EditorChartletView.swift */; }; + 39ADCCB0719C1404E44818F79F665F4F /* NSObject+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BB5E60ABB3231746217C7BE67D898E0 /* NSObject+Rx.swift */; }; + 39B33D7873CD89C6A7E96ACD36A1EDFB /* UIScrollView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 139EF672FB2BD571A5A740D822E68D86 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */; }; + 39B43DD4DA5782166B4E6273C183E55A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 11BA9E364F4512BB8B20BE4DE4BD9140 /* PrivacyInfo.xcprivacy */; }; + 39D449220194AE1CD884069FBF6F735D /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EFC0DEF7F6680D04A5987FBBF719161 /* URLSessionConfiguration+Alamofire.swift */; }; + 3A0FCD7E6EE386F0B20221A7079577D6 /* EditorStickerTrashView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4BC4E9795B94391814F9D9D11446D5A /* EditorStickerTrashView.swift */; }; + 3A13E0541707F58A17D927824A9A8B32 /* AnyValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF151D352C3F940ACCE3650BDFC0D4D4 /* AnyValueProvider.swift */; }; + 3A2FCB914F6EADED828FF05F7E9132AE /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5A142B20B08F85DF4E255309581669 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3A3F68777F9F40041E582D489B12AA57 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D7AF3B74828F8C2BAC6CC02A1E9A83 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3A4AF8E172B30D070ABA2D212B67355A /* IdentifiableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48D3D3955FABE41F8DDF194B898A86F8 /* IdentifiableType.swift */; }; + 3A4B897B65DE3FAAAC2C0AF9FBCE87E7 /* DateInRegion+Components.swift in Sources */ = {isa = PBXBuildFile; fileRef = B773BB9FAC093187BA138848D154492E /* DateInRegion+Components.swift */; }; + 3A5CFD6DFC22343E29E2ABECFC1C3701 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0ED077EB75CE413B9DB3BDD2E67A5D33 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 3A64F2D6B35DA2E5DF97F1C53B2FF446 /* TextLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C214635901487ED70CD287E8BC4AEC74 /* TextLayerModel.swift */; }; + 3A6B20BEE4F7A5B5835DE5D1E509754E /* IQActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5C3483F4E8C5E0015004EAF99566DAE /* IQActiveConfiguration.swift */; }; + 3A8BFBBB8C6B72DD0C33BF3589621D91 /* PrecompAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 213FF271A8C1EF4AFA83B16C94A7CD5E /* PrecompAsset.swift */; }; + 3A8E2E05E1836E45FFE3021DE5AEDF40 /* UIStepper+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83A7C22E3795619790A213E6D8DC23DB /* UIStepper+Rx.swift */; }; + 3A90C72B0F8F9939213C668E668754DB /* UIPickerView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6448C33FD616D663955373268AD9800D /* UIPickerView+Rx.swift */; }; + 3A9DD9A71347A70E56007D5104BA32BB /* PhotoListCameraCellConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3F1B8BD2825588EB74675386BF2CB44 /* PhotoListCameraCellConfiguration.swift */; }; + 3AAF427F8890A73EF93A1B309201AF4F /* VideoEditorCropViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B97AE06C4122280D4E7697B526A08475 /* VideoEditorCropViewCell.swift */; }; + 3AB4C6AB558F8622F11B8D3F24909492 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A70A14941070D7C9E513ECE7ECCF02 /* UIImageView+WebCache.m */; }; + 3ABD92A85AD10EF57D39FF5A6D2764B4 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = DF8B4E43D6A80D3F3D3212D2C78AB121 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 3AF22D14F94A221F4364191126E08D30 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = E0018F3662070E563761A8EF917D19F4 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3AF586464F2E155F19FA21CD13CE86E9 /* KeypathSearchable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6972343F664C52CB3BBB9F28D004156A /* KeypathSearchable.swift */; }; 3B0FF40DF892BD293CB1F38A527279F4 /* CocoaLumberjack-CocoaLumberjackPrivacy in Resources */ = {isa = PBXBuildFile; fileRef = 519AF98C92B517DD023896CD077EBFD4 /* CocoaLumberjack-CocoaLumberjackPrivacy */; }; - 3B16CD40D6856ECADAE282BFED982595 /* PickerBottomViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62AA96A19742574F4A188E5B86334BA6 /* PickerBottomViewConfiguration.swift */; }; - 3B45281BBD9C7D268CE36BC6684CE690 /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DB2942177243632BB63FE27659B24D9 /* Disposables.swift */; }; - 3BA7EA7CD07F07FFA5792AF93A98B981 /* EpoxyModelStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22C59EA8496E114A956C1B762EB73B8A /* EpoxyModelStorage.swift */; }; - 3BA911ABFACEB592815A720C60B48C53 /* PhotoAsset+URL.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5F3B932CFBC76ABF24A9176D190C4B5 /* PhotoAsset+URL.swift */; }; - 3BCAE7843A2516EBA64768CC0CD79988 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45DECE1C164F713D09FCC8D39EE8815F /* ParameterEncoder.swift */; }; - 3BE0AF07013E897E60C05588D232AD74 /* Formatter+Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65EEC6191682ABA20B8A0411040B8329 /* Formatter+Protocols.swift */; }; - 3BFCE80D67EC884DB79E823496585DE6 /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E3D74F7DD766B0FCCC2830BEE031A12 /* Cancelable.swift */; }; - 3C0A41819F84BC2C7B8BB720B11299F7 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F878A7EA007A0B25D711F68CEC2F467 /* NSButton+WebCache.m */; }; - 3C1D4FB9E504C5E37213A06D1A0E8554 /* UICollectionView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4C25CF77476705A8727ED57006FDCA2 /* UICollectionView+Rx.swift */; }; - 3C2058840E42D08B30D081187228E79B /* Date+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 393D78DFF9D51838A2054D5FB8A454BE /* Date+Create.swift */; }; - 3C8DAC2429DAACE7EF441415C7C7B717 /* VideoEditorMusic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 173B97065E201D29718EA0986BBECA8C /* VideoEditorMusic.swift */; }; - 3CA7EFA98EF3857A8C31A29776E6C55F /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = BBCDF59E6D69248934B4BC8F30930BBC /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3CA948576898BEE941D30116D80D9395 /* MaskCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FCBBFB94C92AAF65512098808136293 /* MaskCompositionLayer.swift */; }; - 3CBACCA82BA8E1759650E3B16B528644 /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 580691100EB70A5ACF290F17FF4D84F6 /* PrimitiveSequence.swift */; }; - 3CCE07EC3D0DC9B618367ACA004958BC /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 63D7A5446C347A4B7702583B88BBD745 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3CE8DC253F3048595F30A3C64FA9543A /* Picker+PhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2CF79AC36312C82B7879494F47F301 /* Picker+PhotoManager.swift */; }; - 3CEE544E244F623CEA38EF75183BC93A /* NodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 846B243885678469AE5CDB8168133AEA /* NodeProperty.swift */; }; - 3CEE5E31CF080561F8A0089BBEABB799 /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DA7C83A39038CA118B3CB12DA8280B4 /* PublishSubject.swift */; }; - 3CF9247B7112973208E98C5B8A3EFD08 /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB58640348852BF733D2F0BD5379DDE5 /* ImageDrawing.swift */; }; - 3D1DA6956A2BB1FAD53891B484575978 /* PathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 896165C77437B3E3CA729B4CF267209E /* PathNode.swift */; }; - 3D250F9BEE59C2068C1A82261A3F5BFD /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D21B5AC77BB1F5C1839961C7C149A4F /* SDImageCodersManager.m */; }; - 3D3B646B4988314275B40E97BEB16C7F /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5ED33FEB3529F8C9B342C7C2A097E8A8 /* ConstraintLayoutGuideDSL.swift */; }; - 3D47BB7B12540180D7548830017B873D /* SharedSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 006D228E2E6F8BAA07DB7CE17AB8A953 /* SharedSequence+Concurrency.swift */; }; - 3D9E99F17F687A6BBAF6BCBC33C74213 /* YBImageBrowserDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A2CE242AF1F10BE3EF9A73779447424E /* YBImageBrowserDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3DD607D8EE7367C54BF5D9252D1F7AAE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 3E283486A950267772D597343238DC75 /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC0B5B97AEDE09AD78D399CF70F6468F /* IQKeyboardToolbarPlaceholderConfiguration.swift */; }; - 3E3DE0C3F11D105F010D3903964B8DC0 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D00CD7B0453036235F53A50214D4ED2D /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3E715D5BADDEACEEF30D6A4CA82CDA9B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 3E9B7829091DB08299A28473E42AAC60 /* YBIBImageLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2324FAB2BCAFFED67E845E6DD9A96D61 /* YBIBImageLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3E9CB435642EBD721648B430DD0E5A51 /* UnitBezier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01E5DBFAF8111481E00D7B8906879F31 /* UnitBezier.swift */; }; - 3EC7C17C01B39C6915B3939EDACEA8F8 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D872B09828CDE9FED532089388FD1706 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3EE9B9682282E58E0A840A84AB68748A /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40FD25DC1921B871C7F788075D01E4BD /* RxSwift-dummy.m */; }; - 3EF94128EE7E7397C5967A23C565ABD6 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EA628EB8F76497538FA2290CB38448E /* UIImageView+HighlightedWebCache.m */; }; - 3F418D0580A3DCBB2387B300F3E441C0 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D68AE9C63479784FDA72DE0494BF25A9 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3F57DD6E2D66DC1CF834CB76F7FAB980 /* EditorStickerItemView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6FF27B4385AF3373CEC3201BDC261F2 /* EditorStickerItemView.swift */; }; - 3F749E95FFA3640649B8252D9B2CFC10 /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CA4413BD540BFE68830E04D0B5F80B6 /* KFImageProtocol.swift */; }; - 3FBA98216749EFB55B3D7FFEFE2681B2 /* OIMReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 6777B5B9C83F2B2289CF20ACC0542106 /* OIMReachability.m */; }; - 3FCA734C50CA0AE6B74173F07437A885 /* Changeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 825A9E0CAE8058BD30562436EABB04A3 /* Changeset.swift */; }; - 400A9256A6CFE77C0378869D44825DAD /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = B790DFF0E902BF9AE4692A51D0DFC77D /* Single.swift */; }; - 40190BB6FD6FA51901C19C1BF4DBD5A6 /* UIViewControllerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40FD0E6009B44B34D4CA91F002AD958 /* UIViewControllerType.swift */; }; - 402FA8B04D2CEFBD67DDDD7768AC4EB1 /* PublishRelay+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F6DF23FC61D59800559E8381531BC1 /* PublishRelay+Signal.swift */; }; - 407FEEB6A5DA7B4EF077DAE20DE114A9 /* PhotoPickerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3272B858A42201B36637AFF8EAF9B45 /* PhotoPickerController.swift */; }; - 409D987DB67CFB48AA6311402BE0D30D /* IntegerType+IdentifiableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52A9B8EECAC572CE3407A8026D6DA569 /* IntegerType+IdentifiableType.swift */; }; - 40AC034D9E5CD7A5BA0BFB394D59D47E /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 680A5B1FAD29D5052E4E207406B38187 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 40BB4A23AD4A18E81678F58EAA90EB85 /* UIScrollView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB1D91FC1AD6D99D86E78F301E3C0948 /* UIScrollView+IQKeyboardManagerExtension.swift */; }; - 40C349CDD3EC5451B78A19F15951D94B /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = E66DA86ED33D4956EA0F327875149B12 /* Lock.swift */; }; - 414940B9A0191884E8BBCA71D0E738B0 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EE3A5EAF25A1133FE1366F3E35BD6F /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4168F11F01FBC79CAC2E7452E0E90BBC /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CC8BB6787C7BA9EA081B229A0B0AB07 /* Bag.swift */; }; - 4179AB2B4A01BF417368F2BBADAAB744 /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1690BEAF90622CE6B9A176205DB662 /* VirtualTimeConverterType.swift */; }; - 417F20E4B575F95AA4B991D2149C898E /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 774303A6EF1A2EAA26EEB43E1E3F8342 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4184983EA0EC59DB2518B936E2CA3C10 /* ObservableConvertibleType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 896804512E5A54D3F12A3A1AE837AD8B /* ObservableConvertibleType+SharedSequence.swift */; }; - 4196A92234E9891D925A38B979D302E2 /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE5ABD4016BF6AACDBB92D0B961EFB06 /* ScheduledDisposable.swift */; }; - 420ADE5F222F9DB15F15F59991EEFDC1 /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BC0A20DD2D47C97E991C418B88BE2C5 /* CacheSerializer.swift */; }; - 420C49E6734283B87E7D206694344112 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 4213F90CA64B4BCAD1CFFB1466A6C2B0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 426C1CEDF3D8317CBC0353913E92BA2E /* Archive+MemoryFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82431D0B15FED817380B6ECAC0135BCC /* Archive+MemoryFile.swift */; }; - 426DF2A1F33269F713D3949662213765 /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6C858EAA13A54CA0AA44CC1CE1B01A /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 4294EE557F13FE2EF5957288BDDFE9C9 /* EditorImageResizerControlView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E377318D40E300ABE825A4367FCBD80 /* EditorImageResizerControlView.swift */; }; - 42C5AE0870E511B811C9B4DDE6899B66 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = B379B52189FCFD6923CABBB988EE366F /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 42F5E58DA58FC66B2E6048976760F1B4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 3C0C914066C13DD1C227163AE269AE08 /* PrivacyInfo.xcprivacy */; }; - 42F6A891188100B2EAC2DD5FC0CCBB50 /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = 812C339FF35298294B26DF3F2FC34F31 /* Group.swift */; }; - 43192D92EC7DA0AEE6330B1931314D59 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E059300BBA1B1C6E282AABF76CB9A425 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 43585D0A88187F24335F2F72137C28A0 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - 43A27A7590AB8B341E0106298FF45CC6 /* KeychainWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF0025CF7C17D6A5F84D9489FE650FBA /* KeychainWrapper.swift */; }; - 43AC0C09E1209CBE32C28B827B21EB69 /* palette.c in Sources */ = {isa = PBXBuildFile; fileRef = B977BF3D227A0AC28B05CD102057BCC1 /* palette.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 43DE8C31D6AC6DF88E03EF5C2F9AB778 /* OIMSearchResultInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD5014CBC7EBE462FEFF1A0895E2A0D /* OIMSearchResultInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 442F3EF780ACE70BAF124C9E3E5E8E15 /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB7A47E1684EE076EE4D20C87EA82A15 /* ImageDataProcessor.swift */; }; - 442F468E261A1106C291BF52BDBF9DB7 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2727537199FB03475AF85FAF421215 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 44E12060DC6F91B02411D6A00858CA35 /* LayerDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 659C2CC0C7E0DE1574B6730492D6AD01 /* LayerDebugging.swift */; }; - 44FA91ABEA149BDDF9A6FC5AE94774F3 /* TagListView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B4B1CC87B374C42556BACEDB70E5FEFA /* TagListView-dummy.m */; }; - 4518B315DD773DC7EBA8BD3EDE4E2B44 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = D86878EE3183A9473ECB5A2110815050 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 452C940762F65B125C216F73B369F583 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AED09C9DE5A12779617977F55045734 /* MJRefreshStateTrailer.m */; }; - 4533898C4946124EA1F111F1835EC6BE /* OIMVideoElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B1969DDA8CB584F16A88D1B0AB032B1 /* OIMVideoElem.m */; }; - 453437AE32236787CCBCDB84336E4A93 /* YBIBVideoActionBar.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BCDBFBE4B6AE506F7500D541CCA4B8 /* YBIBVideoActionBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4552112D19F0C7551BF31425FC8D1EC7 /* ControlEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57ECE45D936904EF5023F94ACECA8520 /* ControlEvent.swift */; }; - 455F481C635ED958C685DD70C2E9AA86 /* Archive+Reading.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37835981F866845A76C1CFB6F3D10614 /* Archive+Reading.swift */; }; - 4571A0EA37DC84F39E3830D38A1531AB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - 457561605827D2143B4C09C6D6974542 /* BehaviorRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89C8E12857A90B1C389AB823B07BD56 /* BehaviorRelay.swift */; }; - 45A339515879815775B83A75319AB77B /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 639CF52A40302ABAD0394A3F45CD9342 /* SDImageAPNGCoder.m */; }; - 45AE3D9DCD60E97EFAACDC56F430C9A3 /* TimeInterval+Formatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52DBEA1CC4EF7DC089E199B3B942A583 /* TimeInterval+Formatter.swift */; }; - 45E1583D7EF53489B82C4CA2AD1AD0CF /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD2F1627A06A8B9964D885414ACF5C5 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4610A18A58F46FF1F7500A6BF7741023 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1657AFEF441E5B1C0C549DEC563130 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 462FA8E8C7677BC1691013F1733E4DA1 /* NSDecimalNumberTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = A852BD96FBC53D4DB881E0209211A72C /* NSDecimalNumberTransform.swift */; }; - 4638347B66B53464CBB12F41BE228CAD /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FB1A866C2F8021DBDD12F2DE5D772DF4 /* PrivacyInfo.xcprivacy */; }; - 466F34329180AB2DF5EFF9BCB5B918FE /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B06A8830BD9CA33C77A2D4E10375DDC /* Errors.swift */; }; - 46C56C35747EB93ED186EB0A4614BB71 /* PhotoAsset+Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F65A5161CB9361350076FDB1F6C69D5 /* PhotoAsset+Request.swift */; }; - 46DD69BCF3B370BF6BBBBCF400D9DD3F /* AnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29501204E1391BC59AB7AF310834F053 /* AnimatorNode.swift */; }; - 4708505041F162DB894B876B79857794 /* Editor+PhotoTools.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29D2B882480874F42D53FD7B196E67AC /* Editor+PhotoTools.swift */; }; - 4730296E49F16E17769686F7831AA0EB /* ofType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42C932923F54BF07D5682A760F4539BF /* ofType.swift */; }; - 47443F09C6EBFFF6143EA8B4967F865F /* UIViewController+TopMostViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F89D901F96E665E5495CE0A5C598E200 /* UIViewController+TopMostViewController.swift */; }; - 475B4F3E71C293065AAFDB1888696CF6 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5B534FF1A78D5C2AC189C51939C944 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 478BCD3392E5988621AE61164403A89F /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7396B87B6C023F0EC483AD518CC57D /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 478D40A254B29DC1408D37D3D6051DF7 /* SwiftKeychainWrapper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AC83235E9EDBD10A36F3E1F871D63BF3 /* SwiftKeychainWrapper-dummy.m */; }; - 47C9A000C20E04EC69BFEEF3C6AC6256 /* IQKeyboardAppearanceManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = A23D984530015E18E2F4B38BB459C1FD /* IQKeyboardAppearanceManager+Internal.swift */; }; - 47FBA86C15EC8060331926C9A8D54BB1 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 76F3D82220A6BE6531EBF65472D2F31B /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 47FBCA188545B898AB5EEC31E3E5E680 /* YBIBIconManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BF71EAF82417B414C95B361533EE14D /* YBIBIconManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4830383EDD889CDDDC68FFC53004F690 /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9211F2F8ED853FD416D5AE344C4B2BA /* Throttle.swift */; }; - 48613A776228D14C2933B89CBE229570 /* EditorToolViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 483A34A8F177C29CC7FBA298C2881921 /* EditorToolViewCell.swift */; }; - 486CDF230E2A556983838450D0EC5C75 /* KeyframeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9DE577BCD3B1980C66068F5BBF9C1DA /* KeyframeExtensions.swift */; }; - 48D3C099349231D4D0122D8E51468A19 /* Date+Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12A7038866A941BC4F3263821D30DE6D /* Date+Math.swift */; }; - 48EF9CCCC09C2E3B18C2F501CEBD51CE /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73BD189B4E00DFEAEDCFD2ED648BD5A6 /* ObserverType.swift */; }; - 490664A35E3AA79D57C33414E1B19E66 /* DDOSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A63CABC0DE1372702B329D3C31A8F207 /* DDOSLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 49197254BF19DFC61F1B0B0D870092F2 /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91FDF1CAA6188BB76D061C1A1A292B80 /* VirtualTimeScheduler.swift */; }; - 492E53D98F2FB5F2EEF734D1D672BC08 /* TimePeriodProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B02944BAFEBFE6942DBA3EA87B8E5AF /* TimePeriodProtocol.swift */; }; - 4938511D8412EFA06AFCB9D8DD0F4F77 /* YBIBCollectionViewLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9B98311325CDF25036C3281CDBCA4D /* YBIBCollectionViewLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 49445CE967F63922E2048455DCE72758 /* YBIBInteractionProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = B2AFEC94AC3BE895818CC20EF1694D57 /* YBIBInteractionProfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 495788561F6ADE88310B49BDB3A049C8 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 36203684131055DB499F60D39CE2F9CA /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 4990936139BF46A3888CBF58360A7251 /* UIView+SDExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = EA293B714E3EFFF2B4E110D6741A5097 /* UIView+SDExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4A1C800E8FC186756C783A3AF0CC2144 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AA79DD3CDCB73818B02AC1D089A6D543 /* SDWebImageDownloaderOperation.m */; }; - 4A240539859DE81874149E2DAB8852EF /* YBIBUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D7A6B09B1EB0F21A79A335F239769653 /* YBIBUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4A48CC2202F5719ADA9F539879538771 /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1C36DF3BE0882BE0A7E5CD447CBEF2B /* Zip+arity.swift */; }; - 4A8E5376A0FA9D3DBD7F1E452F1BE38B /* EditorStickerTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27CFFE88BED57C1FE5BBB3011F19DBF3 /* EditorStickerTextView.swift */; }; - 4A968EBD70F69793C28AD47645AA124F /* DropShadowNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6746F5634973F191E0B1F6461DB1945D /* DropShadowNode.swift */; }; - 4AB3FD4438152538ED29BFA7B341B02F /* DateFormatterTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 046756EDF821762DDB9FCB12B7D5EF28 /* DateFormatterTransform.swift */; }; - 4AC9B005EF04B376E1E8612AA94B0BD7 /* Picker+UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A687625895E5B7535DC57C8C7718D36 /* Picker+UIViewController.swift */; }; - 4AEB94C02388DC97E65AEAF58412F14B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E90211449D1194D31D1BE906BFB6FEBB /* PrivacyInfo.xcprivacy */; }; - 4B0B017D5B3951B641C1336A8515838F /* RxSwiftExt-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 62851F93EAD70B5DAEBEAE1D63184C5A /* RxSwiftExt-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B1290DE38BEE1418F52E914EB28389F /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D3E95B767FD6876A4F79F0E3E0A61F4 /* Merge.swift */; }; - 4B3687C8AB50D80335544D2338C54D74 /* Picker+PhotoTools.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50B45299DA66A11F777502AF15634A23 /* Picker+PhotoTools.swift */; }; - 4B7CDFB801A015F02E417F172C231CE9 /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EF97943C0E85B351106FE78D20CD5F9 /* Catch.swift */; }; - 4B802114AD90D83829297937C5939C91 /* SGScanView.m in Sources */ = {isa = PBXBuildFile; fileRef = 606D6DE0357D8862B257CC628D6256A6 /* SGScanView.m */; }; - 4B9FC9B0004EB197325C1A6D67C9FA28 /* GroupNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40F5AA4F27B5CB9A27F0ACE39DCE988 /* GroupNode.swift */; }; - 4BBC8BF43CF7B6DB8BECF2B367BB751E /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 583EBFC93BECC151571D0013BD13AE47 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4BFEF1EA0FD8911E9EF55A4484F7F1E6 /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1923C5F56BFC83403AE09CB6E7168D18 /* KF.swift */; }; - 4C10C2C40993364E838ABE82E0301880 /* ShapeCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2509D403C834A34D7305D4C90158B37 /* ShapeCompositionLayer.swift */; }; - 4C1D69C1BF682CA3960720F66538C07A /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E79F539A51EF5624368459D580FDA3 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4C59782D5A1EDFE15AB92763993FD942 /* YYSpriteSheetImage.m in Sources */ = {isa = PBXBuildFile; fileRef = BB7467BE133454D87B61A8895816C0A5 /* YYSpriteSheetImage.m */; }; - 4C76A7083CB882DBA6D7AB708AF8A300 /* SendMessageCallbackProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 155E20CA6BEFC121FE0CABBBC97155F2 /* SendMessageCallbackProxy.m */; }; - 4C8406FCC6BC4D4007C31B4805E414DD /* NavigatorDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DF16DAEEB6F7357BF3520DDEBB204C5 /* NavigatorDelegate.swift */; }; - 4CFE1C0BF7FD332B810E42D2DA299F5F /* RxScrollViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD460C65311A9B6AD426570D30A2EDE /* RxScrollViewDelegateProxy.swift */; }; - 4D08C586CB9B30E68361DECB0A708AE6 /* Archive+BackingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEBAAA80E335D6590A9D194325FBA00F /* Archive+BackingConfiguration.swift */; }; - 4D81FCC2BA602A7BD07F22F1584B8F26 /* AssetManager+AssetCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87C0F85799A80C00E166826442DB6D27 /* AssetManager+AssetCollection.swift */; }; - 4D9E593DECA015D410984C771CCFDD12 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57F2F6105FAEB977A72B69CDA9E35CEF /* Alamofire-dummy.m */; }; - 4DA27FD55659157AB453E2F3CA143AE1 /* SDCallbackQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D42BD13DE088E55D9440C64037EC2796 /* SDCallbackQueue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DA8C358A666CA3352780CBB1D351A48 /* UISearchBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2596C6DAC2A8B615E67D865765BA5EB /* UISearchBar+Rx.swift */; }; - 4DCA75BFE1558CE59DFC56607E49B3D2 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A5CF121F3B617D5C4A09D9BDD4D5011 /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DEB12CB0D7D8F6AAA5C645E6C6C3284 /* AssetManager+Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FA7A535E34304FEB795FCB634375C02 /* AssetManager+Asset.swift */; }; - 4E19785ECA3BF1CD264269D5DACD9B87 /* SelectBoxConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8806095ACB64222B262665284764BEA /* SelectBoxConfiguration.swift */; }; - 4E501359489F2069549B20BD94BFA61C /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2156C5852C3ECAFFA155D714B6C5139 /* Do.swift */; }; - 4EC2962339DCDEAA3554795F8737A175 /* YBIBToolViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D1B3B65DA5FD5A5576321B0DF0050B4 /* YBIBToolViewHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4EE26FA7C7FB130C57FF22FF1CAC2B3F /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C32AEB37F418F32DD29DCF4F8431825 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F1D9DCC6E91445694774FF0849A4B83 /* CGImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F6640032ED9681A09BA524C5F3EECC6 /* CGImage+WebP.m */; }; - 4F4DEB687C0E4834A5B291DEE0651D6A /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79E707A863CA7859212FEFF8209B2C51 /* ConstraintMaker.swift */; }; - 4FA185AE9B8476AA7B79DA5AAC419A91 /* IQKeyboardToolbarManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B00B2714CE63029E316A682E308DACC9 /* IQKeyboardToolbarManager-dummy.m */; }; - 5063AA402AA20EC46563AE952E480024 /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C68D1AD25BE9E3B11FE53E50D39163 /* Infallible+Create.swift */; }; - 506DE859713E4FBF1246DE0F500600B8 /* SGScanCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E9603A4E8FF5FF21DE3C230D19267661 /* SGScanCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5089D80A7EF3416F2F3A4D432EE50F5C /* SGPermissionPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = EE3AF8CF71094C3214003559DB10B3CD /* SGPermissionPhoto.m */; }; - 5090C42BBD3A044AB5D419967216CB37 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58B9B2BED448FF6B8E278E87D6D430A3 /* QuartzCore.framework */; }; - 5093A747D64057EDB11E7C389C904A9C /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 223F157AF2FE64BA22ABDDB993DFB6C2 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 50AAB77967D0145B1492E8F868E0FDD8 /* PhotoManager+Audio.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F8918760B6BA08970F8004ED7AA6FE4 /* PhotoManager+Audio.swift */; }; - 50ED87303DE9E2682DEED02D299237D1 /* DiffableSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C6A602E36472CC2DC2327225B04D330 /* DiffableSection.swift */; }; - 511743EA21722DCB02BC11F82698A057 /* IQKeyboardToolbarConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C218ADBB9ED9BCB5794960F550704D52 /* IQKeyboardToolbarConfiguration.swift */; }; - 512B9661FC34235E0EEB3A6D3E319B88 /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E106F539EFD985E901DB6221706FA68 /* MJPropertyType.m */; }; - 513171B8A7FF210CDAAD8F89082D354A /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A18CEDAEF818C6AB48438A2230736E32 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 515402907776670802E14BA4FFCBEB03 /* pausable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64219E8625D4757F4535A81DE9CC4D2F /* pausable.swift */; }; - 516198259FBF27998319EA25BE34D523 /* SwiftDate-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA189D9B360430E513572847E80BFA3 /* SwiftDate-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5163FC6D715F6881B1FA1AB13DCEF870 /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E55D0F439ED92B9740583CD3291EC1 /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5174DD2019966DFDC21B8864453ED3DE /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = BD30A03CDBD30EA947D04F11E53B9CCE /* NSObject+MJClass.m */; }; - 517A42EBA8C2D887F183A5BA5088B836 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = E79CAC9375ACAB81CC6DF05A6F6DC26F /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 51DDED280D55FB32EF2455BE8E5EE305 /* EditorToolViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AA2BDF2A6AEC64BE57DDA9A5A18B11A /* EditorToolViewConfiguration.swift */; }; - 51F3B35343757429879D929BB8FAB835 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CBDB659ECA60E466DDE07E7F3188D9B /* MBProgressHUD-dummy.m */; }; - 5210FBCE7B8D9C113F92A7EB93DC0D81 /* DDFileLogger+Buffering.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CCC9D719AB7E41B97FDF91B409B1579 /* DDFileLogger+Buffering.m */; }; - 523235228A1C021C67F2E3776A922DC5 /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE98E60968603D5FA63AA72697BD268 /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 523705FBA900D0965981AD85D57B2858 /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8735CA7CBEA3EC29C13590FB46722BD3 /* IQKeyboardReturnManager+UITextFieldDelegate.swift */; }; - 526EBB21113F77377DFBFF6F0D2A9FF7 /* AssetManager+LivePhotoURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18BD4A98815CF19CEF256B8951CB1B21 /* AssetManager+LivePhotoURL.swift */; }; - 52A4B575AED29E5155ECAE9032603201 /* ItemEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = 709352A78011CC2D4BE14AD43BFD8505 /* ItemEvents.swift */; }; - 52D757C94A7C2AACD80AB049F9881EFD /* YBIBImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99A0AB85281536E0E545FFA662C432F5 /* YBIBImageScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 52EC86E627940D5740209212FFEB6958 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D22A34E6D8A78B03A3878CC8F4A141A /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 531A5B89526140600E81AC06D7609722 /* Popover.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB8BDEA4C7A77BAA0355626608295FB3 /* Popover.swift */; }; - 53264B91AA947BD2BA1C03735C5A284B /* Repeater.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D327EFE94ECB1A3205002302180EBC /* Repeater.swift */; }; - 533BF0B3BDC7553A874AA44DBC6FAFDF /* _RXObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB2D04A41EC4109E190F3E4A1309236 /* _RXObjCRuntime.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5357356A8E071A949B0A89105C330C2E /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BB4A806B019AC1CFA3C776444FE07E /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5392CECD3707F194D077669DE55EA90A /* URLConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4119C293858086ECD9A8866275C5A9 /* URLConvertible.swift */; }; - 53B548F8E57FD5BE02ED598FCA44BC30 /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F630C8FCE62218432F68271134AD87F /* SerialDispatchQueueScheduler.swift */; }; - 53CA868E64451978727670396A9477B5 /* _RXDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 88004E06395845BEC822BA9C445BA387 /* _RXDelegateProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 53EEAC6A987681E9E9C6C7B91E34B24C /* RxTableViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = E717BD781EB091185A79C355C520A67A /* RxTableViewDataSourceType.swift */; }; - 54155DF312ABEA7136335F47C81CE938 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = AB13A26BC6750B3E62BC905FFE398E3C /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5423A68BE194FF4F88E1F3F8060741D1 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = A7CAC3DB04F7ADB64B8499A90B77C74B /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5429EFE2AEFCBAE8C5D9FE99E813B322 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = EA50E8FECBEF17BCC8D53B8CD0D61CA1 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A157EFE2592F0C6D70550B88578C81 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DA66C9C915DAFC02D59574A19D34C580 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 54A45AF20BFF99BA20B15AF09AC4901C /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06030FFD43B3B128FC6ABE677BA4FE54 /* Notifications.swift */; }; - 54D0A443ADA6D6F309E7D326BE652DD2 /* OIMReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 63E347ABA937E1A86307E97B31D7E50C /* OIMReachability.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 54E268C32915CF908E7AA776909B45EB /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F2C96DF432D64FEF247DDD154D10AB /* MJRefreshConst.m */; }; - 54FCB2A0877468FCA03245D4FBB0F9D2 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0611803A1D39F6DB0A37D8FC405B3AA /* ImageCache.swift */; }; - 5547D47E48CD0F4AE65CB8DEFF8E0D53 /* sharpyuv_csp.h in Headers */ = {isa = PBXBuildFile; fileRef = 092167ED1CC47E4B4914B165AB241CA3 /* sharpyuv_csp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55A04B833FD170F94BE342310B41FB40 /* TimePeriodCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = A468180CC8FED21C9CBCF714A602BA70 /* TimePeriodCollection.swift */; }; - 55A43F0D93A06F06A446F0053DCD085A /* Pods-QuickLocation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B3FEC1DFBF7036B761FB944F2B9F817 /* Pods-QuickLocation-dummy.m */; }; - 55C33792F8CE9E783B8014A61F953AB7 /* DateInRegion+Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E28567FB181BF2D15FA053910918A9B /* DateInRegion+Math.swift */; }; - 5609ED912D598CD5AD61F2FE109423EE /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 20042495A7F0AEBBC01B9CB26314CDD2 /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 561420A20DC0A84258A902E9EB69A15A /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A81FDDCFBF4399353832963143DC0B /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5648D7F0A01DCE02F38BA12B3389D4C0 /* TextCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF41EFA1EAF19A24E823D999541E1D14 /* TextCompositionLayer.swift */; }; - 564ADB7E97B721F59E933E1D05B1C305 /* TransformOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CFD834B07B9BC8B466E8ACB23CF66F7 /* TransformOf.swift */; }; - 5660010A63B9E5190FB3BA0723C83E79 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2CFE83EA77120219C5AB316D4F80D4D /* Platform.Linux.swift */; }; - 56691610F48CD177ED944F34C23C0A74 /* GradientFill.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A6039DC25796F9AE9A8B94A69984B37 /* GradientFill.swift */; }; - 566B1350CFC30E4D9B89E294C69C9EB3 /* YBIBContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = FAEA6E5F8BC0A7CAF9400093BB333FED /* YBIBContainerView.m */; }; - 5690E7733755EF537CD50961C703850B /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49053A2947EE78436A16A7AA161489FB /* PriorityQueue.swift */; }; - 569BA73DBB2EAFC4BFEC77AF6A0C3F89 /* TableViewSectionedDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 142413141212B735369078BF6388CA5A /* TableViewSectionedDataSource.swift */; }; - 56B50B3F8DD7B44500AA65DDA2C88F9F /* Keyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B611C17C06D5FF4CCB095774A495E9 /* Keyframe.swift */; }; - 56D8A7EAE4D72FF6C23421CAB6F21504 /* MJPropertyType.h in Headers */ = {isa = PBXBuildFile; fileRef = A453B6D8197404FC1374D7F63F8B640E /* MJPropertyType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 56E800EB3B2BE8AE0BA45A30974D7920 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 53E27EF908C7FB5EFEE14ADD95C69C96 /* Masonry-dummy.m */; }; - 5727477E667AEAF37FEB3B3CE3BFCEA8 /* SectionModelType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C08C88751394A41AA41DF435BE9B690 /* SectionModelType.swift */; }; - 572CD95503502CDF3ED788F0B24C252E /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB7003BBB2F9EF9DA4E095D91280CC0 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5746320BBB67E457AF4C4EE5A2D32799 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D36A4A7070EA83191C07AAA60853D10 /* Validation.swift */; }; - 576C5FD65E8E35A7EF189EBB20CE01C6 /* LivePhotoSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5E02CC1CDA6213ADD2D3A5455B1CAA1 /* LivePhotoSource.swift */; }; - 57AEF499097B5B2AF1D566F88E7DB206 /* _RXKVOObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = C3DC42E9BB7BC32F274FCDB40EC61371 /* _RXKVOObserver.m */; }; - 57C4F6EFB30DDD14E960AC2D6B34F904 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 673FBA63F9F3560B749DE95F0776152C /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 580D9F7D0E5B3A80462D5C7ECD81A7B7 /* KingfisherWebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC42ACAF533936A9C6D02A3B360662A /* KingfisherWebP.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 584B2BC80E7104E4C2028C5B4A084F2C /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A010C711309127F26077A97DB9D8DE1 /* CALayer+fillBounds.swift */; }; - 58627A8298D25CD81FCCDEDC8D7773E5 /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993FD35E999A7AB78E66C8B6CB9FDB35 /* IQTitleBarButtonItem.swift */; }; - 5883CC9CCF065AC993539027684B7491 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2E26E78C920199D48C95A6E28FC1791 /* Platform.Darwin.swift */; }; - 58B0006E1FCE48DFC522984B42C5DCF4 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EAE8C6CF498E05099DE24B18C3560DD /* RxMutableBox.swift */; }; - 58D1B8BFF33B272CF5655439B621F2B1 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F58995D9C873B51C91694DA3DF853E2 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 590F07818244814004FBBEAB1DD57CF4 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 659ABEE73565FB13D1D253ACC5C5F5EB /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5922A6A0AE7152CF436356B3556F1835 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 005D4C8AF425EF161CADC4688A651EFA /* ConstraintItem.swift */; }; - 593BE6C6A4228D571E38A13C997BEFF1 /* PhotoPanGestureRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4C4498E7B172BF948777253F5FFCC9A /* PhotoPanGestureRecognizer.swift */; }; - 594619F78BF7AD4FED3AE54E56B565E3 /* DefaultsKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64A97DF1ECAA601838BDE6A51B36E743 /* DefaultsKey.swift */; }; - 595FC1B83C3124AC916FE978EEB3BF90 /* OIMAttachedInfoElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 1583E5EDD96C5DC700A9A7CB042E5C7D /* OIMAttachedInfoElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 59926C66B6FD833E66F57DC8DD184AD3 /* SwiftyUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A5605DFB255E8E50316E27C2AC51298 /* SwiftyUserDefaults-dummy.m */; }; - 59A7B942A600A7BC1ED704F858270E2F /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = E003852F0C2ED5D3367CC3BCB111DE40 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 59E1BF0AB3F19C50E578D398E26EB227 /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA8392764223ED541726AFFDD11B807 /* KFAnimatedImage.swift */; }; - 59E8E48227EFAB47CF488B945CDB6A71 /* DropShadowStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB8EED23F953B16F768563FC931049B9 /* DropShadowStyle.swift */; }; - 59F34874DA4ABB2F5C4E09EA6865936B /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDABE3383A3C68EFCCE02018595AFFB3 /* ConstraintLayoutGuide.swift */; }; - 5A2FD3386684CE7797BB7FF6F3CCC061 /* KVORepresentable+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F8733BFF5C1688EA0DA6F27C8A71E52 /* KVORepresentable+Swift.swift */; }; - 5A59B9480008B1E5D4A86DB270FAB470 /* UploadFileCallbackProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13CFBAC771749F005DCDC9210BE8D854 /* UploadFileCallbackProxy.m */; }; - 5A7D0317917962BB4C8608318195009C /* PickerInteractiveTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = F565D5B158AF3BD7A2398E2AB52BB084 /* PickerInteractiveTransition.swift */; }; - 5ABDF47FC0D60B701B5A8E767DC1314F /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = A01BB5837F881970519254C3F1F0B175 /* EventMonitor.swift */; }; - 5AC012169819B4ACA66D680CBB2D4B24 /* LottieView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 801C736CBB37EF2A92BFFF9A8DFBDC70 /* LottieView.swift */; }; + 3B14F5D1436DC56A3F2D4A4ACBEA8197 /* IQKeyboardToolbarManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 858555FE5CD415E9FE0DE9EB2A7AFCFF /* IQKeyboardToolbarManager+Toolbar.swift */; }; + 3B16CD40D6856ECADAE282BFED982595 /* PickerBottomViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F51ECB02B19F5FE5864C701321C147C5 /* PickerBottomViewConfiguration.swift */; }; + 3BA7EA7CD07F07FFA5792AF93A98B981 /* EpoxyModelStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7772449672CBE48D3FFA0D9317D8AD48 /* EpoxyModelStorage.swift */; }; + 3BA911ABFACEB592815A720C60B48C53 /* PhotoAsset+URL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3399796C15028FAAB7F429D5AEE0D825 /* PhotoAsset+URL.swift */; }; + 3BCAE7843A2516EBA64768CC0CD79988 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F13144DC6F4AB1AB855A41E59B26EB68 /* ParameterEncoder.swift */; }; + 3BE0AF07013E897E60C05588D232AD74 /* Formatter+Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57893FB92C503783316937718B7D6CFE /* Formatter+Protocols.swift */; }; + 3C1D4FB9E504C5E37213A06D1A0E8554 /* UICollectionView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E95702201E937BD3B02E440468773440 /* UICollectionView+Rx.swift */; }; + 3C2058840E42D08B30D081187228E79B /* Date+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675B4C11F7B590880C77E8AAEF1F3A60 /* Date+Create.swift */; }; + 3C8DAC2429DAACE7EF441415C7C7B717 /* VideoEditorMusic.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCAFF5A5740D13881CB89FB2332CF4BC /* VideoEditorMusic.swift */; }; + 3CA8AA8FFEC560A25DFD5EBFCF187AFC /* IQTextView-IQTextView in Resources */ = {isa = PBXBuildFile; fileRef = 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */; }; + 3CA948576898BEE941D30116D80D9395 /* MaskCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 694EE45B9AE3A7575F8B867C9D6A78CC /* MaskCompositionLayer.swift */; }; + 3CE8DC253F3048595F30A3C64FA9543A /* Picker+PhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC9D6D0932358CB76A02655D6417A65C /* Picker+PhotoManager.swift */; }; + 3CEE544E244F623CEA38EF75183BC93A /* NodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4542B0278922709B2677B3742D449B8 /* NodeProperty.swift */; }; + 3CF9247B7112973208E98C5B8A3EFD08 /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 818F80EEBE82BB7416E478C26E7995D2 /* ImageDrawing.swift */; }; + 3D1DA6956A2BB1FAD53891B484575978 /* PathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5EC0B76BF335CF429B6B623B5DEF288 /* PathNode.swift */; }; + 3D3B646B4988314275B40E97BEB16C7F /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = D910123998FD43BE6AD2DDD3A3D45594 /* ConstraintLayoutGuideDSL.swift */; }; + 3D47BB7B12540180D7548830017B873D /* SharedSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CFB6F6DFDEB8E69C4A18B6691BBDD7F /* SharedSequence+Concurrency.swift */; }; + 3D752C60755FCF890E8579C4FAEBB6B5 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FFD9EB2C14D6F3DD35809C4C91193549 /* SDImageAssetManager.m */; }; + 3D80D0457EB3BF7D449CA995F30CF2CA /* CocoaMQTT5Message.swift in Sources */ = {isa = PBXBuildFile; fileRef = 500DC6BC616ED25251A50A86C36870BA /* CocoaMQTT5Message.swift */; }; + 3D9E99F17F687A6BBAF6BCBC33C74213 /* YBImageBrowserDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B34D8164E363688D35D07DC9EFA7ECDF /* YBImageBrowserDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3DD607D8EE7367C54BF5D9252D1F7AAE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 3E301C20B8B55E9D5F6300A134561BFF /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6ACF591CB08ABFD9EC45A948D394EBDD /* SerialDisposable.swift */; }; + 3E715D5BADDEACEEF30D6A4CA82CDA9B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 3E9B7829091DB08299A28473E42AAC60 /* YBIBImageLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FB4A7A72FEED4EEC521EBD466AF52F /* YBIBImageLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3E9CB435642EBD721648B430DD0E5A51 /* UnitBezier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55B16604977C9DD7CC41867CF659D286 /* UnitBezier.swift */; }; + 3EC79AF239C06987A9C62AA7FEC1B96F /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 783FC12BAED041F378F97768D2B28B8C /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3F0A66D0F2A42BDE21605CE2F9A8145A /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAB6D3BA9EB2705C68DEC158FFD134AF /* Debounce.swift */; }; + 3F2D23F9C43322FECE50FFDBAC5EBDA9 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A76EC7E372C59E5A53839B2D5EC932 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F57DD6E2D66DC1CF834CB76F7FAB980 /* EditorStickerItemView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06ED629B369D759C9255F2C1BD20473B /* EditorStickerItemView.swift */; }; + 3F749E95FFA3640649B8252D9B2CFC10 /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97404EDD54B128EB9F21CCA4CC58A92B /* KFImageProtocol.swift */; }; + 3FB47B714578990577C9B1CC85DC0D0C /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 692E73A19B4EEA1D680D9F67D5718114 /* Delay.swift */; }; + 3FBA98216749EFB55B3D7FFEFE2681B2 /* OIMReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 950AF206CB2131B94A4913E8D6D73802 /* OIMReachability.m */; }; + 3FCA734C50CA0AE6B74173F07437A885 /* Changeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53A748F8442ACE4E6959806D00DB0272 /* Changeset.swift */; }; + 40190BB6FD6FA51901C19C1BF4DBD5A6 /* UIViewControllerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7E0219D96D197D256967A214677AE6B /* UIViewControllerType.swift */; }; + 402FA8B04D2CEFBD67DDDD7768AC4EB1 /* PublishRelay+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D12B6120AA47A34F846154D94CAA3F4 /* PublishRelay+Signal.swift */; }; + 4063405C03CCB96E39645F8F991E75FA /* MqttDecodePublish.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DDAB40E3AA9DE5D5A63CF63ED9A2BEF /* MqttDecodePublish.swift */; }; + 407FEEB6A5DA7B4EF077DAE20DE114A9 /* PhotoPickerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63162572B5F40706944B6D4695746BA0 /* PhotoPickerController.swift */; }; + 409D987DB67CFB48AA6311402BE0D30D /* IntegerType+IdentifiableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11A04BE5CE43A7F729E96EA4E6256922 /* IntegerType+IdentifiableType.swift */; }; + 40B6C52B85E307B53FF06DF1ECD6D046 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7282B196E51A3F4664251AA4023D0C02 /* PrivacyInfo.xcprivacy */; }; + 40BB4A23AD4A18E81678F58EAA90EB85 /* UIScrollView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95CC0C8C9DF91B6EEC6755575144D1BE /* UIScrollView+IQKeyboardManagerExtension.swift */; }; + 40CA3D5F4E23459A974B7C886260F70D /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 78C694E50921AD52B782E980CAE66D3D /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 40CCAE7CC10932034F8BDBDB11A060B6 /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 908DC03A3D9216AB6FE7FE902C573A81 /* DistinctUntilChanged.swift */; }; + 413FB3DBEC191BD8FD034D6B619ABA78 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 520200F35D7AC74EBA71E00F2CBF4F38 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4168F11F01FBC79CAC2E7452E0E90BBC /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43406D3985E9918221FE0A4DE1B571DA /* Bag.swift */; }; + 4184983EA0EC59DB2518B936E2CA3C10 /* ObservableConvertibleType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F63AC006B2627EE41E02B5552FA3FDC /* ObservableConvertibleType+SharedSequence.swift */; }; + 419BEFA58C93F82128B3EC673B8B2808 /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1A66C060BA472F214129D41D55863B9 /* ObservableType+PrimitiveSequence.swift */; }; + 419E5FDF85188A7D1F31AF680884A125 /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A5C6F735186CBB62A6EBD6ECB76858C /* AnonymousDisposable.swift */; }; + 41EAB079E787B4FA6866FC48FC7D187B /* MqttDecodePubRec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110A4E7BE4EB9B92AD398EF75E3DF5AE /* MqttDecodePubRec.swift */; }; + 4203437AC6CEDF0C0455C95FCA7CEC31 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E60C88006022308DBE83289F5CB1A46 /* Security.framework */; }; + 420ADE5F222F9DB15F15F59991EEFDC1 /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 310A752EAADFC795CC0A69824946DC22 /* CacheSerializer.swift */; }; + 420C49E6734283B87E7D206694344112 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 4213B9A582A396D7E3E1EEEA57FE200A /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 632FFDAC6AD7D412F1BF8F1A913A0EF1 /* UIColor+SDHexString.m */; }; + 426C1CEDF3D8317CBC0353913E92BA2E /* Archive+MemoryFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9F0A16DB2718E87062DB18D1618AAAF /* Archive+MemoryFile.swift */; }; + 4294EE557F13FE2EF5957288BDDFE9C9 /* EditorImageResizerControlView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F7EED91CF0B4D7A89C11A806293769A /* EditorImageResizerControlView.swift */; }; + 42F6A891188100B2EAC2DD5FC0CCBB50 /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85C907F746C2788FC9A636D9BA502E2E /* Group.swift */; }; + 43A27A7590AB8B341E0106298FF45CC6 /* KeychainWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EB58ABC19057B8242704E3499769C82 /* KeychainWrapper.swift */; }; + 43A8337B50D483F93A22E1941C18671E /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = FD018790C71DECF6D9B77734AEDDC8E1 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 43D84EBCE8220F637D8BE1C473BF9188 /* FrameConnect.swift in Sources */ = {isa = PBXBuildFile; fileRef = B35298093BE07EC18C02E752D449371D /* FrameConnect.swift */; }; + 43DE8C31D6AC6DF88E03EF5C2F9AB778 /* OIMSearchResultInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F3E14299379EB091FFF0667442E61240 /* OIMSearchResultInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 442F3EF780ACE70BAF124C9E3E5E8E15 /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5B5E409A3CB6709D1C0EC5240773D49 /* ImageDataProcessor.swift */; }; + 442F468E261A1106C291BF52BDBF9DB7 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8174B2C2A98517B4AD3D5FEF87B40F58 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4431DB7D2739D4D1701F63BA42F1ECC5 /* FrameSubscribe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66C8F6BD5C4F963CFF317253AB78D288 /* FrameSubscribe.swift */; }; + 44E12060DC6F91B02411D6A00858CA35 /* LayerDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52DE37F1AAEEF218852464F11E143656 /* LayerDebugging.swift */; }; + 44FA91ABEA149BDDF9A6FC5AE94774F3 /* TagListView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C9D1DC3A8237ADFBC76223E5E1932BB /* TagListView-dummy.m */; }; + 4501636244237C850616353EBD1C8189 /* CocoaMQTTProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8623EF65FEC6BFD426123019DFB996B6 /* CocoaMQTTProperty.swift */; }; + 450C90D5EC2199F7C604D50B30FBFEF3 /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C91C661FD814F39CAB6325D8D4B7E37 /* Reduce.swift */; }; + 452C940762F65B125C216F73B369F583 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = D0A5F579E5060D3B3840AA15280205F8 /* MJRefreshStateTrailer.m */; }; + 4533898C4946124EA1F111F1835EC6BE /* OIMVideoElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AFE49130DC59D5BB417170BC6782E91 /* OIMVideoElem.m */; }; + 453437AE32236787CCBCDB84336E4A93 /* YBIBVideoActionBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ED4C28A20C58BA223BDDBF5861D744E /* YBIBVideoActionBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4552112D19F0C7551BF31425FC8D1EC7 /* ControlEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4CDE77BD401C132B20942F8B3CA92E7 /* ControlEvent.swift */; }; + 455F481C635ED958C685DD70C2E9AA86 /* Archive+Reading.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFDA5F5E6DE9CF3C0BF1AFC98DA6D9ED /* Archive+Reading.swift */; }; + 4569889593FF212F0BC397FE2ABC5312 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C044C8F399ACA5B2EE61EF53158B478D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4571A0EA37DC84F39E3830D38A1531AB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + 45AE3D9DCD60E97EFAACDC56F430C9A3 /* TimeInterval+Formatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C6F7913A879E3C937BA173A6E58EDBC /* TimeInterval+Formatter.swift */; }; + 45BA801435A315ACE712825F72606CAE /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB1C61EFA6F55C5182E8D76C343977AC /* WithLatestFrom.swift */; }; + 45C8C8F139BB9A4A0A45FC6C333FCCBD /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = A3BC31B6E58488D20D1E01F30A6E36A5 /* SDImageCacheDefine.m */; }; + 45E1583D7EF53489B82C4CA2AD1AD0CF /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = A781D796BB0C79520A672AE004474165 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 462FA8E8C7677BC1691013F1733E4DA1 /* NSDecimalNumberTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 967D6286ECF8DBBE843AB35C9E2CF2B4 /* NSDecimalNumberTransform.swift */; }; + 46C56C35747EB93ED186EB0A4614BB71 /* PhotoAsset+Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = D40EFA4AC4FAF688BB84B55A3FB2CF5D /* PhotoAsset+Request.swift */; }; + 46DD69BCF3B370BF6BBBBCF400D9DD3F /* AnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D04DBC093A142D706FC40A9EBD11889 /* AnimatorNode.swift */; }; + 4708505041F162DB894B876B79857794 /* Editor+PhotoTools.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4009BD16431C62C0B7BE3CB189F750B2 /* Editor+PhotoTools.swift */; }; + 4730296E49F16E17769686F7831AA0EB /* ofType.swift in Sources */ = {isa = PBXBuildFile; fileRef = E91F66139CDDA437F057F79B815A732D /* ofType.swift */; }; + 47443F09C6EBFFF6143EA8B4967F865F /* UIViewController+TopMostViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA3223D73145E787B1981391FD710DAA /* UIViewController+TopMostViewController.swift */; }; + 475B4F3E71C293065AAFDB1888696CF6 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = C697541991BB83795F62A7EAC8FD2B49 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 478D40A254B29DC1408D37D3D6051DF7 /* SwiftKeychainWrapper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A22F13325BAECE5E89A7635E627B97CB /* SwiftKeychainWrapper-dummy.m */; }; + 47C9A000C20E04EC69BFEEF3C6AC6256 /* IQKeyboardAppearanceManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1661F2067BAE2A0A0E5D6C5585A309D4 /* IQKeyboardAppearanceManager+Internal.swift */; }; + 47F8811B5427A0E93A230232C573B68C /* MqttDecodePubAck.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C8171B585A7AB98F4DAC387B9569C8D /* MqttDecodePubAck.swift */; }; + 47FBA86C15EC8060331926C9A8D54BB1 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BA471A54694354CA0D84E2A452949610 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 47FBCA188545B898AB5EEC31E3E5E680 /* YBIBIconManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F34ED0A941A2F51373D6C1C05B1339D7 /* YBIBIconManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4808B2B2052822D84C77C8A62699622F /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 14A7D6A86A2083A77AE74C11D9E5B400 /* SDWebImageDownloader.m */; }; + 48613A776228D14C2933B89CBE229570 /* EditorToolViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0CBE9B053F9FC8D9F31828C0584A37D /* EditorToolViewCell.swift */; }; + 486CDF230E2A556983838450D0EC5C75 /* KeyframeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5D131BAEA2B1C0468C915FC762A6341 /* KeyframeExtensions.swift */; }; + 48A5FF7B0107E13FDFA349294CE41359 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D35826F34C3A15406C7BCA0C286C17A /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 48D3C099349231D4D0122D8E51468A19 /* Date+Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A24B45B99DABB55846B35CC63B19366 /* Date+Math.swift */; }; + 4901D71B1E8609E9BF02617F741F6512 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = B2DF02A1C83FCAC61CE81BF9B51677AC /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 490664A35E3AA79D57C33414E1B19E66 /* DDOSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 378E212C4FE47178EBCE8F98BAB1B1D8 /* DDOSLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 490AEEAF2B7281C716A29CF7BEFD6E33 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = F97E68DD72913DDFFA66907E6F040F8C /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 491D049834F6F84A3D0785A682FCAE39 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 88467EFBA0FCF30687E23912DE9B7DD0 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 492E53D98F2FB5F2EEF734D1D672BC08 /* TimePeriodProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 706126F07CEBF1B19EAA3D54064C3002 /* TimePeriodProtocol.swift */; }; + 4938511D8412EFA06AFCB9D8DD0F4F77 /* YBIBCollectionViewLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CD18A02BC6362BD60A9F8A895C6881 /* YBIBCollectionViewLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 49445CE967F63922E2048455DCE72758 /* YBIBInteractionProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 887BD66AA7441D8A73D87321B6F17CBB /* YBIBInteractionProfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4990936139BF46A3888CBF58360A7251 /* UIView+SDExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = FD30BE25D5B77C034CA2040AC6EF80E6 /* UIView+SDExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 49C64C6D505629CD6B37FA8D5F68CDA1 /* lossless_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = A89DFF6BEF600D2FD437FB469EB3876D /* lossless_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 49CF13727C6680117794AE1A86BFAF0F /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C07F59A034811F4CBBF62F8E736ECAA /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 49D0AB841BE753EFD2A840C4C54F4756 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 10ECE5FD969EBBA30C2ED7DA1AC66C7C /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4A240539859DE81874149E2DAB8852EF /* YBIBUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B4759B2362FE048A89613C7D13FBE31 /* YBIBUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4A5F51AA21766046600966A50BD6F533 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 572C33F4140022FE99118556F038018B /* Sample.swift */; }; + 4A63127B68DCC325FBEBB78896FAE6F9 /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B29722D6230A4E399189B5B3E153D285 /* IQKeyboardReturnManager+UITextViewDelegate.swift */; }; + 4A8E5376A0FA9D3DBD7F1E452F1BE38B /* EditorStickerTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B72E217B485757193D8084079600E909 /* EditorStickerTextView.swift */; }; + 4A91D925DDACC63C464346C6EB1CED3E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 4C84C4C711FFA7CF45DD30F7F1B9F6FB /* PrivacyInfo.xcprivacy */; }; + 4A968EBD70F69793C28AD47645AA124F /* DropShadowNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9A80A81973DFC185D749BF15E3B9010 /* DropShadowNode.swift */; }; + 4AB3FD4438152538ED29BFA7B341B02F /* DateFormatterTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88A88BE7352DE9732931C54A38F9936B /* DateFormatterTransform.swift */; }; + 4AC9B005EF04B376E1E8612AA94B0BD7 /* Picker+UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ED05F749374B2ECD29E17E6726B4D21 /* Picker+UIViewController.swift */; }; + 4AEC3CC4368A996534E603361B5D7940 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE23998ED27B4812995A97BEF5F323C /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B0B017D5B3951B641C1336A8515838F /* RxSwiftExt-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE841174DFB947091CC9730CC27A4D7 /* RxSwiftExt-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4B1290DE38BEE1418F52E914EB28389F /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11B4D2B58D8EC3CA214F9D4A0F71A59C /* Merge.swift */; }; + 4B1C0A08511CD18328B7AD065B6447F8 /* MqttDecodeSubAck.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C4D7FBD66D7474E6981A9772DBE9E40 /* MqttDecodeSubAck.swift */; }; + 4B3687C8AB50D80335544D2338C54D74 /* Picker+PhotoTools.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1015C6C8D14DA8683A3381003A7C1EB0 /* Picker+PhotoTools.swift */; }; + 4B802114AD90D83829297937C5939C91 /* SGScanView.m in Sources */ = {isa = PBXBuildFile; fileRef = 691FEC0751A0CEA25959BCE082FC3B97 /* SGScanView.m */; }; + 4B9FC9B0004EB197325C1A6D67C9FA28 /* GroupNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = E85F341F52AD4EA9051370B4AB27A5BB /* GroupNode.swift */; }; + 4BB0CA2D3BBB9A3D60EFB691B070B3D3 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AEC81D4CEAFD3F38E344F8311FE012D /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BFEF1EA0FD8911E9EF55A4484F7F1E6 /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8277B036CADFDB18A9032F3676C20D1 /* KF.swift */; }; + 4C0B9A1CB2C59D19BA619458188DB556 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CF7AFA4E3D64A4BA4D1B1B57212C941 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4C10C2C40993364E838ABE82E0301880 /* ShapeCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7D13E2DF65446BC4D8E7B407EAA0684 /* ShapeCompositionLayer.swift */; }; + 4C2FF50CEFF8089782BF69B0201BA4A1 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 803F8F55A8F17B4D7652541124C612C4 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4C76A7083CB882DBA6D7AB708AF8A300 /* SendMessageCallbackProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 03EEA40526D078ECA2261B80DFC83B93 /* SendMessageCallbackProxy.m */; }; + 4C8406FCC6BC4D4007C31B4805E414DD /* NavigatorDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A60D3136A08EC0C773382CEE7C49B14 /* NavigatorDelegate.swift */; }; + 4CFE1C0BF7FD332B810E42D2DA299F5F /* RxScrollViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F30D8D00A655C7EC5DA8DC98A8361B5 /* RxScrollViewDelegateProxy.swift */; }; + 4D0444BAE8369211DADB3376A38089CC /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5520E606C013E1A2620E94D8169AF82C /* Observable+Concurrency.swift */; }; + 4D08C586CB9B30E68361DECB0A708AE6 /* Archive+BackingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0296D5D6EFA25ABAAAA68D3CD8738A76 /* Archive+BackingConfiguration.swift */; }; + 4D45AF0998CCF0F5840FC0D3A4E40BC8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 4D80E60A335E390E7E06406B289B1507 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0951F87C6DE10E5CFAB72203270704EB /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4D81FCC2BA602A7BD07F22F1584B8F26 /* AssetManager+AssetCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3AB2F5FE36493E753EEAAF3B8E6B30D /* AssetManager+AssetCollection.swift */; }; + 4D9E593DECA015D410984C771CCFDD12 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ABDDD2F889B1861B14D2F1D61F16BA8 /* Alamofire-dummy.m */; }; + 4DA8C358A666CA3352780CBB1D351A48 /* UISearchBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2779AC1EA6378DFB55EC94CB2A921AEF /* UISearchBar+Rx.swift */; }; + 4DCA75BFE1558CE59DFC56607E49B3D2 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A3A23E72BF86121106194AD04651D2E /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DEB12CB0D7D8F6AAA5C645E6C6C3284 /* AssetManager+Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93E12D74AA92766FA145737CB1FF4B12 /* AssetManager+Asset.swift */; }; + 4E11FC5197231B7FC95109CBEFB6615B /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0F1E0571EE5F74112DC26DEE1DB61D /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 4E19785ECA3BF1CD264269D5DACD9B87 /* SelectBoxConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 602C74A8185EA5EE8350DAA128584F7F /* SelectBoxConfiguration.swift */; }; + 4EC2962339DCDEAA3554795F8737A175 /* YBIBToolViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0371D4CC57FE2AD694BD3124D76F3700 /* YBIBToolViewHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4ECDB9E3C46C6B4233DA2AC4DA514932 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 79B7929EC24027379B0B163DA94A6AFA /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4F03E118D2391DA8DF72DF10152F07C8 /* IQKeyboardToolbarManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D8B96BC951501B73B984B3E5E73D45D /* IQKeyboardToolbarManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4F1D9DCC6E91445694774FF0849A4B83 /* CGImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BCC0CB4800246FD935D7AF0399C5175 /* CGImage+WebP.m */; }; + 4F2C790A0B9ACC95B86C6639E6C5AF4E /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78407664800D43DC47B50BE2A39D946A /* Debug.swift */; }; + 4F43274487E91FBD7E03D86245E47A4E /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B3B1BFD01D9928B8320CCFBE483C0B6 /* PrimitiveSequence.swift */; }; + 4F4DEB687C0E4834A5B291DEE0651D6A /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = F716D3D553C2B2B467ACFEB6493D9F37 /* ConstraintMaker.swift */; }; + 4FBF89FE470E2F4A0E7E8546A469967A /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5972F6E217179DC514AFBE7916229A /* SDmetamacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 4FC8EEE68D5932ABDDFE2D0DCF8345CC /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA7C3B976B5FED44BFD89C3C0FBBE972 /* ScheduledDisposable.swift */; }; + 4FD35E0DC4C9F53BE89F91977C085562 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 53A4EFF13E5D8770804115A05B68B1C5 /* SDDisplayLink.m */; }; + 5028A68DA5ED8F5524765AA3A07B4007 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 277192D403211FA10EEAC643C35570AD /* PrivacyInfo.xcprivacy */; }; + 50669B24372B93D32B3A617D0058F215 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4AFBBCC3AC2D57FEB1F37DD9DD64C777 /* MobileCoreServices.framework */; }; + 506DE859713E4FBF1246DE0F500600B8 /* SGScanCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A1DA6E0CC1D2FAF481390FDF49CB9EE8 /* SGScanCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5089D80A7EF3416F2F3A4D432EE50F5C /* SGPermissionPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 07063D265D80CED41E96A7C82AE2DDDE /* SGPermissionPhoto.m */; }; + 508EE05DC4635E416722BBFE86807E95 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61CF6C543261C867ACCBC0ED36A257A1 /* PriorityQueue.swift */; }; + 508F0749C8CE0782F435CE83E8883BD7 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 936CB7B4BDC58080C1761D5802B3F961 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5090C42BBD3A044AB5D419967216CB37 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F2C997ED187FDEF21DB00D42F13F8ECC /* QuartzCore.framework */; }; + 50AAB77967D0145B1492E8F868E0FDD8 /* PhotoManager+Audio.swift in Sources */ = {isa = PBXBuildFile; fileRef = D13ADEC01AEBCFADCF283E3936FD6C64 /* PhotoManager+Audio.swift */; }; + 50B43CA000068D1E1BC08EF96A23E0F5 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CE5BD03C703D73BE31F3D87E1B5DC08 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 50D00DC42BB5C1BE2352D3464EFB94CB /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD590C801F4A52D73C98EA6ED07876F /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50E0B8B52F6C012C647A877DE161AD0B /* MqttConnectProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 322E4310DE8158FCAE06CF313CB5D549 /* MqttConnectProperties.swift */; }; + 50ED87303DE9E2682DEED02D299237D1 /* DiffableSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4781270B7E505D46B77FC0AAE0844B23 /* DiffableSection.swift */; }; + 512B9661FC34235E0EEB3A6D3E319B88 /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = DE1E6901934EE596740D842380286A4D /* MJPropertyType.m */; }; + 515402907776670802E14BA4FFCBEB03 /* pausable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5ABBFFA488022C89EF93575377A4C200 /* pausable.swift */; }; + 51549AB4DCEAACB95CD86750694E1D87 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = E1F62D4EADB9E5D416AF1F2EBB690434 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 516198259FBF27998319EA25BE34D523 /* SwiftDate-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 245230D60496C156AA01F11BF0F5812A /* SwiftDate-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5163FC6D715F6881B1FA1AB13DCEF870 /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E797E34167479AB4C62BEF24C93CAAE /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5174DD2019966DFDC21B8864453ED3DE /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = FA212ECF33B3A933473221784ED69166 /* NSObject+MJClass.m */; }; + 51AD982F51665703357600F04DCD328F /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AC25F5250554656AB117D165FA972CC9 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 51DDED280D55FB32EF2455BE8E5EE305 /* EditorToolViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFA50E72BEA63413CB9C0B4CC48F4F7A /* EditorToolViewConfiguration.swift */; }; + 51F3B35343757429879D929BB8FAB835 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94AFF6B159156CF9FB52FA537C9D048A /* MBProgressHUD-dummy.m */; }; + 5209C1A3570588A7B77161FA9EA55C02 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B4B16CEF33050278A4A904EC75AD40C /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 5210FBCE7B8D9C113F92A7EB93DC0D81 /* DDFileLogger+Buffering.m in Sources */ = {isa = PBXBuildFile; fileRef = 05746202040C5E84F9997A84784DE29C /* DDFileLogger+Buffering.m */; }; + 522BAB997E48EA6A808C89BA298FE55B /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 63321D54034C11DDB8981792A5761232 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 523235228A1C021C67F2E3776A922DC5 /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 59306A0835C1BE58B6CBDF64FF22DF38 /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5259F923E04070DB3B5FD9F1A98B62FB /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EF66DE3B3203486D7F366B2E5AAD62A /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 52634197F97213E2DD98538DCD8BC6D4 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BE93567AA85914227E92BDFE9669A63 /* SDGraphicsImageRenderer.m */; }; + 526EBB21113F77377DFBFF6F0D2A9FF7 /* AssetManager+LivePhotoURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65029C092034F39CD83E5C58E0DA0B05 /* AssetManager+LivePhotoURL.swift */; }; + 52A4B575AED29E5155ECAE9032603201 /* ItemEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9891B991F8D7F282B6C175E77BE7D0E /* ItemEvents.swift */; }; + 52D60BAAE980A153100A4881975E8CF6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + 52D757C94A7C2AACD80AB049F9881EFD /* YBIBImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 272F9E6947D5DFE5145771307773F9E9 /* YBIBImageScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 531A5B89526140600E81AC06D7609722 /* Popover.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFA03B4AC805A46101403448BA891DEF /* Popover.swift */; }; + 53264B91AA947BD2BA1C03735C5A284B /* Repeater.swift in Sources */ = {isa = PBXBuildFile; fileRef = 723B33791793F56BD5E9F38531D5874D /* Repeater.swift */; }; + 533A88E45962B5D9C58C2C8CDF68B408 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = FBFCD3C2F41A889618134EB337C10CFE /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 533BF0B3BDC7553A874AA44DBC6FAFDF /* _RXObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = C444211868DE12D238B5BF354455FC4D /* _RXObjCRuntime.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 533C838059890F6AFF29075B9A7D4C6D /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = CC59B2281AD964D6B8FED7B26F17BEC0 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5392CECD3707F194D077669DE55EA90A /* URLConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 011AFAA206FF4A0E965B6A9437F4A8E6 /* URLConvertible.swift */; }; + 53BA20933A3747C025F10B4C51EED188 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 1322DF1CDD5A25B867ADD9873A4AC966 /* UIImage+Transform.m */; }; + 53CA868E64451978727670396A9477B5 /* _RXDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F7CC255B973DED6704CF75AA5652653 /* _RXDelegateProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 53EEAC6A987681E9E9C6C7B91E34B24C /* RxTableViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D41911253A4EA902F92DB8C0EC5822 /* RxTableViewDataSourceType.swift */; }; + 54A45AF20BFF99BA20B15AF09AC4901C /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE6FE100A253357F7FFFAAF9AB9378C4 /* Notifications.swift */; }; + 54D0A443ADA6D6F309E7D326BE652DD2 /* OIMReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CC360DDD6D3361E48E7695224199158 /* OIMReachability.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 54E268C32915CF908E7AA776909B45EB /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = C4AEF7DE14166C25132B610DAB1F3C00 /* MJRefreshConst.m */; }; + 54FCB2A0877468FCA03245D4FBB0F9D2 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75E672D2E3F85192FCB6AA5DB98E8607 /* ImageCache.swift */; }; + 55699564BB44B2104A443E6D48923E90 /* libwebp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D2168315CB9F6330A6402FFFDD1D6C30 /* libwebp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 55A04B833FD170F94BE342310B41FB40 /* TimePeriodCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 208AFEA3CC5DD10476B29311F5E8F3EE /* TimePeriodCollection.swift */; }; + 55B11D2C4DDF75F774137344BF028AF6 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 635325A329D375088E730F34019317A0 /* PrivacyInfo.xcprivacy */; }; + 55C33792F8CE9E783B8014A61F953AB7 /* DateInRegion+Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F20D74BF18F61F2F8043E9BB9261874 /* DateInRegion+Math.swift */; }; + 561420A20DC0A84258A902E9EB69A15A /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = DFB5011F8D337C897BA3D4066DAA8DAB /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5648D7F0A01DCE02F38BA12B3389D4C0 /* TextCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 518C08021C81FCD665925D5FE7DB2D2D /* TextCompositionLayer.swift */; }; + 564ADB7E97B721F59E933E1D05B1C305 /* TransformOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = D105F796848D507AEBB1461B0F8A6D7C /* TransformOf.swift */; }; + 56691610F48CD177ED944F34C23C0A74 /* GradientFill.swift in Sources */ = {isa = PBXBuildFile; fileRef = E07E0B4611AA88852073CCA616A9032A /* GradientFill.swift */; }; + 566B1350CFC30E4D9B89E294C69C9EB3 /* YBIBContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = A564302709C6F613C097FCA7C36410B8 /* YBIBContainerView.m */; }; + 569BA73DBB2EAFC4BFEC77AF6A0C3F89 /* TableViewSectionedDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91F9B1A6C9A789429ABD96817E09C218 /* TableViewSectionedDataSource.swift */; }; + 56B50B3F8DD7B44500AA65DDA2C88F9F /* Keyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5EDE4C54CCCF208B2D71DCB9FDB21C7 /* Keyframe.swift */; }; + 56D8A7EAE4D72FF6C23421CAB6F21504 /* MJPropertyType.h in Headers */ = {isa = PBXBuildFile; fileRef = D80F30B4976169EF9937B6A44FD12D40 /* MJPropertyType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 56DFEB02ACCD64F2C2CFCC01747627D2 /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 034243C340888689E6CC333E4A5514C8 /* Disposables.swift */; }; + 56E800EB3B2BE8AE0BA45A30974D7920 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D234CC248B770A58420B85F0D51049CD /* Masonry-dummy.m */; }; + 5727477E667AEAF37FEB3B3CE3BFCEA8 /* SectionModelType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1A9770100809405AD02EE9CCCD7C2DF /* SectionModelType.swift */; }; + 5727F454DBE214ABD764FD2AC05BC7C4 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D43EFC784C9CB0EEC823043042F4F3E /* mux.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5746320BBB67E457AF4C4EE5A2D32799 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80462D2D5DC6C1F74F611C1A70FA0A5F /* Validation.swift */; }; + 576C5FD65E8E35A7EF189EBB20CE01C6 /* LivePhotoSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C1764349B4C733F6B7A6B68D67BC042 /* LivePhotoSource.swift */; }; + 57AD313741969102750AB3CB3976BC97 /* CocoaMQTT-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C61A14610D0126017F22A925514C694 /* CocoaMQTT-dummy.m */; }; + 57AEF499097B5B2AF1D566F88E7DB206 /* _RXKVOObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 075882F6287E92089A2D5E849864B5EF /* _RXKVOObserver.m */; }; + 57C4F6EFB30DDD14E960AC2D6B34F904 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E4DA59576A1914BE355CDECE1AF3362D /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 580D9F7D0E5B3A80462D5C7ECD81A7B7 /* KingfisherWebP.h in Headers */ = {isa = PBXBuildFile; fileRef = F808015688D43C9E0031FC140F6849BB /* KingfisherWebP.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5840C6FBAEEC15A7F3D89435C73AF6B7 /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F39BB06188020CC5D8E4980721C6AC2 /* Enumerated.swift */; }; + 584B2BC80E7104E4C2028C5B4A084F2C /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DBBED0980B464762473A6C89F1C172D /* CALayer+fillBounds.swift */; }; + 5883CC9CCF065AC993539027684B7491 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCF8B7BABFCFD728C47BD91B529B0830 /* Platform.Darwin.swift */; }; + 58F7ADFE261DB23CBC1E99AC29AB8A0A /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CEDFF8B9C44A6519EBCD6F47B0F262D /* Deferred.swift */; }; + 5922A6A0AE7152CF436356B3556F1835 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05E9CE5A83328C8F0A54F45B5A6C8051 /* ConstraintItem.swift */; }; + 593BE6C6A4228D571E38A13C997BEFF1 /* PhotoPanGestureRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E02070E552BE1AC1C311C83E723E8C37 /* PhotoPanGestureRecognizer.swift */; }; + 594619F78BF7AD4FED3AE54E56B565E3 /* DefaultsKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DAD00461B83C200FA915645CDB0E2C6 /* DefaultsKey.swift */; }; + 595FC1B83C3124AC916FE978EEB3BF90 /* OIMAttachedInfoElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BDF7C88D11E13B365E3AF156FE327A /* OIMAttachedInfoElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 59926C66B6FD833E66F57DC8DD184AD3 /* SwiftyUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EBE4B32A33B53EEC1777BCF15861D1E /* SwiftyUserDefaults-dummy.m */; }; + 59D8740DE7EA85A7E5950D8A4B43AA74 /* Array+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DB6E6F409BB82016215077AA58FFE0F /* Array+Sort.swift */; }; + 59E1BF0AB3F19C50E578D398E26EB227 /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5E0BA4C08C42E4F935DB00E62F37EA2 /* KFAnimatedImage.swift */; }; + 59E8E48227EFAB47CF488B945CDB6A71 /* DropShadowStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75D18C3514B0AB93334F121664FB2959 /* DropShadowStyle.swift */; }; + 59F34874DA4ABB2F5C4E09EA6865936B /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = E796C4048C441AD02DC39D0BD3AC5217 /* ConstraintLayoutGuide.swift */; }; + 5A2FD3386684CE7797BB7FF6F3CCC061 /* KVORepresentable+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = A63D5EC5608CA5FC91E9F28422C4C1E7 /* KVORepresentable+Swift.swift */; }; + 5A59B9480008B1E5D4A86DB270FAB470 /* UploadFileCallbackProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3AEA4903A4A524064387947E97A51C2 /* UploadFileCallbackProxy.m */; }; + 5A7D0317917962BB4C8608318195009C /* PickerInteractiveTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = B39413E51791A04479D1A4F3B3575E2E /* PickerInteractiveTransition.swift */; }; + 5ABDF47FC0D60B701B5A8E767DC1314F /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF3B0FB9898350076BE5086B8A648CA0 /* EventMonitor.swift */; }; + 5AC012169819B4ACA66D680CBB2D4B24 /* LottieView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F18B21B8DF3684C2CE65E173E832352 /* LottieView.swift */; }; 5ADCE72323C6B6AD702E85FE8B2CEF78 /* MBProgressHUD-MBProgressHUD in Resources */ = {isa = PBXBuildFile; fileRef = 6EFB05F1F29FAD078E29A839C5020799 /* MBProgressHUD-MBProgressHUD */; }; - 5B08596E856E4CC2F34A8A2372F9F764 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B8435CCF2311680F3ED5C6D68A7DB889 /* NSArray+MASAdditions.m */; }; - 5B08AE4C304C9CF545CE37131B3A3BB3 /* OIMCallbacker+Closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 8068E8070D96B799FC962E5A1BC5511B /* OIMCallbacker+Closure.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5B08596E856E4CC2F34A8A2372F9F764 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F8D1527E921FE86AA6FFED26C884C85C /* NSArray+MASAdditions.m */; }; + 5B08AE4C304C9CF545CE37131B3A3BB3 /* OIMCallbacker+Closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C7FFBD13E7069D7CDB43E2A9F7F81D /* OIMCallbacker+Closure.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5B094AECD875F2C5416ACF7D70D6B6B2 /* SwiftyJSON-SwiftyJSON in Resources */ = {isa = PBXBuildFile; fileRef = 7CA3B05F07B063827B34AD2B0DB23706 /* SwiftyJSON-SwiftyJSON */; }; - 5B1E0BF4678455BC502D2B7B2DC48BF6 /* OIMMessageInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B119AE75A9A04C0FC424C31B4F171B /* OIMMessageInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5B33A02EB936B8CFDEC0DDE34D9C330E /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43601022A470E6D853FE16759BDC655E /* DispatchQueue+Extensions.swift */; }; - 5B3923C137072003EBEBE7E027F56CDF /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C1449F57688BEF3B9D5DCFB485E606C /* UIColor+SDHexString.m */; }; - 5B9D821848443B273832F8F3FFFB6EF0 /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84934C95F8FF400D99A7515B8C780AAE /* Never.swift */; }; - 5B9F6CF9C6FB7194478B84FB5ADE24E3 /* OIMGroupApplicationInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 20FFC6126E63DBE03B5555F2CEA45936 /* OIMGroupApplicationInfo.m */; }; - 5BB6B99986FD7111B3AEBE931C7F507B /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C77430014C62956E5C73E7FC9DBD96 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5BD5D9B8F61C124A62C75D9AC36A07BD /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = B68BC94B42D3E5F9AD397EA16BE5DD3A /* MJRefreshTrailer.m */; }; - 5BFEA22DAE56385193B4231D5761611F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 2DB115166094A8D48E376C2F668892BE /* PrivacyInfo.xcprivacy */; }; - 5C1D2B938DACC33D9AFE04B62FCC9EFE /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = CDB7FF942B90BE067AA3B27A25238BA5 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5C29F3BFE98B26AA6F4736A4102AB7B5 /* Defaults+Subscripts.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FEC6077DC3237CA46D42ABFDC14A37E /* Defaults+Subscripts.swift */; }; - 5C6BACB3E936ADB9BF7B694DE5F76B24 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = AB53487CE53F8FB4D70D0221212EC78E /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5C8FCF7192997E76A80BE80032A6736D /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D117580563C690B3B6D37BB9C3A3CEE /* TailRecursiveSink.swift */; }; - 5C9EA4F07C1D25D08C9A74B8D18D507F /* AnimationCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7742E45657024F0DDFEBD97D410588B /* AnimationCacheProvider.swift */; }; - 5CA3399DA62981599919E71062272E9E /* mapMany.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59AB42D5F7656B8882D8F442ED7CC8B8 /* mapMany.swift */; }; - 5CD1164C22DA8E2882BDDD66A611D139 /* YBIBUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 58A066A3C3FB7F76C197EADAE084688C /* YBIBUtilities.m */; }; + 5B1E0BF4678455BC502D2B7B2DC48BF6 /* OIMMessageInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F2F48E9C3DD021AFAAF173158C2BC249 /* OIMMessageInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5B33A02EB936B8CFDEC0DDE34D9C330E /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D057D2D724536C69CB371BBB638D3B1C /* DispatchQueue+Extensions.swift */; }; + 5B41F4CE095824F7FBA30F59241A020B /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA52E2692A0A64130E93FC68F11C4F8E /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5B8E6B2A79FB2854979D399D9748A48E /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = C6D30DDFE1BF6DACA6804172A77CAFA4 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 5B9F6CF9C6FB7194478B84FB5ADE24E3 /* OIMGroupApplicationInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B842D2FB9E52687A1AF54CD9740A769 /* OIMGroupApplicationInfo.m */; }; + 5BB6B99986FD7111B3AEBE931C7F507B /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 958AA68B7BB3D260BE27D937E76C9710 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5BBD386F448E2E822F0604BF7102FE17 /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2F5D4485890B56FE9E54491AF71F8DC /* ConnectableObservableType.swift */; }; + 5BD5D9B8F61C124A62C75D9AC36A07BD /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1276FAED22369627709084038B6FF270 /* MJRefreshTrailer.m */; }; + 5C29F3BFE98B26AA6F4736A4102AB7B5 /* Defaults+Subscripts.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16098AC15C72D87F44C638C00C7C494 /* Defaults+Subscripts.swift */; }; + 5C44470EF1044429D6457EFEC81C018A /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E65BD4ED51C14C9AEED0810840CC1C /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5C577E5C5D13313BF4E90DA27CCE1BFB /* MqttDecodeUnsubAck.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A8B44A19AF20F37A8875C22357A38F1 /* MqttDecodeUnsubAck.swift */; }; + 5C57EE908FCC18769EBAF8A902DB2AEE /* MGCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = DE2180C541DB14418AE24C9C09FB2399 /* MGCDAsyncUdpSocket.m */; }; + 5C9EA4F07C1D25D08C9A74B8D18D507F /* AnimationCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48C0D0820DEB2784A88DFE222DDC52D5 /* AnimationCacheProvider.swift */; }; + 5CA3399DA62981599919E71062272E9E /* mapMany.swift in Sources */ = {isa = PBXBuildFile; fileRef = 041BE6B75085B8D8F3F94945290C1279 /* mapMany.swift */; }; + 5CAB0AB09FE4A8EF175E154539E3CC36 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B3E7BD37B3CED58C99075C4CAF81FBAA /* PrivacyInfo.xcprivacy */; }; + 5CBD3F3DBA3661CCDD103364E799A352 /* IQKeyboardReturnManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF2AB942FDE7274CE1F5D9667B6EC127 /* IQKeyboardReturnManager-dummy.m */; }; + 5CD1164C22DA8E2882BDDD66A611D139 /* YBIBUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B4863B9298753CB8613C21E39C9B27 /* YBIBUtilities.m */; }; 5CD127F101529C336A07D45CE1106A54 /* Alamofire-Alamofire in Resources */ = {isa = PBXBuildFile; fileRef = 085DBCE7DD98588B2ED103B1C1F36026 /* Alamofire-Alamofire */; }; - 5D07708EC42D549847583DED8030CED9 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 55A2692DAD3BED620DA0EB83FC8A09FE /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5D2B46D1F7B27E81D3526A4FA0AE1B50 /* Archive+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35B2495153788DD6EBBE5BF78859D1A2 /* Archive+Helpers.swift */; }; - 5D616EA4592D70E951F33BDA4A7C8DA3 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C37D8F8F5792C0FBB119534DD5A5838 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5DA9F754707804370E363E343E9221F1 /* BehaviorRelay+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = D862D8002783A98CA4298CD944721078 /* BehaviorRelay+Driver.swift */; }; - 5DE1E9EE872B702F012DA1E310CCB157 /* MoyaError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BC029F6B78235F5DBCA8BEA669E6064 /* MoyaError.swift */; }; - 5DEE0A7469BAACD2EA71A8DE205D333E /* OIMManager+Conversation.m in Sources */ = {isa = PBXBuildFile; fileRef = B23C3A2C524E46A832566B9E8F3565B5 /* OIMManager+Conversation.m */; }; - 5DF2E03715129AA0C77ADD8BAFFBDDFC /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76A218800E579334BACA61C598A34ED7 /* KingfisherOptionsInfo.swift */; }; - 5DFCBADAC7D0FAC82C84A6C8E7BF1DA6 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B047E4298457A88A20E186EB03E519 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5E686B1E1BC041BE4966F71D75978FB3 /* PhotoAsset+Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B7A648559C518EA6DDF715D86F642BF /* PhotoAsset+Network.swift */; }; - 5E6BFEA8AF2EE6BEEAEB1BE2346A33AE /* Documentation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 1B3C11BF7CD9B3366062CA6E41292DCD /* Documentation.docc */; }; - 5E6D9B41BAE736924F76FF8CED634AE4 /* TraitCollectionProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24CF5FE8FABF08B21AE1B4496D4FD182 /* TraitCollectionProviding.swift */; }; - 5E763B6068F37F4DB3580ECDF4389146 /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 390E8573959FA2A886CC5567D09B09F6 /* ConcurrentDispatchQueueScheduler.swift */; }; - 5E8A0E4593834354FFFDBC129F5F6081 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 5EA055EF73E9639BBE8A176CF6167602 /* OIMManager+Login.m in Sources */ = {isa = PBXBuildFile; fileRef = A2C6981FB90E9DB2786F343976922ECA /* OIMManager+Login.m */; }; - 5EA7CEF77748C6745DE0713024E68039 /* ConfigurationGlobals.swift in Sources */ = {isa = PBXBuildFile; fileRef = F26E5F82D1BEC8D2C97277B2D67D396E /* ConfigurationGlobals.swift */; }; - 5EE23E0B4A7175D504F4C7E20505DDE7 /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3ACE2A2FCD1CB79DDBD88BFB0583269E /* KFImageRenderer.swift */; }; - 5EEAC6A66FA0E6B5830DAA93471DA9FD /* sharpyuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 060A177B76119368615F6C08CFBDC704 /* sharpyuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5EFF6487E656A2A2D4324817F28CD5B8 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA1AA03A70AEA0C5A111D92FB984179 /* mux.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5F09107998BED88EC6FCDFC5305031B1 /* String+SHA256.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE7DEA50FF25BDE8F47C9A4C55418AD1 /* String+SHA256.swift */; }; - 5F45735DF355530CC955066D3C007E19 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = A5579C794B8B2149F7FF896EA599A88A /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5F9A72150ADC8769E1E28AD550D314A1 /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 781602548FAD9A55430D9ACCCB6098CC /* SwiftyJSON.swift */; }; - 5FC38C81C52F349565DA5EA2A63E5C5C /* Mappable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 845BD000FE8A9E1EB45F78DC1E70E618 /* Mappable.swift */; }; - 5FDC4239F7B651092BF582D0F460BAD4 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = D7B4BE25B675D9E62A4F73B632D2FA4E /* UIView+MJExtension.m */; }; - 5FE376C5CEBC1C40441E38EA1EE6BF02 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4123C8FEAA4B2A821DFD684756000B82 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6094AAEC695E16343CEA6679DE1928E4 /* IQKeyboardReturnManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC42012201F6578E940392397D5E5F8 /* IQKeyboardReturnManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 60981496CF43E012B912C4B93587F430 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B613575929F9CDC08E3D012506899530 /* Completable.swift */; }; - 60E8E419DD6F0CA6D556F6B9FE7B128C /* sharpyuv_dsp.c in Sources */ = {isa = PBXBuildFile; fileRef = 36609CDD2BC9353598397AC9D8CB42AA /* sharpyuv_dsp.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 60FF5C656C2BF52195021D00816891E1 /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB3C8E0FE0025F189650168E3AF6C6BE /* AnyObserver.swift */; }; - 61015DC99221A23D700A04291DBA6B67 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 466A603F12FA5BB31841F6365BACD39E /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6134C81E38AE47AE5DFE0B0B1E6C3380 /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F2F0EA5C534B941F600989F2ADB613 /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6138260CB5AF95929889148DFC913A0F /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E22F8ED0B0260D140F7BE3E0E75344A /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 61461B0D9D7B81C3F8D24066D9A19DCE /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = D86F8CB933244DB4129321F3F634F3F6 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61507E402F1F7C58BF119995A0479A22 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = DFFB232AA60913FE340369D4DA3F470F /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 616EE17920C59DD34B65912B4763C7A1 /* PublishRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6FB79E861E4F3D89D4BDDCF33899DB8 /* PublishRelay.swift */; }; - 617E7F15F79A3A5DF83B334AAC78E41C /* AssetManager+AVAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11BF0F782E6A624EBD13466CED287C49 /* AssetManager+AVAsset.swift */; }; - 61857C821395B868C65A8FFE4DA1B4E3 /* MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D95A5C4EA4042D907803C45FFD333C /* MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61A1702C9F4291517E87A0B355B4AD4E /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 645B6195BA2EF0CC400908DC32A609F8 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 61A3DA271E425F1B43772BA3649F8425 /* ISOFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4C026C1C0C1FF7FEE5FF1768B7C1F9D /* ISOFormatter.swift */; }; - 61ED64340371AB30B936A019C22C376D /* UIView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81B6E91C3E6BDDC7B05E43C0052936B6 /* UIView+IQKeyboardManagerExtensionObjc.swift */; }; - 61FD73CF8706BCE3BA5A3A357A15C35A /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8871BF84E79608846B442F26D2DED761 /* InvocableScheduledItem.swift */; }; - 626865A3EF3A6D4A97808AFAF335BBFA /* LottiePlaybackMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D8646AABF9B045A43689BB1CD400420 /* LottiePlaybackMode.swift */; }; - 62B90C6FC83F91F91A4BF12022C7B050 /* UIView+Parent.swift in Sources */ = {isa = PBXBuildFile; fileRef = F458BC861920FABA639310941239FD72 /* UIView+Parent.swift */; }; - 6321B6047A2176553365F6367D1C4BDD /* DDLogMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 384D8E218EB66167C5F83EADB6F99879 /* DDLogMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6376D1EF42AD00D03711B680B2986CEB /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = AD3F046E6A26BC1343E61DFF8913EEBD /* SDImageAWebPCoder.m */; }; - 6377643B1FEC4330947E1DA0BC971FBE /* AnimationContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41CC3F3DD2BB8D3B4156748F2141ED40 /* AnimationContext.swift */; }; - 638F2273D87A721B52DBE6CD24E60CB2 /* UISlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D48CB3120F622B1DC4E9B3AF51D0A7F /* UISlider+Rx.swift */; }; - 639D0DB05E52760FCACD626490DEEA46 /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B194F603A90189ED3671958DAE609175 /* DispatchQueueConfiguration.swift */; }; - 63A8CE0CBE0ADD489C20A0D7F51FC1A5 /* TextLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77598EF3EBC00300D5A3F9E4B15F065 /* TextLayer.swift */; }; - 63E0DD5A7FA5099D1811E8C9E709830C /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 035A29367C3694753943C9E78FE114DE /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 63E1B3AEF8C51B72351EA0E978E131FB /* EditorController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F84C87D3D449237C53594AAF0191B383 /* EditorController.swift */; }; - 64308875A4ADBE88D2C76D622FACF1D2 /* YBIBAnimatedTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 28E32AB0F1A47BA5A7A51B18B2079AB8 /* YBIBAnimatedTransition.m */; }; - 644D53AECC6A137FB73F210875551EF7 /* NSControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F31120DF2E5C142AB737BF64F301D994 /* NSControl+Rx.swift */; }; - 6483BAFF84F868056DECD840E8F9D359 /* CustomPathAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EEDE814FAD2740F02699B6E4BB0001 /* CustomPathAnimation.swift */; }; - 6483D6F6B26818AE1CEDCB90AFA6B22B /* ignoreErrors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A86205BBD9A0C0A9ABA8E148F66C648 /* ignoreErrors.swift */; }; - 64AF3888E1DB7049200A3A5C28A26D9D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D33E322A3E5E2970FF84AD445CACE4F1 /* PrivacyInfo.xcprivacy */; }; - 65531B806F8327DD184D7A07D74829E5 /* UIScrollView+reachedBottom.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB9F979185CFD56D1A727A76434687D2 /* UIScrollView+reachedBottom.swift */; }; - 6587CF9B280E8628F362B44853AE36CA /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E47BC20E69F8FD24594FFC1D8910599 /* SDMemoryCache.m */; }; - 659FC93CF2E7E3959D6A4E19F12D4FD8 /* LottieURLSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0786928B2C05998AE8F0FF54CE85D00 /* LottieURLSession.swift */; }; - 65E1C640FE8331BF45094B2A6A66BA05 /* AlbumTickView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F6E07FC92F07EE8755B8F09EA81360F /* AlbumTickView.swift */; }; - 65F629E1E7896CD05D7DBDB31719F92D /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F02E19AB613C5B9E4A3BC77C82DD4D93 /* Queue.swift */; }; - 66B954DE210240B6BEAE4194C864155E /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = EFEF2502BCF487C0B50FAB112E1518D2 /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 66BAA48E3E4563168EAF3C8E48CDFE4B /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 972CC00CAA521E6FA780F098E389470A /* SDWeakProxy.m */; }; - 66C2FC73A91E265FA5A09F2D0B99EAF0 /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05B1D3E92EC969DE3979A664DD430938 /* ObservableConvertibleType+Infallible.swift */; }; - 66C98F9CBC310ABF9199767F97CD0D06 /* Editor+UIImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 402415CFF7312E2B08AADA79DA73A4E1 /* Editor+UIImageView.swift */; }; - 66E62D8247E22A3B50148739B610C704 /* DDTTYLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 82DA9A393789D615C04307DCC37C663F /* DDTTYLogger.m */; }; - 66F024DCBE9C5AE50FD48FE6876D5DEB /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53902042B5E9FA22F75D07AD3A462902 /* ResponseSerialization.swift */; }; - 66FC880217F38970CC056F79129A7727 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 82DC469C28323FCEAC87DA19052CFFE9 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 671347F24D9FDFA45AC894760A275E23 /* YBIBDefaultWebImageMediator.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E18007B9B2D27C7163D2478DCA136F4 /* YBIBDefaultWebImageMediator.m */; }; - 6728C0424CEE44AA9D3CE04848A99706 /* AccessTokenPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = B96FFDF9BCAA248D1DC8C88267CED019 /* AccessTokenPlugin.swift */; }; - 6739B9085488745EA197B1D58F789BD7 /* DDLoggerNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 28504FCCD451928D39B76F37745A0206 /* DDLoggerNames.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 675B77428EFD5FED7CE72863A1FE8962 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 678EDDCD6ED116BC5100C5924A9BB0C6 /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1C5BEE9A50F34D3FE4396E083ABA3E4 /* DiskStorage.swift */; }; - 679CBDF30126442DC86B51F7334D5818 /* Archive+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02FF9BD791E7E79B5F6D78F088939100 /* Archive+ZIP64.swift */; }; - 67D1A6D90F2FA281D46D5A902DC57F82 /* curry.swift in Sources */ = {isa = PBXBuildFile; fileRef = C107644E8F1B43B9190403B7575902BF /* curry.swift */; }; - 6815F83EA9B7321CCD853754F859FCDB /* VideoPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B237C461DD75E2FE67F4D105C480806 /* VideoPlayerView.swift */; }; - 682DB56C577287486871A296ED0BBED4 /* LayerTextProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59FC1BD33170A2BC4D498D0B282E04C9 /* LayerTextProvider.swift */; }; - 685573DE5F3B2F837EAB992129C06732 /* OIMManager+User.m in Sources */ = {isa = PBXBuildFile; fileRef = D1298B1397ACD7C9C70CFD673D14E200 /* OIMManager+User.m */; }; - 685CB5FF6C164A33D25A02BCBDB4E608 /* WebPProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B254E7B7EBE8EE0B7A1BB6FEDE08103 /* WebPProcessor.swift */; }; - 6868DF039B2BBD8A30C5FC9F404AD719 /* BehaviorsConfigurableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFFEA7E4A731859F2E8145F75A7FCBA0 /* BehaviorsConfigurableView.swift */; }; - 68C8CC790FD5CB13EB2631917A0A683B /* TransformOperators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D6CE6CF210C12D6787846819CB8D3B1 /* TransformOperators.swift */; }; - 68F4885E04AA995D1E8FB8B28E0EE3F9 /* AnimatableSectionModelType+ItemPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CE41C5B80EA05791BE83C7126E9D35C /* AnimatableSectionModelType+ItemPath.swift */; }; - 691D7ABB712F2F5760FE1544D911B304 /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE6F22872D0C90A564CE9655853DB065 /* Zip+Collection.swift */; }; - 69345CBCB31076EBF8A2C5885AF973AB /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = C59EC7A1C6159115643B175BCBF65033 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6941289A9343A4DD3B746BBEA4F1AB04 /* NotificationCenter+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A33292F139F4D03763C451D174D6627 /* NotificationCenter+Rx.swift */; }; - 697D2AE2F0BF2F0C76AD53397FC66A29 /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ADF97EACA948B2C7006B53AEB1FEF8E /* UIButton+Rx.swift */; }; - 699ECA87C4D5F7C18A7D473DAFEF5A02 /* PickerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B281B08D41A8C1539780B8C2DCEDFBFB /* PickerConfiguration.swift */; }; - 69AB582F7B619D2BB667DB19541AE066 /* DDASLLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 779A45EE4D8A55285225137A022FF947 /* DDASLLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 69B74FDF7C33B63E60F97F0DA06AA999 /* StyleIDProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = CACA5F91164444FD018604161211CEC8 /* StyleIDProviding.swift */; }; - 69C938D0947A9B1BC57063E62FD6FD80 /* OIMSimpleResultInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 77677AE1490EEECD80C448F28787D67E /* OIMSimpleResultInfo.m */; }; - 69E353C99C6EEA3C93CCF2E526460B9D /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = B15D37276FF9888DD3E00DD6F5196E38 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 69F6B98B0F745F5C0D40E5BB813D3358 /* EditorToolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C130B750A15BEC82321EE1FB7C52C2EE /* EditorToolView.swift */; }; - 69F72FE9F2E27DB15981E62CF31AD23F /* GradientFillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 020D6025AE9566485C60DFB72DEE5B18 /* GradientFillNode.swift */; }; - 6A5917F884AA23BE533264DC2B0DEB55 /* YYImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B2CD25D2368F0AD91857FAB79E8FB1 /* YYImage-dummy.m */; }; - 6A78A39A6B1CA7D9DA8ED7EE0DAA5E32 /* YBIBToastView.m in Sources */ = {isa = PBXBuildFile; fileRef = CB8D8C5604011BB605F1D1874F011C0E /* YBIBToastView.m */; }; - 6AE82541A8951A34AF43A20E2622CFD7 /* PhotoListCellConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1294CE8A5F4523CADF3F15AD30A2FC36 /* PhotoListCellConfiguration.swift */; }; - 6B1E9342D1D1B3FF6761973B54846C5D /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 02446533D9FB702A89B3DEA51B1A3BFE /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6B2EE580E51F236995465C1FD8569D3B /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B65AF04777A2385E03DD8913EFAE5D7 /* CurrentThreadScheduler.swift */; }; - 6B4F5C299432BC6D39F216FB1956F526 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E1D1566EFC577C509F7BD737CAC55973 /* SDDiskCache.m */; }; - 6B9ED16B62C85179D15C9568D602B72E /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 541F4A250353BC493AD6863F891D9F95 /* SDFileAttributeHelper.m */; }; - 6BCE7872B0E75FF5B7CCDDCCC8587571 /* AnimationKeypathExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EDD5DC412BB584AD5F6B72E3728689F /* AnimationKeypathExtension.swift */; }; - 6BE4B832555B3FB32C2854A933EF5E8E /* DDLog+LOGV.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FFDD175562EA9E04F00CB58EBF9A6D7 /* DDLog+LOGV.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6C3CB2A3016E06B0C80D7859A39AB4FD /* EditorToolOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23F9CE86B59F74334043FA327497FA4A /* EditorToolOptions.swift */; }; - 6C56558199B60AB6A4090D2F4ACE67ED /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6A24FF0DA7E2B9D9E7D6432F783172 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6C71098ECC662C8B37BDA8243820F070 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C77D66DCCBD20AA11966F53C867FF4FB /* Accelerate.framework */; }; - 6C8F51544B7FBA7E98A28A644A2A4395 /* Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FB7CFB34CBF3DE8D9065DC420ED9447 /* Diffable.swift */; }; - 6C988731931639D9E205C5B286385982 /* count.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4912A79A08146F11C569FC6DA4735C57 /* count.swift */; }; - 6CA9456A80528FE611303867B289BE1C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - 6CAB59AA86D67BD46B82E326058258A1 /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2208D0296FB7B05852D116F0936A6DE /* ImageDownloaderDelegate.swift */; }; - 6CABA18CE8DB786EFDA231AF69A7D4B2 /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7BCE18E08BCB73003FA4EAB713A67F6 /* KFImage.swift */; }; - 6CB9E2AE85D2F366B426D4BE356944DA /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B1FD911A7C53A5154FB7647CA6EFC70 /* Sequence.swift */; }; - 6CBD6AF70B10AE502415349AB3A22F7F /* DataIDProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E4BEB998FE521E695D73DC9BF2ECA90 /* DataIDProviding.swift */; }; - 6CEB67FA720C11B6A3D90568A24E2CD8 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 081D3FFF22883789F72BD87362697E6E /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6CEB91B9D0F79F63B220B9363D72B03C /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = AC2AD7BD30CB7339F736B669B8A956DF /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6CEC610F6C21A3717EC2E0486100F20C /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = F469E5185C17FD6B096DA1F3B7C3DC90 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6D11B5E3D02CE6F3FD35BEC9305A8D0D /* CredentialsPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE9BA9868608B0F72E0F1A2BCFA4CD6D /* CredentialsPlugin.swift */; }; - 6D1C4245850FFCCBE3B1C7AA6B945554 /* LivePhotoError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C247ABAB37F0C054419181BFC3D3E7E /* LivePhotoError.swift */; }; - 6D3071F804219E6A520372754BA9F09C /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEFCC919734F12F29D14D4BC157695AB /* URLConvertible+URLRequestConvertible.swift */; }; - 6D5C57B867317D87857E5ACC76B478A8 /* TimePeriodChain.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE42C469235FE439145DB1ED23358021 /* TimePeriodChain.swift */; }; - 6D7439D4CF0245AC4432B11BBF057250 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 6DCECAF4E87E7779497CACBBE6021E3E /* DropShadowAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A27D042C38FA3F775A3165A4F4623C4 /* DropShadowAnimation.swift */; }; - 6DD7F06F6985BCC0F95AEA9472F1A304 /* Infallible+CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CB8B56D6AF6C0096630403D14A6A2F8 /* Infallible+CombineLatest+Collection.swift */; }; - 6DE4EF429E51202F0D58FFC6BA0A929C /* YBIBDataProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF0DAC53114F5A38ED18BC9E4CFB6EF /* YBIBDataProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6DE6C7F0FA965828E4FCE687BF75FBBE /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A2333B9AC870862E2D29C8F94BF1F89A /* MJRefreshAutoNormalFooter.m */; }; + 5CF988F49F44624A4A8B02BF1CCE4BBF /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21AAE531B9EF7DB927D524FE45E5365C /* IQInvocation.swift */; }; + 5D18F9474E82C79D5CB94852FD2F2ABA /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51C4B6A72A5C25F467F679AA6756374B /* Maybe.swift */; }; + 5D2516D112A1602C01C94A875FF3C165 /* UIView+IQKeyboardExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59DF3EC3D68BB1FD12D0E26E697ADC67 /* UIView+IQKeyboardExtension.swift */; }; + 5D2B46D1F7B27E81D3526A4FA0AE1B50 /* Archive+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8363BA837F7E198BFBCA2B3BCA30959 /* Archive+Helpers.swift */; }; + 5DA9F754707804370E363E343E9221F1 /* BehaviorRelay+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 614D20EE3407F1CF8CF6E98954CC88DE /* BehaviorRelay+Driver.swift */; }; + 5DCFDCA51964B19641B53CDEEA1496D5 /* sharpyuv_cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = D9805B1AE674AAFF2B25D9BB35A39FCD /* sharpyuv_cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 5DE1E9EE872B702F012DA1E310CCB157 /* MoyaError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 596895B99E7E27AAF130D98206857EC7 /* MoyaError.swift */; }; + 5DE57E6CA0FC3C9752AA4E895D3F4B10 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB0A97444E8C7D469D5B0FF79C781D6 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DEE0A7469BAACD2EA71A8DE205D333E /* OIMManager+Conversation.m in Sources */ = {isa = PBXBuildFile; fileRef = BA50CF2B5D2F41B255A98CBFC75EF571 /* OIMManager+Conversation.m */; }; + 5DF2E03715129AA0C77ADD8BAFFBDDFC /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1059A598BA4F9CA60155BA8373D9F178 /* KingfisherOptionsInfo.swift */; }; + 5DFCBADAC7D0FAC82C84A6C8E7BF1DA6 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E2CDB0E2DB23B7E2FDD6F56D617292 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5E0A53FFAB0FDFB5668859F6A2819F5D /* MGCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F5B52F8C128A08525589088D88B446A /* MGCDAsyncSocket.m */; }; + 5E1CD661F9FC277B7E32DA348FE0DD1F /* MqttDecodePubComp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A8F1EA5A5A4DAA6EBB99FAC4B0D994C /* MqttDecodePubComp.swift */; }; + 5E558455B862C4CE21399D45C2CBC479 /* FrameUnsubscribe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC755210EE7CF0DEB9FD2F3DBDE1873 /* FrameUnsubscribe.swift */; }; + 5E686B1E1BC041BE4966F71D75978FB3 /* PhotoAsset+Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A0F856E93522334178410DBF24E676D /* PhotoAsset+Network.swift */; }; + 5E6BFEA8AF2EE6BEEAEB1BE2346A33AE /* Documentation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 2FFC90957F5D67E24F21D774D7AA39C2 /* Documentation.docc */; }; + 5E6D9B41BAE736924F76FF8CED634AE4 /* TraitCollectionProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE120212B6286301289F194C73D0175F /* TraitCollectionProviding.swift */; }; + 5EA055EF73E9639BBE8A176CF6167602 /* OIMManager+Login.m in Sources */ = {isa = PBXBuildFile; fileRef = D63FD645FB3FE4E761A51B32132ED16C /* OIMManager+Login.m */; }; + 5EA7CEF77748C6745DE0713024E68039 /* ConfigurationGlobals.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BEA2B127E818A0484E4A0EED9286EF5 /* ConfigurationGlobals.swift */; }; + 5EE23E0B4A7175D504F4C7E20505DDE7 /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCC5AC3823AF1F18738C22FBEA8154BF /* KFImageRenderer.swift */; }; + 5F09107998BED88EC6FCDFC5305031B1 /* String+SHA256.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0BC8E970B9984DFA602426BCBC66226 /* String+SHA256.swift */; }; + 5F45735DF355530CC955066D3C007E19 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A4A6EECE7B81CAF7FDDD1978EE7249 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F6AAEF831D378F4E6A3FF51825ED87A /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 15C41B1F75E0AE177414264D43A54B7D /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F73B8422D7F873146B63613F05D2059 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 75AA059908618543FD7A7E7DD4C6BEAA /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F7A8BF1C3C7E701CA9E83A6A749E804 /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58786133E8B41F9CB8F1338AF6A58900 /* Catch.swift */; }; + 5F81D7B4079A62D601FB3264F3E526C0 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F995FF505792148D15A05FD9BEEBD27C /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 5F9A72150ADC8769E1E28AD550D314A1 /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = D47AAA9B971BFF2F0C01320573159825 /* SwiftyJSON.swift */; }; + 5FC38C81C52F349565DA5EA2A63E5C5C /* Mappable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95E8FA08C357760274FBE094F7121F08 /* Mappable.swift */; }; + 5FDC4239F7B651092BF582D0F460BAD4 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = EBAC8E57DF4784F9DECD58863EA59EE5 /* UIView+MJExtension.m */; }; + 6134C81E38AE47AE5DFE0B0B1E6C3380 /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A42061DFC6E2B374C142A8DB9B3289E6 /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61461B0D9D7B81C3F8D24066D9A19DCE /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = C85509D11138B3103A30250316CBE2D6 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61507E402F1F7C58BF119995A0479A22 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 394D94A4C79F8E0EE3A26D9204D6DC3F /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 615435C7081677EE9C7B30E52B6FE1C9 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = A57A3781B2D11ED00B067F77C51CD911 /* UIImage+ExtendedCacheData.m */; }; + 617E7F15F79A3A5DF83B334AAC78E41C /* AssetManager+AVAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27CB1D6F3889BFEDD86BF0A7F0C55EFB /* AssetManager+AVAsset.swift */; }; + 61857C821395B868C65A8FFE4DA1B4E3 /* MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD8508309633303254E1D0D64DC2DF9 /* MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61A3DA271E425F1B43772BA3649F8425 /* ISOFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF9289DFE96B0D477395C1AE2E955C29 /* ISOFormatter.swift */; }; + 61E2F6FE736F568F36926985FE3C7A80 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3856AE45707685922FEF462D919D7B /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 61ED64340371AB30B936A019C22C376D /* UIView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BEFFF17F16298B1DF23F0FD66D7EADA /* UIView+IQKeyboardManagerExtensionObjc.swift */; }; + 6201F1CC44EDDCF8F148A9C7B4781C34 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E5340CF5421A590D1A25C045077BA8 /* SDImageGraphics.m */; }; + 626865A3EF3A6D4A97808AFAF335BBFA /* LottiePlaybackMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B6958855F647734EBB24E8340EEC38B /* LottiePlaybackMode.swift */; }; + 62B90C6FC83F91F91A4BF12022C7B050 /* UIView+Parent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28EC7434D8007BC07802B27B8D6FB1A8 /* UIView+Parent.swift */; }; + 62DFFFA4BDE24874632B3B498C6BE2C7 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 103BCD5D91A86629DA7A02BC546D632F /* SDImageCacheConfig.m */; }; + 6321B6047A2176553365F6367D1C4BDD /* DDLogMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF85A1017DE15A4101657601A4C5A16 /* DDLogMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 632D509D4BB36A746609BBE86A643440 /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAA1C252AB5B246A0A86CC016441BE5E /* Scan.swift */; }; + 632D8A65110832A6FB8BAA12CBEDD566 /* UIView+IQKeyboardExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84315F79BA3DE29DC734A52F0D9418E9 /* UIView+IQKeyboardExtensionObjc.swift */; }; + 634EDF12A3BC3BED298B2DC6E2A000D3 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 808C026501781567CD3AA43ABB6D5AD5 /* PrivacyInfo.xcprivacy */; }; + 635C4536301F19B49DF66A23969A9D15 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DE422219528B0F8C044E9C23AC7E206 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 6377643B1FEC4330947E1DA0BC971FBE /* AnimationContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BE3802244F0F467A022E91DB6B2B712 /* AnimationContext.swift */; }; + 638F2273D87A721B52DBE6CD24E60CB2 /* UISlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17213D82F9306746169202894B0EAD94 /* UISlider+Rx.swift */; }; + 63A8CE0CBE0ADD489C20A0D7F51FC1A5 /* TextLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63B4C977FA84E6204CA76F7CD5A2E079 /* TextLayer.swift */; }; + 63E1B3AEF8C51B72351EA0E978E131FB /* EditorController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFE15059268A18A5A2987D96995CCA9F /* EditorController.swift */; }; + 64308875A4ADBE88D2C76D622FACF1D2 /* YBIBAnimatedTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C0661ACD87A5C3E6324F3D7E16411DE /* YBIBAnimatedTransition.m */; }; + 644D53AECC6A137FB73F210875551EF7 /* NSControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7B9D50DDFEECB6C6DE1EAEA0BC8ABE0 /* NSControl+Rx.swift */; }; + 646D5CDC2EB30283ACEBFC0AEDBF75CD /* palette.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B1B4DA4C8FF18FC71780D40B4D6E64 /* palette.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6483BAFF84F868056DECD840E8F9D359 /* CustomPathAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4CF735786E6DCCDD3EC08F8BD99569E /* CustomPathAnimation.swift */; }; + 6483D6F6B26818AE1CEDCB90AFA6B22B /* ignoreErrors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FD132A96BC176A0BD3C8AB88344FAC5 /* ignoreErrors.swift */; }; + 64B7F47DDA02615D2E0C7A26DD6761C9 /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35D06090901658DC9635ABC2BCBFACEE /* CombineLatest.swift */; }; + 64CC18C8B38278628CCA1B8D4E0631DE /* UIView+RespondersObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = D20EDFE87D7E3E82F987FC08A4F00CEE /* UIView+RespondersObjc.swift */; }; + 64E1CC958AA43AC1F27EB7AC00496239 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = A06B171ACB56AD93E1BD1EBEF5864588 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 65531B806F8327DD184D7A07D74829E5 /* UIScrollView+reachedBottom.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA661D4F822BB9E46CE4E3531131BCF2 /* UIScrollView+reachedBottom.swift */; }; + 659FC93CF2E7E3959D6A4E19F12D4FD8 /* LottieURLSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59FF368F95FB6496AE29853E9BA5BD14 /* LottieURLSession.swift */; }; + 65B58399187958BF83B8D7AE27101FD2 /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1620B77332357059766C062C7334E3 /* First.swift */; }; + 65E1C640FE8331BF45094B2A6A66BA05 /* AlbumTickView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F42108168E3827DDBA4CF6555E2306D /* AlbumTickView.swift */; }; + 65F629E1E7896CD05D7DBDB31719F92D /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75CFF08BA767C49703863DFF96165154 /* Queue.swift */; }; + 6628A73EB3F4DE1C02C8E057E9327BF0 /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 767C6D24F65E9C5553D193CDDA8BAE82 /* Sequence.swift */; }; + 663698A6CE77790999079FA690A29902 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F7C7512CF2FDDA57441C76E292DFA54 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 66AAA871D0FEB3988852B5D7952ADE68 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 66C98F9CBC310ABF9199767F97CD0D06 /* Editor+UIImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F75E2A009040E7C88B0F41EF87FC7B /* Editor+UIImageView.swift */; }; + 66E62D8247E22A3B50148739B610C704 /* DDTTYLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5CE15E8B1EC758E154A3D6D0DBB372 /* DDTTYLogger.m */; }; + 66F024DCBE9C5AE50FD48FE6876D5DEB /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = B87219E2EAC813A4BC04BD1792CFAEE4 /* ResponseSerialization.swift */; }; + 671347F24D9FDFA45AC894760A275E23 /* YBIBDefaultWebImageMediator.m in Sources */ = {isa = PBXBuildFile; fileRef = CA1127638FB310D5F12AAE25ED25158A /* YBIBDefaultWebImageMediator.m */; }; + 6728C0424CEE44AA9D3CE04848A99706 /* AccessTokenPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = B576EDF7A86415CCC3E2A8821457526B /* AccessTokenPlugin.swift */; }; + 6739B9085488745EA197B1D58F789BD7 /* DDLoggerNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C58BD4112BA7365B046A10EC59B716 /* DDLoggerNames.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 678EDDCD6ED116BC5100C5924A9BB0C6 /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 477AB1A71336EC844111AF30835E2B70 /* DiskStorage.swift */; }; + 6795DC52B0A601D81E66EA32B743DFC4 /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1264E6B84B65131BAEEAC3BA08283C42 /* SerialDispatchQueueScheduler.swift */; }; + 679CBDF30126442DC86B51F7334D5818 /* Archive+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A095D9FE603AEF527B68874E180B2A0 /* Archive+ZIP64.swift */; }; + 67D1A6D90F2FA281D46D5A902DC57F82 /* curry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 231246BF2A5913AF9CF769DF47AB7806 /* curry.swift */; }; + 6815F83EA9B7321CCD853754F859FCDB /* VideoPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA9EC52758D4E3583A39B592710F605A /* VideoPlayerView.swift */; }; + 682DB56C577287486871A296ED0BBED4 /* LayerTextProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFACA4AD88EF25B756AD0FDF375677F3 /* LayerTextProvider.swift */; }; + 685573DE5F3B2F837EAB992129C06732 /* OIMManager+User.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C2E793CB5C9B430F36FE3573B5EBAB4 /* OIMManager+User.m */; }; + 685CB5FF6C164A33D25A02BCBDB4E608 /* WebPProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFDDE473595828D6E2632E61085FBD8B /* WebPProcessor.swift */; }; + 6868DF039B2BBD8A30C5FC9F404AD719 /* BehaviorsConfigurableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB37EDCCBA41B0C9641257E086DC8ABF /* BehaviorsConfigurableView.swift */; }; + 68C8CC790FD5CB13EB2631917A0A683B /* TransformOperators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33019DB9E82E9B11DA3C4C5B100E7390 /* TransformOperators.swift */; }; + 68F4885E04AA995D1E8FB8B28E0EE3F9 /* AnimatableSectionModelType+ItemPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C73556EF652E6AAF642783546B02DB0 /* AnimatableSectionModelType+ItemPath.swift */; }; + 68F5FB238662CAE753DDBC9E7DA89855 /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 859AB61AB5CAC4F8321CE1373C70291B /* Reactive.swift */; }; + 6925B90AA3C1D38A83202C2609F7C3F7 /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A4BFE94DC6BB805A8659EF7C8C4D022 /* Infallible+Operators.swift */; }; + 692B37D44CF7B495DD9E1FE3177692D3 /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 540AF0A1A3033C4B8E1EA0CD46426BD6 /* DispatchQueueConfiguration.swift */; }; + 69345CBCB31076EBF8A2C5885AF973AB /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2ABB2AEB2CB29DE8F616DDE208CB10 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6941289A9343A4DD3B746BBEA4F1AB04 /* NotificationCenter+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9026790117C43E79599D121A106C2214 /* NotificationCenter+Rx.swift */; }; + 6944CE1C5E07D8DACCDC8DFEA4934AC7 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 46A6A76613C60A158BED1E4B71FF5A5E /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 697D2AE2F0BF2F0C76AD53397FC66A29 /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12AEC4022B4E74BA76823EDA45EF7B0E /* UIButton+Rx.swift */; }; + 6982C676E5EA5D0EFDF7E13FE8747A9C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 6989DB840B86F4E1507C836814F8A35F /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 616CBDDA5612B517A144C40409DE85D5 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 699ECA87C4D5F7C18A7D473DAFEF5A02 /* PickerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104AB2BBDAA118AB5B3EC43FCFB764A9 /* PickerConfiguration.swift */; }; + 69AB582F7B619D2BB667DB19541AE066 /* DDASLLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 216E0D99EA559AD8E578C6AC676FFCBE /* DDASLLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 69B74FDF7C33B63E60F97F0DA06AA999 /* StyleIDProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE7C96DF1255DC3006CBEA26F1C9BD7E /* StyleIDProviding.swift */; }; + 69C938D0947A9B1BC57063E62FD6FD80 /* OIMSimpleResultInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C4C7C3A5F449BC7B132C23B891237D99 /* OIMSimpleResultInfo.m */; }; + 69E18ED7FA1CFA345EF5D00B7ABA156B /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 82E48720FDE1FD73E9188821ABBDEB63 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69E353C99C6EEA3C93CCF2E526460B9D /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F84E727F70A15E83B7D25FD1B1473F30 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 69F6B98B0F745F5C0D40E5BB813D3358 /* EditorToolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BEE403D1E699A5CEDB82263240DDC64 /* EditorToolView.swift */; }; + 69F72FE9F2E27DB15981E62CF31AD23F /* GradientFillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C79119E0FD1944C9FBEC3DBA813288B /* GradientFillNode.swift */; }; + 6A78A39A6B1CA7D9DA8ED7EE0DAA5E32 /* YBIBToastView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87DF08BF0E16E2F0B672516B99521229 /* YBIBToastView.m */; }; + 6AD5356A624519885BAED049B683EFDA /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E5BBE340E41A5864BF05B58060A75F6 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6AE82541A8951A34AF43A20E2622CFD7 /* PhotoListCellConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50A29C91398140EF644669A498986A8D /* PhotoListCellConfiguration.swift */; }; + 6B469D8584D94A1E7A2B749689A56555 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7D90B17797653D7003F3F7A500E74D96 /* PrivacyInfo.xcprivacy */; }; + 6B8B861CEB17FF5AFE9600DA45E45915 /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110065EE86084581A6832FFCF7A27380 /* GroupedObservable.swift */; }; + 6BA0AD20FBC3135653D0191F4CF3CBCF /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 240B3E67D8767688B64A581BA5949261 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6BCE7872B0E75FF5B7CCDDCCC8587571 /* AnimationKeypathExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FE1963B6D2F054A9E8BFAFEB6F716FC /* AnimationKeypathExtension.swift */; }; + 6BE4B832555B3FB32C2854A933EF5E8E /* DDLog+LOGV.h in Headers */ = {isa = PBXBuildFile; fileRef = 749621F3F175B83BA32CAE04C651F4DF /* DDLog+LOGV.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6C2B82F5D82AF2E6A5AE58529158BB1C /* YYFrameImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4C1E7106CBA77D0D297129D49B1EB3 /* YYFrameImage.m */; }; + 6C3CB2A3016E06B0C80D7859A39AB4FD /* EditorToolOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 015B5597E8B9F59CF0D5FAE133C17DEF /* EditorToolOptions.swift */; }; + 6C71098ECC662C8B37BDA8243820F070 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0CD73578573AF5AD46B0F08EBEDF1A5 /* Accelerate.framework */; }; + 6C780F3D2186743F9015C2B1AA6ACD7D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C0BB4CBF6048C1CFAA8CF2FA39D85DDA /* PrivacyInfo.xcprivacy */; }; + 6C8F51544B7FBA7E98A28A644A2A4395 /* Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83A09F42FB0A0DEA3C2CE28C6C23CCF /* Diffable.swift */; }; + 6C988731931639D9E205C5B286385982 /* count.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BC19FD29586F1661E5FB91599DACA72 /* count.swift */; }; + 6C9E4124129EBA01A46BC58D63017EC3 /* CocoaMQTT-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5630C95267C5EDAFCAA18472484F8E66 /* CocoaMQTT-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6CA9456A80528FE611303867B289BE1C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + 6CAB59AA86D67BD46B82E326058258A1 /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE508651E5E549F78249BDCAD16BFD32 /* ImageDownloaderDelegate.swift */; }; + 6CABA18CE8DB786EFDA231AF69A7D4B2 /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80B2C73E9BDABA3F11BF3DB85DAD250A /* KFImage.swift */; }; + 6CBD6AF70B10AE502415349AB3A22F7F /* DataIDProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11335B714622306F91A1F2FB8E0B3186 /* DataIDProviding.swift */; }; + 6D003B1C03E4B62C6AC86FB2BB8F725E /* IQKeyboardToolbar-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E2853814085998597B40FCD6FF69185 /* IQKeyboardToolbar-dummy.m */; }; + 6D11B5E3D02CE6F3FD35BEC9305A8D0D /* CredentialsPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3C89B6D5952E42BDB087357BEDAAA88 /* CredentialsPlugin.swift */; }; + 6D1C4245850FFCCBE3B1C7AA6B945554 /* LivePhotoError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EB177B7132DB39C91B6B2D930AA7F6B /* LivePhotoError.swift */; }; + 6D3071F804219E6A520372754BA9F09C /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BE1232171B86E58A95A465EF0D69CEA /* URLConvertible+URLRequestConvertible.swift */; }; + 6D5C57B867317D87857E5ACC76B478A8 /* TimePeriodChain.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4457220F18221DEEE691C455779CA75 /* TimePeriodChain.swift */; }; + 6D7439D4CF0245AC4432B11BBF057250 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 6D83B5DBF22DBDFCE140413476DAFA8A /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 658B6C4630AA41F05C5A0BE18A041CEE /* ScheduledItemType.swift */; }; + 6DCECAF4E87E7779497CACBBE6021E3E /* DropShadowAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C224AC4EDC0D96C8B5598D7A2323510D /* DropShadowAnimation.swift */; }; + 6DE4EF429E51202F0D58FFC6BA0A929C /* YBIBDataProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E17D7BAA52A7884B7F49C0C06778BF7 /* YBIBDataProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6DE6C7F0FA965828E4FCE687BF75FBBE /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 805779FF7031E298D79B68E54C435A67 /* MJRefreshAutoNormalFooter.m */; }; 6DE9FD143CBC24075601F8FE2ADC4115 /* IQKeyboardCore-IQKeyboardCore in Resources */ = {isa = PBXBuildFile; fileRef = 6E897F35E5E27028AC58B14B552FBC8D /* IQKeyboardCore-IQKeyboardCore */; }; - 6DF9A1A26E26014E7551926E7329F1F0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = E867074B27E8FABABEB3A062C89F10C7 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E39129FC8643A70C276801FEF4C280D /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54A3F0BF75389BB6C8ACD25D8C0B04B9 /* Constraint.swift */; }; - 6E68FC477FEBC6BAF22C2ABC21F62A84 /* Moya+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D30F72ABB0E7C0638BD31E4CE7840A3 /* Moya+Alamofire.swift */; }; - 6E7D336428FAD21BE6A3046D244BC324 /* LayerImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95443C107F9AEEA2EE018985A7D23387 /* LayerImageProvider.swift */; }; - 6E9233B4A51BFFED8A71D58974E57907 /* zipWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 500A5FEB2506800042D1146A691F3EAA /* zipWith.swift */; }; - 6EDA5B695F14F2B532938BE2674D05E8 /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = A124C9F3769D0065B20BB49855542106 /* CombineLatest+arity.swift */; }; - 6F3DF877B76370967A98D9AD07034607 /* StarAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACC3F849100B4177C338AEEF424E627F /* StarAnimation.swift */; }; - 6F4524BF074768E280C5DB1C52526814 /* Core+CALayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33ED4054AFA9102DE2DFF8413FBF3767 /* Core+CALayer.swift */; }; - 6F8930FFAF904A41BF75A50959EEF897 /* AnyValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 616B42C1149DA62E1819065E55738C44 /* AnyValueContainer.swift */; }; - 6FA5A945327C97415DB959CF13AB9241 /* AnimatedProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44EBEF9387307DC81A32EFFE81F6035F /* AnimatedProviding.swift */; }; - 6FB928F2C18CD7FE791401D03C22E042 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 75FE13F045D517683751F241C2D07B5D /* SDAnimatedImageView+WebCache.m */; }; - 6FBC34FC7F89A9E1E79E967EE0633A31 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = BA191322E165A18078EB558F6D18F31E /* SDImageCacheConfig.m */; }; - 7048639AD3CDF1D671A76A1AC765417D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 7061BE5F19AD1E8E28E2497349144D3C /* VideoEditorMusicView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB887A9561D276DB34EA50EEE4EC12AC /* VideoEditorMusicView.swift */; }; - 706FFD08EBEB41ECFBD99F46227A31B9 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = AF41612EEB9F8E1B8A0A9496A63C2391 /* PrivacyInfo.xcprivacy */; }; - 70E45D01B4F165CEC6D941B21E13E9CE /* MaskContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E64F4612761F1A967A05BC539DAF105 /* MaskContainerLayer.swift */; }; - 71068243F1848F01355B5EEE22082CE7 /* SGQRCodeLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 045E796AEE22999EA4184E68E9B7F8E5 /* SGQRCodeLog.m */; }; - 71394FEEC6AB26B0E6A4EF0A6ADC3EC4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EA7E04CEEC7A79FB05E2DE3DAE634DF4 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7139F90D349424DD12EE4D4374EBBC08 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9223CD5E46678235221233277EDFE02D /* SDWebImage-dummy.m */; }; - 71538A1D21015F459964BA625D5EE90A /* NSObject+MJClass.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E618947B25509EAF74A486F71C3AD21 /* NSObject+MJClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7168A1F86699F21734478EC9596F0D74 /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835D71EFA384E013530022C4ED5D6DED /* NSTextAttachment+Kingfisher.swift */; }; - 717812EFCFB61B9D6A80AE866FECA714 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8B0B4D9A47EDA4FB888829AF560CD8 /* SDAnimatedImageView.m */; }; - 71B9937590A242996BBC55C011041FD7 /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE79DEFA3AD3E0BFEA7198576E92711C /* ScheduledItemType.swift */; }; - 71CB3CA886AA53B7F5E81581D5E519D1 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 21951539AF1191589E265213E6B8D31C /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 71E9499597534DDCD5262F96DD4C8873 /* URL+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA284AAEAD628F6B638EFC01ADF2225 /* URL+ZIP.swift */; }; - 723EC21501A85E196324BEC7B75E3A15 /* Core+PHAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2109F7F661446DA12643DCACFF4078C0 /* Core+PHAsset.swift */; }; - 724F464814668A050CC7066026C57B9C /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2DDA3D7CBE2D21345D27AC7AF3D8B6 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 72A1A7BC05EB7651BE8BA9908DDF4554 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = BB26D67793EF0FF90678F9F98CE61847 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72AEB15AED3CA88476A4A696F953E6A0 /* VideoEditorFrameMaskView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F085795F289B5BEEE1A9F7E1FFCAA53 /* VideoEditorFrameMaskView.swift */; }; - 72B3AFC351B26D4D98EC25F8E5B789F9 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB84D16310CC6D943255E049A9E9D77 /* SDWebImageDownloaderRequestModifier.m */; }; - 736ED5555F3EB058898EDDA945932D0A /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = D551093E45236015C327AE4B9BEA862F /* CombineLatest.swift */; }; - 73B104332534CE9139D2DED3DCEADB0D /* IdentifiableValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1729A5C0BDDB7D06AEBD8894DA5153F /* IdentifiableValue.swift */; }; - 73DF1AF944E538C09126158F3574FA9A /* DDContextFilterLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C27FEE1D4334F4976A5F419C24858EB /* DDContextFilterLogFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 73ED4CAB43E4753F59CF2291BC5242A0 /* IQTextView+Placeholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A67326A62BBF7678EA70AC35CB159929 /* IQTextView+Placeholderable.swift */; }; - 742FB40D98E583B7925ECAC31C78818E /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89492CD7805184F37D66C74AF64E60D5 /* LottieAnimationViewBase.swift */; }; - 7434AB2486CC0054C0D29F6B56775A94 /* DDDispatchQueueLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E53F7946D28A4A15CE8D0B0AF85E2C /* DDDispatchQueueLogFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 74372ECC9D3E665CCC3C25EB989D1487 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 29F796D6472EA6FC82B038C97ECF4785 /* CoreGraphics.framework */; }; - 743D34D0DFEA436F0807159B76CAF039 /* RxCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = E33CB738E9BEF4C5E064BEB48D7C52D1 /* RxCocoa.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 74545FB0FFB10990E463C78AB00D3DF6 /* ShapeItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EBAEB62E0BC6BBD2A99A9FFC0297E16 /* ShapeItem.swift */; }; - 7459DE7076415F8D7E00855B8C142273 /* AssetManager+Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 428BD599C962D9E479FAFFBC60859CF5 /* AssetManager+Image.swift */; }; - 74714664EA6A6A0178114C1570835B66 /* OIMManager+Message.h in Headers */ = {isa = PBXBuildFile; fileRef = 97847B9AE08AA8C0D6CD270E39CDC0E2 /* OIMManager+Message.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 74A10EDE721BF734BB30215C5B803D23 /* PhotoEditorConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 690512071EDC44B3B6B7DAC39FB28E74 /* PhotoEditorConfiguration.swift */; }; - 7511BD0DB532C7E3B5044892A20131A7 /* DateInRegion+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A843D530EED2334A0CD6860F27AE9F7 /* DateInRegion+Create.swift */; }; - 75531B73D5F39CB3C311AF4E73A2C893 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = C14B726FB27D2B21A55B33ADEC4ECFB9 /* SDGraphicsImageRenderer.m */; }; - 755B26DBBA7E3D69A1652CAFF74173AD /* ObjectMapper-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F420C010C7336A4B964E0E4223E96D7 /* ObjectMapper-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 755D9CA16B51789C4BBEB377F7DE65FC /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 705E66B46D3FB6C3860039695FEE7E45 /* PrivacyInfo.xcprivacy */; }; - 75AF74177E7ED7AC1D58E789784A38D2 /* BaseAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 165FC294BFD8A65FF438D6516CD19815 /* BaseAnimationLayer.swift */; }; - 75B018D32C8A344D1CFDE4B192378DC5 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C53081C00C8A2D5E4DDB3C986037310A /* PrivacyInfo.xcprivacy */; }; - 75C483C0603EBBE2B7C91A7014B80E5B /* TextAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA153F1787B4626C642F61ECE6F84F95 /* TextAnimator.swift */; }; - 75EC448869A0119287D192B8AA564E84 /* ShapeContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84A69E76676E2422A40553AA70F4B9AF /* ShapeContainerLayer.swift */; }; - 76093F5DC66264C840C4883B35499E82 /* partition.swift in Sources */ = {isa = PBXBuildFile; fileRef = F491CDC277C6297CED0F4DB7FDB3B7D1 /* partition.swift */; }; - 7625435D29FEA6C65763AB2C045DA476 /* MarqueeLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 938E1CDDDC030960A63016E0B7190652 /* MarqueeLabel.swift */; }; - 768D33C2F3127E74E8A1EECFE3FCF6C1 /* Differentiator-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6C39A78E34CAF91FE894770A29339E /* Differentiator-dummy.m */; }; - 769B4905AD35AD554AA9DE98DA8E4E11 /* IQKeyboardManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B5A3802C70E5FFA3157414C2F2DD188 /* IQKeyboardManager+Deprecated.swift */; }; - 76A8EFC057455679D223E762AECCCF3D /* Combine.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BB070EEA28E7CED98A5D3FBC546B2023 /* Combine.framework */; }; - 76B4853D7AF9B16FEC384DC383D90838 /* DDLogMessageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F94877CEF3C20AB5A2BC7EECB7F447 /* DDLogMessageFormat.swift */; }; - 76BF116C44CC99B086526ED8A19F48F5 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 35940441E1F35674BCA1B41D098A3ED3 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 76C8BE0DB8DE9BFD4D551465F246B2D5 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7C2E339CA969D2C5ED74BA6ECD6F69EE /* PrivacyInfo.xcprivacy */; }; - 76D446B97B0D2FA97975C830469C615C /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = AE3A29EAE2AD084E9A58744CA01CC32E /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 771CE2A036FA11F4B146E7CD81415142 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D831646F1721D18E9CB61D78B92424 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 772CF8E9CD02ECA4275B6173E2110E80 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = F214D9285BDD834DE0F15BEBB695D5E9 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 779AE3203BE594126E5F5C1BD1AF210B /* catchErrorJustComplete.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF1A17DE9613A991E0CA0C68744B81D6 /* catchErrorJustComplete.swift */; }; - 77EC03B0F9D4FF3F96A18E8B1B6235FE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = EDE1FC37AA6F040B0AF72E17C31A9E4D /* PrivacyInfo.xcprivacy */; }; - 77F1B40C21EFF28350EDA6A12263B098 /* IQKeyboardManager+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5A54FE569BE26DE8F8FABCE0B34BC75 /* IQKeyboardManager+Appearance.swift */; }; - 77F2E509688A124F02FD040516154751 /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1490DB57DB8A1ECD1F3411B7761EAFD /* GraphicsContext.swift */; }; - 780D2766CBC5DA2645C9DD412C55A583 /* RxWKNavigationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5000C74964362967707C8378D889444 /* RxWKNavigationDelegateProxy.swift */; }; - 780F45F347C399D58601EF11FA024C98 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1E36184832E3BA860B6D06AC2293606 /* Utils.swift */; }; - 7835057D36DA67BEE422DC82F5598510 /* RxCocoaRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 631D1F2FC1CAC25B4FC1DC7C9550FC6B /* RxCocoaRuntime.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 783B9E8FC29F6D7EA20051F03D0EADCA /* TimePeriod+Support.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B34EDD0EC5E729369F40418B69FA49F /* TimePeriod+Support.swift */; }; - 784EC876ED7D0E61BA1D1D5B6FC080D3 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = EF1552FB2882AE6292A41E0FE732D03B /* SDDeviceHelper.m */; }; + 6E39129FC8643A70C276801FEF4C280D /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = D270B58C52D873E88FE7A688C880CC47 /* Constraint.swift */; }; + 6E67A4985A0D1F75DF8A4ADE6E9317F0 /* sharpyuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 777F31EBF8D1DD8526D7F094EE35DAF4 /* sharpyuv.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E68FC477FEBC6BAF22C2ABC21F62A84 /* Moya+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD78BC3B9444626883C4206C4B606F25 /* Moya+Alamofire.swift */; }; + 6E76E5E1CDE5A04EAEB9F75A173F24F9 /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75705F5AA04E07912B9A7028B41CC240 /* ConcurrentDispatchQueueScheduler.swift */; }; + 6E7D336428FAD21BE6A3046D244BC324 /* LayerImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BC67518006B19DC55658D20E4359695 /* LayerImageProvider.swift */; }; + 6E9233B4A51BFFED8A71D58974E57907 /* zipWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63881AFB6BB011EFCF1252118D2C46A8 /* zipWith.swift */; }; + 6EEC267E5A4D42DC73361B1417C34E2A /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 17067DED77C9D2CFC9CF625FA24F832B /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6F0838C80554CA46CEEC7CFFBA26B9E7 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = A0219DE9E829EB25509BB1E2C6F67F4C /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6F3DF877B76370967A98D9AD07034607 /* StarAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C37E9B0A2752CD48FC43FABF09C7B745 /* StarAnimation.swift */; }; + 6F42B4D96019FC7A8EDE1197A01E9488 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 12D2895B84AB9CF7B83ED11129E9C360 /* UIImageView+HighlightedWebCache.m */; }; + 6F4524BF074768E280C5DB1C52526814 /* Core+CALayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90B5BC834A2DCAECF1A45B2A40BF12F8 /* Core+CALayer.swift */; }; + 6F6C920A3E7AEF236B703D2FBA728320 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DDD2C1AD91FF951A9A5F3D2E8D0913F /* SDImageGIFCoder.m */; }; + 6F8930FFAF904A41BF75A50959EEF897 /* AnyValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0B37D9643E310BBA7496A4FE4A9FC48 /* AnyValueContainer.swift */; }; + 6F9D0DA8753977B211234613C24F41D1 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 645B1D036F396C3C31884CF44074CB01 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6FA5A945327C97415DB959CF13AB9241 /* AnimatedProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAEA5657079E5ED6EC6D28C57EB4C2BF /* AnimatedProviding.swift */; }; + 6FC8633F5F4D6B865FB5C871A83185B2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 5625B9E2F5C57D4695967DE287CA1547 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6FD0DA95919ED8881B7F221D6A4D3B63 /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 570E6DBF4A44E5546A3C965D9E18073A /* SubjectType.swift */; }; + 7053223F22305B4166BD83EFC451E575 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C9E8A9D320DDF6866142EBCF0AB17D3 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7061BE5F19AD1E8E28E2497349144D3C /* VideoEditorMusicView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67B8A8567DA6C52E64E59F0E24001910 /* VideoEditorMusicView.swift */; }; + 70E45D01B4F165CEC6D941B21E13E9CE /* MaskContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D3AFCC822EA201EE0774A79F8B66DF7 /* MaskContainerLayer.swift */; }; + 71029A5C5D8B9D12FBCF8461459E95D1 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3419BDD44F6743C4AC46FA04B2350FAF /* SDImageCache.m */; }; + 71068243F1848F01355B5EEE22082CE7 /* SGQRCodeLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FD7EEBE586F6B453B12A099DEC36BF7 /* SGQRCodeLog.m */; }; + 71538A1D21015F459964BA625D5EE90A /* NSObject+MJClass.h in Headers */ = {isa = PBXBuildFile; fileRef = CA1E32AF2B6B2E567E088EE3153CA7E8 /* NSObject+MJClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7168A1F86699F21734478EC9596F0D74 /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E2E8E4E7D7E410B6C94E5C4C0C3DC04 /* NSTextAttachment+Kingfisher.swift */; }; + 71E9499597534DDCD5262F96DD4C8873 /* URL+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0483E62BDF02CA0C3DE38D03FC2505C6 /* URL+ZIP.swift */; }; + 723EC21501A85E196324BEC7B75E3A15 /* Core+PHAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = A50464F051FFAD36C579BF994F2EE62A /* Core+PHAsset.swift */; }; + 72A04EB4528FFEE0D1E75AFFFB59159E /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92ED2EB695BF51A59A9309EFCD8B7BAA /* ObserveOn.swift */; }; + 72A25A5054A18E2686A42633ECCA296B /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 924B109D0B5D6A53163A686247653238 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 72AEB15AED3CA88476A4A696F953E6A0 /* VideoEditorFrameMaskView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C10122837DEED57398C463CC0F8E4EB4 /* VideoEditorFrameMaskView.swift */; }; + 72F46AF65F99A2D2D1D4040A6A7480D7 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 6286DBDC946A52B1E86BC5F2EB20BA19 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 72F7783C7C45D4D19CE96B5060EB75AB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + 738AEC4CC699BFBA787CFC9F4EC9B200 /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FE743B0489172B9D8AFCA90B825A0C6 /* SingleAssignmentDisposable.swift */; }; + 73B104332534CE9139D2DED3DCEADB0D /* IdentifiableValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = E41C167A42094403E6D01F0C012B89B5 /* IdentifiableValue.swift */; }; + 73DF1AF944E538C09126158F3574FA9A /* DDContextFilterLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = AB391B254D2D6498DF8E0C3EED6102BA /* DDContextFilterLogFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 742FB40D98E583B7925ECAC31C78818E /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A6B00582C6F5360841283FCA163063F /* LottieAnimationViewBase.swift */; }; + 74304A8524CDF980583FB8550F47990C /* IQTextInputViewInfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 184F947CEF38F5F5A56AAC37D7C72109 /* IQTextInputViewInfoModel.swift */; }; + 7434AB2486CC0054C0D29F6B56775A94 /* DDDispatchQueueLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36150B9A092CEA623ED750B37621BEA4 /* DDDispatchQueueLogFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 74372ECC9D3E665CCC3C25EB989D1487 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFA273262C05031D86CC3431CFFA95B7 /* CoreGraphics.framework */; }; + 743D34D0DFEA436F0807159B76CAF039 /* RxCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 583B4C6A567749AA875BA86DF64F5671 /* RxCocoa.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7446F81DD35C285BA22BC4DC085DF6AC /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7C11B2A9E8F8B341AEA7B362E23E7E5 /* SubscribeOn.swift */; }; + 74545FB0FFB10990E463C78AB00D3DF6 /* ShapeItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = E589DCFDF4CA763286693D5151E8C2E7 /* ShapeItem.swift */; }; + 7459DE7076415F8D7E00855B8C142273 /* AssetManager+Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = A653B0A60B5E5A8FEC71EC7CA4A3EB5F /* AssetManager+Image.swift */; }; + 746AE37FC215D00A060089B21B1D22D5 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 37248EC9C1A753806439CCF5D8B1413C /* SDImageAWebPCoder.m */; }; + 74714664EA6A6A0178114C1570835B66 /* OIMManager+Message.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B525A296261CA1942BF343253871F1 /* OIMManager+Message.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 74A10EDE721BF734BB30215C5B803D23 /* PhotoEditorConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5D8900915140D4712BA5E20E7EAA3D4 /* PhotoEditorConfiguration.swift */; }; + 74BAD1E9F4E576B92615C0600E2F851F /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9E55D135AD87DB4E17C237AFECE26C7 /* Range.swift */; }; + 7511BD0DB532C7E3B5044892A20131A7 /* DateInRegion+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = F35C928F53F26BC77F3325C5C0D4FAB7 /* DateInRegion+Create.swift */; }; + 75166BBBCEB03EF71AF8D26E2B4DF828 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F422D9CF7F73BDD80C55E658E8103F /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7558BB04C3278ECFE185A5E982CEBEA9 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 910B1455FE142F868DB22A1E2D94066D /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 755B26DBBA7E3D69A1652CAFF74173AD /* ObjectMapper-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F8D243AD8458EB2B14CD5EFB786D3A /* ObjectMapper-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 75A2501E025111DF48E6662F4C8163F7 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAF3240D5C6054FC9088F120BCC0AE61 /* Empty.swift */; }; + 75AF74177E7ED7AC1D58E789784A38D2 /* BaseAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AC29025924C23D539E1D1221AC29A60 /* BaseAnimationLayer.swift */; }; + 75C483C0603EBBE2B7C91A7014B80E5B /* TextAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = B402B8425EBB730BFC58AEB36CC52226 /* TextAnimator.swift */; }; + 75EC448869A0119287D192B8AA564E84 /* ShapeContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E9D7F05983C95E168849B51B28EC29C /* ShapeContainerLayer.swift */; }; + 76093F5DC66264C840C4883B35499E82 /* partition.swift in Sources */ = {isa = PBXBuildFile; fileRef = F966211AE623F7F0393C7F5139C6CF61 /* partition.swift */; }; + 7625435D29FEA6C65763AB2C045DA476 /* MarqueeLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F98F9817B280E58C08FC6A1993D49FA /* MarqueeLabel.swift */; }; + 763E4D8F18AA1796E333DC9678D424AE /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FF5C188C69C55F5F58943A32C6A5590 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 768D33C2F3127E74E8A1EECFE3FCF6C1 /* Differentiator-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3676B48C2F610BF5A549DEC0E3237259 /* Differentiator-dummy.m */; }; + 769B4905AD35AD554AA9DE98DA8E4E11 /* IQKeyboardManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC3074255B9B2BC12ABE3CC218759254 /* IQKeyboardManager+Deprecated.swift */; }; + 76B4853D7AF9B16FEC384DC383D90838 /* DDLogMessageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 238363420B18595D15E9E84CC3740DB3 /* DDLogMessageFormat.swift */; }; + 76C49441ACBD4BB270E50BCFA217F7BF /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E924404F18EF5B2BFCF943AB82366720 /* AssetsLibrary.framework */; }; + 76CE298CA63BD9C98E75949D0B77F12E /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D70119D576DA10861861869B0B91C91 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 76FB685C2887CB339EBE9C0A6E75120A /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEDC7B7D5DFCC3D589C9258A53C79C1A /* Multicast.swift */; }; + 772CF8E9CD02ECA4275B6173E2110E80 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD14D0F84352B2B3E7EEA1BB4CAA493 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7752B9B3776841659476CF994354E9FE /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DD4EB9386FF12834E44BF449F92FC4 /* decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 779AE3203BE594126E5F5C1BD1AF210B /* catchErrorJustComplete.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C8C4047820D21477920765A198889CD /* catchErrorJustComplete.swift */; }; + 77B41C6CFE0B92758119A593633C0233 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C8BB5332F80E96E8D6A4B4D6AA10A0 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 77F1B40C21EFF28350EDA6A12263B098 /* IQKeyboardManager+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 530D37E6D2B62B3C6E8375CD070A1ED6 /* IQKeyboardManager+Appearance.swift */; }; + 77F24BC228EABC6538B11AC83E85336A /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F4E13F07A961A441A6054F294E1167 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77F2E509688A124F02FD040516154751 /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3959D145FD2E8F762316E0F5B249252D /* GraphicsContext.swift */; }; + 780BC2D085C2534DADCEA83A9E68790C /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A29BD49A7C76A70FC93ED9BBE634D6A2 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 780D2766CBC5DA2645C9DD412C55A583 /* RxWKNavigationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60CA0BB648C2262B78659DA12DD51A2F /* RxWKNavigationDelegateProxy.swift */; }; + 7835057D36DA67BEE422DC82F5598510 /* RxCocoaRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B0158484445E6EEDCB488111857C96 /* RxCocoaRuntime.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 783B9E8FC29F6D7EA20051F03D0EADCA /* TimePeriod+Support.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97AA22B3EFF347E5FA01A0D40617FA36 /* TimePeriod+Support.swift */; }; + 785E695163038FE0296501AE72DF1BAA /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 011E89E515BB464178D2AD0A6CBDC760 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7873F2F89CD0A435FAB776BC27BFB56A /* MJExtension-MJExtension in Resources */ = {isa = PBXBuildFile; fileRef = 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */; }; - 789892D13F1B6E6FE9185800742E9744 /* NetworkAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6588BE6EAD95A062EAD65E4406523B33 /* NetworkAsset.swift */; }; - 7902D28FC9EF5AFEB452F508C7F266B1 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6675C0D3C3E1B217343679BB2C28AF0F /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 791636D3DCF9FF81AD061E5CF5D6F051 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C47797CF83C8275EB25B782A05E26C0 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7933EDD15F245D28BE5D99E203E9BD1F /* DataStreamRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9258CFF7C85CF79A431C334C91C49A73 /* DataStreamRequest.swift */; }; - 794C6C6B3223E089FE0D3C21D1F9F0A8 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B77DEB6A390666DF68E81ADE12F1BED /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 794F87F9E0A8E4DCCF52A73F1BC75428 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D6D43780E33C2CDBD9719B5CA9CD786 /* SDImageIOCoder.m */; }; - 79527BDA19BE542F4B62E5D951075845 /* ImageCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E6324703E1125DF8EE3BBB0953D938B /* ImageCompositionLayer.swift */; }; - 798802F71E005751FEA1036DC398B9A8 /* UploadFileCallbackProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C0CF0C62F67692E4295190EE91E610F /* UploadFileCallbackProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7989A6E79BFA78440C39F568D972305C /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 22363CA9E38F55410E8D888D617320B3 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 799E114493E31733F2D953450BF82EE8 /* Popover-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B555B1099D99D8615619FD3085B9D500 /* Popover-dummy.m */; }; - 799EAD4947C3902EA490A7282B738C25 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3A95178FB209B1FAE668822F7A4DEFC /* AVAssetImageDataProvider.swift */; }; - 79B1CABB3DCACAEABCDA3AA0E35825C0 /* DDASLLogCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = A9717FEB35D2D2F9A59EC9D64C1C3CAE /* DDASLLogCapture.m */; }; - 79DF74409328C4173E4C3678B2E8E0BF /* OIMFileElem.m in Sources */ = {isa = PBXBuildFile; fileRef = A1603778C0EE3DA3ECCBEBA945D3B01F /* OIMFileElem.m */; }; - 7A070D739AE17B0FC405F435CECE8D21 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E3FE23EA4FA88C546AC8A32561D0DF2 /* Disposable.swift */; }; - 7A232A8D5C0D06F3CE373E1B46422118 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13B22DBEA0599B8AB9BBE81DB9E9144F /* AFError.swift */; }; - 7A2DDEA900883E39D33468469FC14AEB /* ImageDownloader+LivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C0DBF3930B6D9B41590221ED28D0ABD /* ImageDownloader+LivePhoto.swift */; }; - 7A366C79F00849F36EF83F0B31C68A6E /* OpenIMSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = 92848CB8CEF981C9B3BC395EEC10733C /* OpenIMSDK.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7A5F65ACADE9EDAD0E8D456AF59DB812 /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30AA8EAC742EC556E68712FF9D8F74D3 /* Using.swift */; }; - 7A6EB833C39BF53C8B4C64F15128E33C /* ShapeItemLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 598460A5DF3B56203B29D01ECAC0F8F9 /* ShapeItemLayer.swift */; }; - 7A80DEB95ED22729738A514B448AD383 /* OIMManager+Group.h in Headers */ = {isa = PBXBuildFile; fileRef = 44456B4A49FD97858C88390117FC8890 /* OIMManager+Group.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7AF516B98D45391B909D507D0244104C /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E2E823642914FC324B9D6472E687E6F /* ConstraintDescription.swift */; }; - 7AF75BB2106ACF6BC8DE4FEE402752CE /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD3394AEB6113760F63CD2C8E55F0743 /* KeyframeGroup+exactlyOneKeyframe.swift */; }; - 7B02F11607469A3D3728780A829138C4 /* _RX.m in Sources */ = {isa = PBXBuildFile; fileRef = A70960A456CC7B878B6BE0A13B941DBE /* _RX.m */; }; - 7B0458B6E9002963B57B5E8DB56B33B8 /* TAAbstractDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = 990707B203C5928699E7AAADC40C85D6 /* TAAbstractDotView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7B0F1B3ADC6D72E1122F13FADB2D8E2B /* RxCocoa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 294F945132A96401D8BB6AF1EE6285E1 /* RxCocoa-dummy.m */; }; - 7B0FE4A214ACC60D219ACBBD0342C47A /* ignoreWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D84E9F9F6E555A1543E50A0B611DEE8 /* ignoreWhen.swift */; }; - 7B20820FD55F1B574D96C1631ABE247C /* IQKeyboardNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 14ECA25FAC580BEAD24A7591921B4905 /* IQKeyboardNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7B2207E5EC5C2444D016C4786FB34BA4 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BAFFADB6718043647FA05D94FD3860E7 /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7B5D343693DDF40635B24CC18C1C1DE7 /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DE4D17C8433A44E4298C409C0D34F11 /* Buffer.swift */; }; - 7BB27838B6FA938E9983A5EE7E3B3197 /* Bundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4132CF769C59E4962F728199F4EFDCCB /* Bundle.swift */; }; - 7BB7EA40D98983D92AB8521EC43AC6D2 /* SwiftKeychainWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 301C9D054BD58240F500E205344E5E3C /* SwiftKeychainWrapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7BC2B90C110F500D157D106CC41446A8 /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F1D204D6DDAB229B632C8DE0C49CE0B /* CompositeDisposable.swift */; }; - 7C0E703E6FA0DE4C0E4CE1A52FAF925A /* TAPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = FC4E893F753ADB394FE8F1C9F855C83D /* TAPageControl.m */; }; - 7C25A19B6C5DFE20A5A04612709550F7 /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37C4D8AE7174BB9A4533DE44B3F11254 /* ScheduledItem.swift */; }; - 7C5505A2D3F2A697A5F324787061F4B7 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 003BC8561F8A2CDBE8792BA3D972D3B4 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C8D5357287A3F34A0F2CD2BBFC29270 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5E0EBA29568C35DF864FAF6CBA4DD6 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 7CBA95E07A492F7311C7DD8EDF0B4172 /* IQScrollViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34C85D236A09B50BBAE08B7FB20C1142 /* IQScrollViewConfiguration.swift */; }; - 7CD84F8DB695AC43A57E884C2171560B /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 9FB522F4C7C47BA527C5E509E78B4350 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7D17BA44B25E3454A909743A209EB017 /* AnimationTextProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9AABB0BF024C76A2F4778A8BF77E9BE /* AnimationTextProvider.swift */; }; - 7D42390CDB4FA147504B03DA2A174A0C /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = C669EF21008A80A60B3840300815827B /* ConstraintViewDSL.swift */; }; - 7D76C5A4BE2360D06B9E3652DA94B346 /* Infallible+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D5ECA710EB149367627C0ECCCD88F67 /* Infallible+Bind.swift */; }; - 7DC113D969DC1E84FFC1454EBB4A1C39 /* LottieAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CA6F39A42F8F26B1001FC6ABA7D43B5 /* LottieAnimationCache.swift */; }; - 7DF2E0F22556196056EAAF14AB93CC8D /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAB4CD456F6B33E249E6EA4B26455EBE /* DistinctUntilChanged.swift */; }; - 7DF4855DCBE2691D7348F8E654F5960D /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA02D6C631F6C170C069CABD449F276 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 7E10CEBAFF194EBBBF7915CD771FEAFB /* AlbumListConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06A671AD153C13287C7F5677F7728291 /* AlbumListConfiguration.swift */; }; - 7E10E1468D6B6AAFF07B3904477B5236 /* fromAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5581B1DE9E573F96230513861EAC652D /* fromAsync.swift */; }; - 7E478F8BBF9619E0B9E7B6F12A292C27 /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61262011F1BCB5A4C30594748F8200D5 /* Timeout.swift */; }; - 7E64667C414AB0AA1AB5A09DA40A443A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 7EA170EC2916A83F249D0095D4B0CEA0 /* DotLottieFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6B612D76BB12D1DD8A1C1714E48765 /* DotLottieFile.swift */; }; - 7EBDC64932A33B97DDA070B75EB2B6CA /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66F6E82115C5A0AA962FAE21C21F7884 /* Bag+Rx.swift */; }; - 7ECBAF7FA4FA7C6D82BE38F135514996 /* ControlProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA420F3649A7C98C2CEB39098100D80B /* ControlProperty.swift */; }; - 7F05B3C942C46A787CB0C2DE9AC12A80 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C02CFAD272BDBFF03F29BA64096B6F3F /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7F134BE7BF9163F75F7F84556BE8A69D /* EditorStickerTextViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6C485474804F77A7EDCA1DE1FA325B8 /* EditorStickerTextViewController.swift */; }; - 7F46110E24BBC89EB44DD11BE3231C68 /* YBIBCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = E8E3080423B25BF6C6075F57320D28B6 /* YBIBCollectionView.m */; }; - 7F52F9458A7051EC57CFEEDF97F4C5BE /* StringExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBC49F1BCFB02AB1359A624A65AB5824 /* StringExtensions.swift */; }; - 7F5C48C2188D40013C6138EF2F912F57 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E75BE039ECDC5C98B1B3366AB223FFE /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7FA8C78DB021A7731D30D80C102DE042 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ED0D149F401AB63D52DF294E59B0FC1 /* NSObject+MJKeyValue.m */; }; - 7FADE3B72EDEC6913DC839D679C7578F /* OIMSearchResultInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = BA124264AE4D19CCA7B7B57D21302619 /* OIMSearchResultInfo.m */; }; - 7FCA0B78B97499DE69A9A096C5EB1D86 /* LottieAnimationSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BF5D4957693B5B5DBC61FAC96B2CF23 /* LottieAnimationSource.swift */; }; - 7FCED58A456951FB7579DA3DAE904546 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E25AB29490F32DE655534A02FF32EA /* encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7FDE5BBEB2E3E5E79A686FB6F496E566 /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9C22CBBE02969A90F816D150A20E9FF /* KingfisherError.swift */; }; - 7FF50219077B6B6DEBA2F63EE87C3781 /* YBIBLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC22F1149C5A3255693D354900D95EF3 /* YBIBLoadingView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 80372663D72D043CE915E2A0B14620A1 /* TagView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3789559DC432ABA817A4958988A7DE5 /* TagView.swift */; }; - 803C8DBF8B2FF6B70E15E0B31A992827 /* OIMGCDMulticastDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 36E652E445F8CECC432D298A13A78229 /* OIMGCDMulticastDelegate.m */; }; - 80721615C3658BF57B31FA699F19E9B5 /* OIMManager+Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = FB4ADEBB4D4F0969EDB1E98FD06BD24A /* OIMManager+Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8094FC31D39D05DD242F6D843FB6EEE6 /* OIMSimpleRequstInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = EC75BE3FA4A00604568829C9FF27AAAE /* OIMSimpleRequstInfo.m */; }; - 80A8D44E274367AA97A804B3BEC264A5 /* SDCycleScrollView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 62416DA404529EE5F12AC66820968A42 /* SDCycleScrollView-dummy.m */; }; - 80AF897681B86918BCC4B85FD2676530 /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9B1C90D6A160806DBC532F191101F7B /* SingleAssignmentDisposable.swift */; }; - 80D44B08D71851B8F27FF295206E99F6 /* YBIBVideoTopBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 7462F84AB2989D3A2675AA6CA2CC540B /* YBIBVideoTopBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 80DD2E734D11CDE781980ABCE13B3C11 /* Fill.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3672AB437DFA2D3DB0B46CE5363FFC21 /* Fill.swift */; }; - 80FCE4E2E998026ECEC85CF2A3454783 /* DDMultiFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E17ECF721B2913CE636674C037654C6 /* DDMultiFormatter.m */; }; - 813BB877E336A2F38E4E220D082F8557 /* PointValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31C067D5AA45DE8118D9B9C303CDF1C5 /* PointValueProvider.swift */; }; - 813BE4C96A6D39C13EC50C6CD164F0AF /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0211CECFDC73CE25407A46059C53DB42 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 81480680EC2AD2EFB65E4B65D0AD3CE2 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BC30D019482F4221FF633E550DAC417D /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 815F81676EC04CD9DEB40AD4F7B019F6 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 41FEE0B7FFF23C3578AAA6B48F10FD1E /* SDWebImageDownloaderDecryptor.m */; }; - 819103BC96962A22E6BE5C481415EAA9 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D6F3E223EDDA7BB3F9C466B9984E79C /* InfiniteSequence.swift */; }; - 81A5635CEA2AD9623E30CAE9AFC3BF65 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 956D08303C546C8822DB0DCBD148CF06 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 81D6F749095B82F5316CF87AB04F53A7 /* Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE864E35FBE5668BF392096A7DF58B8C /* Operators.swift */; }; - 81F0C9CCF30EA684BF7A7112AB0AE9FA /* RxCollectionViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01AEFB1EB3A914C86593584A77C0FA77 /* RxCollectionViewDataSourceProxy.swift */; }; - 81FD0195DA3077411FCD0751E7CD5FE1 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = A1A4FD150E8969054E33120D391A51C8 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 820CAA6F190BDC09EAA1C5F937A1A5EB /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 991D1386E3E848056EA3B4E051FE493E /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 824AE53036AF89BA4BCD1B667B49C424 /* Glyph.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D85C068680B34A7EEFF48F7268DD710 /* Glyph.swift */; }; - 825237AF1EFB2268D5416A7AD88E01ED /* Array+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AED70B7B68386C79189CD6256E14B99 /* Array+Sort.swift */; }; - 826286B050F92B77538F437DA962D9B4 /* RxSearchControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2778EBCEEC14C4833D44342D5C11AD81 /* RxSearchControllerDelegateProxy.swift */; }; - 8274C142B267ED628A56BE49ABC1AB42 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DA807B3AA45AE66EB8FD6744357C386 /* SDWebImageCacheKeyFilter.m */; }; - 82A5D07DC330993BB604113DC0635FE3 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - 8365B48A40FED7FB9CBBDD87D5062679 /* LayerProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79EF22CDC01C744BFA86A491B88C628 /* LayerProperty.swift */; }; - 83A4F2816C1B3F072E1A26A34C3BC4AC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 83BCE1D9A0402A956C96D8F2A370452F /* ControlTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DEC4D97314748FED89C51384E90F8BB /* ControlTarget.swift */; }; - 83DD0AA04C87293B8F9578D7D2754187 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 8405137716A5EE714D2B9CB5880FA105 /* MapError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227FD73B3C6B806CCAF3C3B7499D12D0 /* MapError.swift */; }; - 8427A2B8905686251B6DEC1152C41087 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = BF160B94684907A47F9B8E3E019F60FF /* PrivacyInfo.xcprivacy */; }; - 849FF90CD07B763B0D53DD4656BDED61 /* DownloadRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD95EF9454E3F53ABDBC35194ED025C5 /* DownloadRequest.swift */; }; - 84B31F08AD0AF1654F0FD7EB6D1E4F7A /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B114F0B8206EEAB6F552D7C4F863ED /* NopDisposable.swift */; }; - 84EE59925A7B0D31258FFE7568AE9646 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5190657508F7147ACBE8B04917D52D6 /* LRUCache.swift */; }; - 84F295B31499AA8D1A5DF8170D194231 /* KVORepresentable+CoreGraphics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F139EC6DC9A823AD2A7358AE25AA685 /* KVORepresentable+CoreGraphics.swift */; }; - 84F3F943906105FE27ADCB8177D997CC /* OIMCallbacker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E47F234141A9130E3D666C798E5329B /* OIMCallbacker.m */; }; - 85178BBF04D011E1CF3E694283E7821D /* DotLottieFileHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA9838D5568CF08D46DA7E59F8CF6C0D /* DotLottieFileHelpers.swift */; }; - 8581686902C37D5297216E88B7C16E7D /* UISearchController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 763E77216C850D70057D326B4A6BA473 /* UISearchController+Rx.swift */; }; - 85AB23275E9D19394969235E5DC2300E /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D09EEE16CE8246F2F7548E87067C664C /* MJRefreshHeader.m */; }; - 85BAE6C5A2152C5027285C2FA1B94A76 /* WebPSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 045476BD81F43A7E4D35CFDD204660D7 /* WebPSerializer.swift */; }; - 85FB57F2721CB076972098B50085D2D7 /* Transform.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C753919F581AE643532B0D59A3E5D3 /* Transform.swift */; }; - 85FE8E61C5EDD8A9B9DA98B8B4A9F208 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F376FE855AF22F30019CB36BAA7A1E8 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8610B646ACB327434E1072AB24241FC7 /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C1376FC7BB4470F53E0603A9A7FC1AC /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 865204DCDCE67F9B7735B54BA393ACE7 /* SchedulerType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92F5E3708E512F20F2F3931DF742408D /* SchedulerType+SharedSequence.swift */; }; - 866A2B75DB39B049EE20D82B29296628 /* Defaults+Observing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E521769293502BCC89258E2797104EC /* Defaults+Observing.swift */; }; - 868A9F524A7985BDA1EA124D9BF4CA63 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 270430691446D7F2AA48696D223B3B36 /* ConstraintDSL.swift */; }; - 868DC78BB40F54517815D2C0CA1754B6 /* CloseButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D70F2602168F1347FB7D9F6E7603D10 /* CloseButton.swift */; }; - 869413419A22C3834700E726484CAFDB /* IQKeyboardToolbarManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D825F64A76320E65FD8969C6C63148B1 /* IQKeyboardToolbarManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 86ADEC1D9102F901343EFCB62D423D2E /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EFE005BE578C2D2E402895822FD412B /* SDDiskCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 86B6A957BA4D1D0CAB44A4FF6D40A179 /* AppearanceStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DC2D83167741CC204B2EC3E267BCF7E /* AppearanceStyle.swift */; }; - 86B7946E6E92C0BB75E233F860B24D60 /* OpenIMSDK-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D6B2C759FB92C7CAA19BAEA2B83D076F /* OpenIMSDK-dummy.m */; }; - 86CAB01D950C8BC35EDE0BDC01A2500B /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E4F0EB967D731167573C0D43015BE39 /* ConstraintView.swift */; }; - 87237FAFB6D6B0EAC112691A9AE313EE /* PhotoPickerBaseViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12E98132350361407F1F060CAF282D79 /* PhotoPickerBaseViewCell.swift */; }; - 8776A15F0B57061AD901F2C9FA6E378B /* SolidCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27B83BBA92B0D0F145F36F867F55084C /* SolidCompositionLayer.swift */; }; - 8780C16C073E1E6CBC8FC372F0B224E8 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 0846B8700232494BFCEC5F1561A0AD7C /* SDImageGIFCoder.m */; }; + 7876A95068846D36B8F1BD14365B69F0 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CD66401597E7952E4DE53DEC58AC4941 /* SDWebImageDownloaderOperation.m */; }; + 789892D13F1B6E6FE9185800742E9744 /* NetworkAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CF53606678C5355554CEAF86E72A88 /* NetworkAsset.swift */; }; + 78BD0F8D256532CA562E15911B11F746 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F2C997ED187FDEF21DB00D42F13F8ECC /* QuartzCore.framework */; }; + 7902D28FC9EF5AFEB452F508C7F266B1 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F307E5CD7860C4F016E1F43A2267C932 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7909FCB28ECBECC829CCBDDC60E65519 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A797C3A031E57AFC7DDC1C885765D6 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7933EDD15F245D28BE5D99E203E9BD1F /* DataStreamRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD34B51B09467734D0CC3DF50AAD4BDD /* DataStreamRequest.swift */; }; + 79527BDA19BE542F4B62E5D951075845 /* ImageCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6A8BD0B26710BD33082F2BBF5BB724A /* ImageCompositionLayer.swift */; }; + 798802F71E005751FEA1036DC398B9A8 /* UploadFileCallbackProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = FFEF543AD54697BFC217DAF8CAB97D91 /* UploadFileCallbackProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7989A6E79BFA78440C39F568D972305C /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 72BC2659EE479F1DEDEA53D93AC18285 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 799E114493E31733F2D953450BF82EE8 /* Popover-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CDA05AE0A1D88DBAE40E62638BF3C8A /* Popover-dummy.m */; }; + 799EAD4947C3902EA490A7282B738C25 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5262A8466C222B81F01152B34DA64A09 /* AVAssetImageDataProvider.swift */; }; + 79B1C51D421DBBC538D8F2644E89C570 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = DE742566AA0F5FFDE0409CF795E414D7 /* SDWebImageIndicator.m */; }; + 79B1CABB3DCACAEABCDA3AA0E35825C0 /* DDASLLogCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 5057B056546FEDFFD71C7FFDC03FF7D0 /* DDASLLogCapture.m */; }; + 79B7DBB43E06A5F65799B8AB51B39A77 /* sharpyuv_dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A45467E991A7D1E26A9A9CDD47E4EC3 /* sharpyuv_dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79DA3D113B320B60C456019C2270CFB3 /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36D13BB9A77FB2ADAE7FB83B1A7DCFB4 /* Zip+Collection.swift */; }; + 79DF74409328C4173E4C3678B2E8E0BF /* OIMFileElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CAE77C1FDFE55D88382565774039932 /* OIMFileElem.m */; }; + 7A232A8D5C0D06F3CE373E1B46422118 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6AA4F5CE1C7962178B6099FA00101B4 /* AFError.swift */; }; + 7A271B71FDDDC1BC3FF970EDAD5E98C4 /* CocoaMQTTReasonCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE18999B476D598F337EE1381FA8246C /* CocoaMQTTReasonCode.swift */; }; + 7A2DDEA900883E39D33468469FC14AEB /* ImageDownloader+LivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6870CA7016A7BB8E2033FD030B292EC /* ImageDownloader+LivePhoto.swift */; }; + 7A366C79F00849F36EF83F0B31C68A6E /* OpenIMSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = 140B90127F8284D9D202F085B0596ECE /* OpenIMSDK.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7A6CA3F362C73E128D9A1227F9B73A38 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 524F638285FA3A2ABDFCF6B787490342 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 7A6EB833C39BF53C8B4C64F15128E33C /* ShapeItemLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF265D01BCDF891475E8B6CA021874DD /* ShapeItemLayer.swift */; }; + 7A80DEB95ED22729738A514B448AD383 /* OIMManager+Group.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FBDEBE2C4E628598655B74A3137531 /* OIMManager+Group.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7AF516B98D45391B909D507D0244104C /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BE3ED2D55A51CE30D6B35A81EEDBF70 /* ConstraintDescription.swift */; }; + 7AF75BB2106ACF6BC8DE4FEE402752CE /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4047E809A4658ECA83A30E6061F84DC /* KeyframeGroup+exactlyOneKeyframe.swift */; }; + 7B02F11607469A3D3728780A829138C4 /* _RX.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C4D23E4B97E5589131E460C9DAE5009 /* _RX.m */; }; + 7B0458B6E9002963B57B5E8DB56B33B8 /* TAAbstractDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = 158C77258A2351E9D3B6E93C28100672 /* TAAbstractDotView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7B0F1B3ADC6D72E1122F13FADB2D8E2B /* RxCocoa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A6B3C05E2A7710AA4BB0C9B83E2BF36 /* RxCocoa-dummy.m */; }; + 7B0FE4A214ACC60D219ACBBD0342C47A /* ignoreWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF0B8DBB8BE630A64C34C16B1D7F8343 /* ignoreWhen.swift */; }; + 7B16DF8E517A9D80875DDD95B4F57C12 /* IQBarButtonItemConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D230BB4BBC629C4AD808FB6819CFE89 /* IQBarButtonItemConfiguration.swift */; }; + 7B2207E5EC5C2444D016C4786FB34BA4 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA02FA0E65676F5516119114719BAB8 /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7B262866D0FAFCAD2B5470D3A35748B2 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = D151E0C0C8749B59E1D6C1C422EE6C7F /* SDAnimatedImageView.m */; }; + 7B6BD3EA8747935609B6204913A6F0A1 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B89A1A86F8CF99FF82A13D16543577F3 /* SDWebImageOperation.m */; }; + 7B845572152301170E2CDF0BE542D870 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 7BB27838B6FA938E9983A5EE7E3B3197 /* Bundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22CFA28D77DC2B2A44D160C4087AC3B7 /* Bundle.swift */; }; + 7BB7EA40D98983D92AB8521EC43AC6D2 /* SwiftKeychainWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA65DC4296085382ABB031FFD4FDBAD /* SwiftKeychainWrapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C0E703E6FA0DE4C0E4CE1A52FAF925A /* TAPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = EA130CD648B85D56FD604CD251FFD940 /* TAPageControl.m */; }; + 7C1B11171AC88076494FF044DB0D4BAF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = C613E0A1F41A822EED765247AC1F954D /* SDAsyncBlockOperation.m */; }; + 7C5505A2D3F2A697A5F324787061F4B7 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EE6E36EA8058AD2A1D0CFBC154558690 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7CBA95E07A492F7311C7DD8EDF0B4172 /* IQScrollViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CD16763011689F5599A9449C0100867 /* IQScrollViewConfiguration.swift */; }; + 7CF2A972F2443BD1B774F8330E12FE50 /* CocoaMQTTSocket.swift in Sources */ = {isa = PBXBuildFile; fileRef = 603CC2BA472D5C652471FA248F2568B8 /* CocoaMQTTSocket.swift */; }; + 7D17155B34A28B6119D81475F1E57324 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CEFAFB0750B061594184687C298B8099 /* UIView+WebCache.m */; }; + 7D17BA44B25E3454A909743A209EB017 /* AnimationTextProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 380D1F16AEB20A423847C1057BF1B74D /* AnimationTextProvider.swift */; }; + 7D3F42BD41F124E613A70A09171C6DAF /* FrameAuth.swift in Sources */ = {isa = PBXBuildFile; fileRef = 550003481FF70BAFA7B39AADB487E760 /* FrameAuth.swift */; }; + 7D42390CDB4FA147504B03DA2A174A0C /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ECB7D5AB4DB61A7C722388BBFF2BCD7 /* ConstraintViewDSL.swift */; }; + 7D76C5A4BE2360D06B9E3652DA94B346 /* Infallible+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5DEF7F662508A12F2DEF686D8ED3570 /* Infallible+Bind.swift */; }; + 7D9A3C79C7741EAB604C5BBA70BA72C0 /* UIView+WebCacheState.h in Headers */ = {isa = PBXBuildFile; fileRef = 1493C734914B1D5213D92AB9DC211BA6 /* UIView+WebCacheState.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7DAFFE9CA919E4087289F8A68C971020 /* Infallible+CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAE9D676F02A2A0DAB13CF1AB99B5A4D /* Infallible+CombineLatest+Collection.swift */; }; + 7DC113D969DC1E84FFC1454EBB4A1C39 /* LottieAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993E3A197E04AE42791F78A4570F6478 /* LottieAnimationCache.swift */; }; + 7E105C0F1C97F0A9E8482988E078FDA9 /* CocoaMQTTDeliver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E88545F1377810D5192228482A9C6B /* CocoaMQTTDeliver.swift */; }; + 7E10CEBAFF194EBBBF7915CD771FEAFB /* AlbumListConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17D7819D2675E74CD46EF495115299E5 /* AlbumListConfiguration.swift */; }; + 7E10E1468D6B6AAFF07B3904477B5236 /* fromAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = F91B42E3A00BA1BA0E898C80945E1CC3 /* fromAsync.swift */; }; + 7EA170EC2916A83F249D0095D4B0CEA0 /* DotLottieFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C05ACB5044590C564E48226710D1D64 /* DotLottieFile.swift */; }; + 7EAA83C312561AB4317FD6C58187AEFB /* FrameDisconnect.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C4C77EBB2493FB7A93A2D0FB646C569 /* FrameDisconnect.swift */; }; + 7ECBAF7FA4FA7C6D82BE38F135514996 /* ControlProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = A912BE71BCC6CE5C8A4741C1D8E0D65D /* ControlProperty.swift */; }; + 7EFB074DB7112E352E4C8F16337C65DD /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 24D2D7C0AE2ECF3BEFD1763BBEF314B8 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F053BC4BC544FBA247828C7DCD7D280 /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 377728AD2BBD2505210A33E908AD69AC /* Generate.swift */; }; + 7F134BE7BF9163F75F7F84556BE8A69D /* EditorStickerTextViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DB886261132DFF1F39AFB7A34AE0692 /* EditorStickerTextViewController.swift */; }; + 7F46110E24BBC89EB44DD11BE3231C68 /* YBIBCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 23A4440664319022C5085EDC5E2C702D /* YBIBCollectionView.m */; }; + 7F52F9458A7051EC57CFEEDF97F4C5BE /* StringExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C1C877790940F9BEC52E105E2345F63 /* StringExtensions.swift */; }; + 7FA8C78DB021A7731D30D80C102DE042 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 89594ACC4AC688E569CADE30241012CB /* NSObject+MJKeyValue.m */; }; + 7FADE3B72EDEC6913DC839D679C7578F /* OIMSearchResultInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CAB2921C752E78CA55B05D3BE85065 /* OIMSearchResultInfo.m */; }; + 7FCA0B78B97499DE69A9A096C5EB1D86 /* LottieAnimationSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE979B9EDF3477B9352133C921EA1855 /* LottieAnimationSource.swift */; }; + 7FDE5BBEB2E3E5E79A686FB6F496E566 /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8461B294FCAEA798CE2751EEA8891991 /* KingfisherError.swift */; }; + 7FF50219077B6B6DEBA2F63EE87C3781 /* YBIBLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 98CDBE58C4CEDB9BD1550333B927C91D /* YBIBLoadingView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 80372663D72D043CE915E2A0B14620A1 /* TagView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81F7D3FF1C6A6BA4CF4343A1D488E223 /* TagView.swift */; }; + 803C8DBF8B2FF6B70E15E0B31A992827 /* OIMGCDMulticastDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 423264E105440A0186760072DCD20FCC /* OIMGCDMulticastDelegate.m */; }; + 80721615C3658BF57B31FA699F19E9B5 /* OIMManager+Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B97DC75EF7EDB859A6C3C461EDDE5B /* OIMManager+Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8094FC31D39D05DD242F6D843FB6EEE6 /* OIMSimpleRequstInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B1B2B7ADF26863573179177D46607DB /* OIMSimpleRequstInfo.m */; }; + 80A8D44E274367AA97A804B3BEC264A5 /* SDCycleScrollView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9BBAC281B464444D34803B8EA62BC18 /* SDCycleScrollView-dummy.m */; }; + 80A92B7601FF8D498B9A6C7824BB59F4 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = D483DE2B67FB68CEE562CE2EA924D7A9 /* UIImage+MemoryCacheCost.m */; }; + 80D44B08D71851B8F27FF295206E99F6 /* YBIBVideoTopBar.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F238C824DC5CABA2405329173D8675 /* YBIBVideoTopBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 80DD2E734D11CDE781980ABCE13B3C11 /* Fill.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3712A5FE54262D3B1DDB054BC62A6930 /* Fill.swift */; }; + 80F2DB3E5E7E2694D29F0576A8CAD40F /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 442AB6262AFA4173559DD94C6274239F /* SDImageHEICCoder.m */; }; + 80F9FB96B47328A2F7369446F6355C11 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 046A2C352C7F998A7D82B6A41E402562 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 80FCE4E2E998026ECEC85CF2A3454783 /* DDMultiFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 106AF6327F7C20B1A3C440871893FEF9 /* DDMultiFormatter.m */; }; + 80FF01F0BA48E8E5FAA6413ACEE166DD /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF7AC93836316D77CDFA574E1609FB6B /* ConcurrentMainScheduler.swift */; }; + 8131DFF80EB0CFA6C572076DAB2F1473 /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F89B5CA6977567E0293D9A72DCB921A /* SingleAsync.swift */; }; + 813BB877E336A2F38E4E220D082F8557 /* PointValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF009A9EF803941B4308E2E0875AA35C /* PointValueProvider.swift */; }; + 813BE4C96A6D39C13EC50C6CD164F0AF /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6735ECE031BB18EA5077C548DFBD3B /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 819103BC96962A22E6BE5C481415EAA9 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA453413AE53C58DA619D0B966B41FC6 /* InfiniteSequence.swift */; }; + 81A5635CEA2AD9623E30CAE9AFC3BF65 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D77213A7C4320F6008B30A82AE41CE /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81D6F749095B82F5316CF87AB04F53A7 /* Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE26DEC3493C62F248963D1C42788E9A /* Operators.swift */; }; + 81F0C9CCF30EA684BF7A7112AB0AE9FA /* RxCollectionViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D0927FACAB8AFC0577E10CE3E51400C /* RxCollectionViewDataSourceProxy.swift */; }; + 81FC65E558B3CF7EFD2635E9B2D38478 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8157ECA13835DD29BFB8AE4885DE404D /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 820C82AC96BB3513DB5BC2D00ABDB5D4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = EBDD2EBD07F29616D00D6743544912F3 /* PrivacyInfo.xcprivacy */; }; + 824AE53036AF89BA4BCD1B667B49C424 /* Glyph.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF71F4E4CAE92E4661A148450BC4B394 /* Glyph.swift */; }; + 824D4C02186994BB3F19D1C2BB25BB8E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 088F69851DD20A7E2B4360E4B044A7EF /* PrivacyInfo.xcprivacy */; }; + 8256A78362EA6D8BCD88DBF2722A1EA0 /* Combine.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0A90D1C88AE636E67296B135530FC21 /* Combine.framework */; }; + 825F44C02EEFC300A58BBDBD1B82A017 /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = 964E1CEEC8EEF50447125EFF8F2C54A9 /* Do.swift */; }; + 826286B050F92B77538F437DA962D9B4 /* RxSearchControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C9C1726151F48CC295DA74726E495B9 /* RxSearchControllerDelegateProxy.swift */; }; + 82ABC39C71A5425186FD4FE82E721821 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 543767B9CF81EDA9400B0DF8D3EEE564 /* Platform.Darwin.swift */; }; + 82DA7F3D5A287251DB25A4FC3F19FC93 /* CocoaMQTTTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 854D2B733043533D0537C10C8D8EE81C /* CocoaMQTTTimer.swift */; }; + 82DDB13ECAAF4BC08A115696162BED6A /* FramePingResp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FE9017C4BF1888D86038C0AADE59478 /* FramePingResp.swift */; }; + 8307028B55BA31EE09799F208F709156 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = C0E35192C63708E12595F0EDB4626CC1 /* NSData+ImageContentType.m */; }; + 8330FD20F044A6BD4EE38D8E791E4FEB /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 375820DF14407C740784DFFB937AD921 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 834807B583F5FE3035045614D90674A0 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = CA33EB72D1CACE2D1D5F62ABB5C0D627 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8365B48A40FED7FB9CBBDD87D5062679 /* LayerProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97D74D3A2081E4658E8D782F0DFB43C2 /* LayerProperty.swift */; }; + 838063855EB99B02E184DC49A4D1A2DB /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E7BEBCBFE4F4167333289DF14E0C550 /* Cancelable.swift */; }; + 83A4F2816C1B3F072E1A26A34C3BC4AC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 83B53ADB64DF7A2B6C7C51EDF92B44D7 /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D5A1989D65FB214FF4699DF25DB42C /* Infallible.swift */; }; + 83BCE1D9A0402A956C96D8F2A370452F /* ControlTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E0C12AE7D6E705E0AB3F100E94BDB07 /* ControlTarget.swift */; }; + 83BE1DD5CA7DD2FBB5AE7012A78E405E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 83DD0AA04C87293B8F9578D7D2754187 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 8405137716A5EE714D2B9CB5880FA105 /* MapError.swift in Sources */ = {isa = PBXBuildFile; fileRef = D59B8B70311C2BD0CBADA376182EF9B8 /* MapError.swift */; }; + 846291975C27066CBC64574C9A91ECFA /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F4A0F3112C8A93C1B0BD8FB9E959BDA6 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 849FF90CD07B763B0D53DD4656BDED61 /* DownloadRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DD12149762F4B3855CF74E1E89307DD /* DownloadRequest.swift */; }; + 84D497365935DAADC3FA742E390E3EA2 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A830E1FCCBFF0E3E0CB9AC490BA68B14 /* SDImageIOAnimatedCoder.m */; }; + 84EE59925A7B0D31258FFE7568AE9646 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DD35593A8572CEFFF1D2C61579D97C6 /* LRUCache.swift */; }; + 84F295B31499AA8D1A5DF8170D194231 /* KVORepresentable+CoreGraphics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A88BF209F6202B0E730318470DDD8BB /* KVORepresentable+CoreGraphics.swift */; }; + 84F3F943906105FE27ADCB8177D997CC /* OIMCallbacker.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B0150E1B9B7AA3DE6394C130418B487 /* OIMCallbacker.m */; }; + 85178BBF04D011E1CF3E694283E7821D /* DotLottieFileHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE0AA3E0FC0B76C7509CA620EE4FC698 /* DotLottieFileHelpers.swift */; }; + 8581686902C37D5297216E88B7C16E7D /* UISearchController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F2CAB5804E5C6FE12F21F2E73D0504C /* UISearchController+Rx.swift */; }; + 8584F672BB094EC9E50AFB6E4C8A686C /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED3122A7683DD455BE085F8C321705DE /* CombineLatest+arity.swift */; }; + 8585AF6DFD194A19DFDC5DA017C404C6 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 52DF6CFFEA5B2F7347476A2524E03780 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 85AB23275E9D19394969235E5DC2300E /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C2E42CF6F1C4002FCCDFCE682179B50 /* MJRefreshHeader.m */; }; + 85BAE6C5A2152C5027285C2FA1B94A76 /* WebPSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2406927749C80BFC19A506CF84AFFDC5 /* WebPSerializer.swift */; }; + 85FB57F2721CB076972098B50085D2D7 /* Transform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A8C2DD3A2C1D03AAA15596C4B5EC68C /* Transform.swift */; }; + 86130A7651FCB9F51CA1A66E9DD48D34 /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 150E76117B97BF8CC0F969C82D1F8200 /* Date+Dispatch.swift */; }; + 863E7306199CE0AEF211451199BB3C75 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = AA7D8697DE6274197EF66543E7204F88 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 865204DCDCE67F9B7735B54BA393ACE7 /* SchedulerType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B17E7E86D3F8E7C697BD0F77163A15 /* SchedulerType+SharedSequence.swift */; }; + 8659421801012A5C8BCC0C73F8FF7334 /* sharpyuv_dsp.c in Sources */ = {isa = PBXBuildFile; fileRef = E740FA3F162A1BCAED41C634DEE0BBB6 /* sharpyuv_dsp.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 865C9E00F47572630D3FA6ECC1AFE3D9 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = A49A6F4E09E1DE49F95B7C7B5F769716 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8668F10311E0363DC66344D807FE3A5F /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52ED7B4D2CAEA2EACAF3CAE743DB8D1D /* UIView+IQKeyboardExtensionDeprecated.swift */; }; + 866A2B75DB39B049EE20D82B29296628 /* Defaults+Observing.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFABBFE3E23539AC8A25CB8DF205E4E2 /* Defaults+Observing.swift */; }; + 868A9F524A7985BDA1EA124D9BF4CA63 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A73073075D10A568A023F1D190E7925 /* ConstraintDSL.swift */; }; + 868DC78BB40F54517815D2C0CA1754B6 /* CloseButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 754D0F51CD2EAF6A474BED8B1704DE6B /* CloseButton.swift */; }; + 8690DEC4B00EC34DC177644594F02817 /* CocoaMQTTLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BEB8AC75C51F307499646F3B4C0DF2 /* CocoaMQTTLogger.swift */; }; + 86942D1BF6EBC7C2BA9EFB492E6AB186 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54C7EFF876F691F4BD0D240C539E241D /* AddRef.swift */; }; + 86B6A957BA4D1D0CAB44A4FF6D40A179 /* AppearanceStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95A4FDAF241C16930F812761D74FCEF5 /* AppearanceStyle.swift */; }; + 86B7946E6E92C0BB75E233F860B24D60 /* OpenIMSDK-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EDA3D12EB0F19B293CD12CD014400BFB /* OpenIMSDK-dummy.m */; }; + 86CAB01D950C8BC35EDE0BDC01A2500B /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D933D12E317B5FD83E880AB561D94EA /* ConstraintView.swift */; }; + 86DD4292A20CC25944BDB99A7FF0C10E /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227F5DE5D7F361C0109ECD6AD1FED581 /* NopDisposable.swift */; }; + 87237FAFB6D6B0EAC112691A9AE313EE /* PhotoPickerBaseViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8F15BFECC7481FF1ADA3A897CCD4172 /* PhotoPickerBaseViewCell.swift */; }; + 87560A1A80987B82CE618F24090C35C4 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 747D0903BDC62FE4C5DA5E8AA4342FAC /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8776A15F0B57061AD901F2C9FA6E378B /* SolidCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D94DD830C0433EF2212975E170A8EF05 /* SolidCompositionLayer.swift */; }; 878645F78806417B9366A830AAEDF303 /* RxCocoa-RxCocoa_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 45528F89822ACD0BFE4789411E978828 /* RxCocoa-RxCocoa_Privacy */; }; - 87A86EA4BAA4D59D66A45DF0E43392CD /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 78936EC2DBF2CF8634C0CC3581635D28 /* SDWebImageCompat.m */; }; - 87BB8523D2E944F3AF973ADCF6AE6898 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B552EFCDA8BC74439CF19FF88D4BA03C /* SDAsyncBlockOperation.m */; }; - 88105040BB0E3998C89E898BF3362A36 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 883C4B3FA7C98CA11B121BC4E0092B73 /* OIMAtElem.h in Headers */ = {isa = PBXBuildFile; fileRef = A6169659CBED06CD788319B06F6437EF /* OIMAtElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 883EDEE1C699497CF2A77C3B8A32A790 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F17F7847C169C42CD6A56A88675DE83D /* ConstraintMultiplierTarget.swift */; }; - 884419C8494495094ABE64D75CC3F90C /* Diff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61F309BD5CF7919F2B29498052D9B98C /* Diff.swift */; }; - 884F5F55420FE62C12003DECE5661841 /* URLPatchComponentMatchResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7373E895FB24690540181BFF56955312 /* URLPatchComponentMatchResult.swift */; }; - 885CC108EFE64571A6332D9FDD7A13C4 /* SGTorch.m in Sources */ = {isa = PBXBuildFile; fileRef = 884E6940DA4CC32666F2FCBF618682DB /* SGTorch.m */; }; - 8872BEB0954C0254A792469F4DBC9891 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 65CE898D2BC17EA493AD82D9EBA94F4E /* MJRefreshAutoStateFooter.m */; }; - 887ADED16D6F8697D2F654DBD6A24604 /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 486DBFE0E0D4096F665E6499011A443F /* Binder.swift */; }; - 88849EA98966A576058B9C1A27442A84 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = E1747F2179C0D6D74389870E47EF63C0 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8899CFA2CF5684F53E5DA5A6ACC22A9D /* UISwitch+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CB43A9B03D8918FD5DE9A913C744DE /* UISwitch+Rx.swift */; }; - 88AEADE841758CB25058FE66DEE9C8F8 /* PhotoEditorContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628023983AC1634CE080F49424225367 /* PhotoEditorContentView.swift */; }; - 88BBEE036CD8E65AC3FD9E3947EBC30F /* Core+URL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D32944BBFF391634E35F8A5B7F4936F /* Core+URL.swift */; }; - 88C759FC42F8AE58B0ADA29B25C01344 /* Image+WebP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17B31F06E373829C72507245A444656C /* Image+WebP.swift */; }; - 88E76DE06F81A6B173F029A37BD0BE7F /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = D22A61EEFB555B9222253E7202D107B0 /* Runtime.swift */; }; - 88F56AFF074B6F882778C33015C91E94 /* PhotoEditorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A4EDC467901C4C5FD494CCC7C2C7D0C /* PhotoEditorView.swift */; }; - 8904ED8DEB77CA657A4EED2F86EB961A /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C6DF38B89C797731652AD83F26B9E11 /* AlamofireExtended.swift */; }; - 8929ACF6C9157182F8B76FB438F0D5D3 /* NullCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FCB1FD240155B644AD7582F70744DC4 /* NullCompositionLayer.swift */; }; - 898290F3B36D3CD51ACDC340A9672E24 /* lottie-ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CFB860E83288CAFEBE347A6D5C2A748 /* lottie-ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 89930437CF8C0483FAF6B9ABA5ED6449 /* EditorStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 346BF7588267CADD317DE1D52AD7134D /* EditorStickerView.swift */; }; - 89B8DCB992493D64C31D0F2319C85CF2 /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D432C2ACB4146286EE959013FE5D35A /* SynchronizedUnsubscribeType.swift */; }; - 89C457ACFD60011F394C5BD42800BDC6 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C809857309C827761D59B9706AD5589 /* ImagePrefetcher.swift */; }; - 89E31B923A29D5465F7BA83D2107345A /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B0442B2E380011F57D531EC0553CF0A /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 89E36B8E42BD6542B8C8006612AB3163 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 547E17D5968AAA672C509552228E9667 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8A6AF1A1D8157273EEFE7E708A2C4C2D /* ValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1B5154A7E3B2A7CADF24AE27A2BFB71 /* ValueContainer.swift */; }; - 8A75F90D7F25EB93D76AD8A672680883 /* AnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 872E8E52ECD0CD6B77BAAB141EA3389D /* AnimationKeypath.swift */; }; - 8A779C3BCF19D53FEFC5BCD0C2EA0494 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D1715A4AEA9E504CD864D3449B29041 /* SDImageLoadersManager.m */; }; - 8A8E0E33B81B3AB4930AABDED36097F8 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = CEBFF121DDC08559C71E1B1D903EBD52 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8A9497651A0DB613191F10C6FCDC5D0C /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = DF48A0B567CF35580C11362739F02501 /* SDImageHEICCoder.m */; }; - 8ABE12CC6EECE1DD6B2F826F04FD4BD2 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 777510880AE0C0FEC2BF99AC49794494 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8ACAA83990FE291111877CE8251572F8 /* EditorStickerContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFC284EBBDD148F95EC62C58F49F6110 /* EditorStickerContentView.swift */; }; - 8ACE9296AA479804EFD2D3CC417DE801 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - 8B16CD2D6E27FEE950C96E3DFD04DB54 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = A23F8B3C6F7CCF478BCF4BAE56BD4DF9 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8B31BDB2762ED660B1D0A13FD3F0472A /* Archive+ReadingDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = B88D5DEAACE6FC226515037194E0A093 /* Archive+ReadingDeprecated.swift */; }; - 8B31CEDB2E6DCC2766E7DE11E1759B27 /* IndexChangeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D3D018125621B4BB8BD7ED705778350 /* IndexChangeset.swift */; }; - 8B7560712BC596AD4790CDCB38D629BC /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE5897611BC8BD2C214F2E90A0320833 /* Kingfisher-dummy.m */; }; - 8B76C03618F5FFAB32834CC24C3832EB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 8B8DE512FB2E9193A16BC295E3BD17D2 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 087EB3E92C3CE9AEF4989DC32217260E /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B914E305D4CD1DABFEB039BBCEB24A2 /* GroupInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AA735164364C8F331D4C9C21EA6F20C /* GroupInterpolator.swift */; }; - 8BABA32F7B94A25D8E9208C0A8D90B2E /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F64866AC624BC264E03015321237874 /* ConstraintMakerRelatable+Extensions.swift */; }; - 8BB4E1330084CFF09A5057180B4E624E /* EpoxyableView+SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E8F9DC1785CD80E71ADCCAC6918470F /* EpoxyableView+SwiftUIView.swift */; }; - 8BD5654E2662F6368895034E3983792A /* KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A737601D8BFA149FD0B9B4EA32208D4 /* KVORepresentable.swift */; }; - 8BDDFED41302DD7ADF441B5E8D81E73F /* YBIBPhotoAlbumManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCCADC954162C87B199D3E8C5D94DA0 /* YBIBPhotoAlbumManager.m */; }; - 8BE4081312CA9A9E19E299210C143A69 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = D313154C522FDF13B1B8BB1616A141BA /* decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8BEE7F56D2E1F2283CEC98F70ECD9E19 /* DDFileLogger+Buffering.h in Headers */ = {isa = PBXBuildFile; fileRef = 02295F2192B333D5143DEA4CAEEBEAEE /* DDFileLogger+Buffering.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8C31B34CE864C7DAB9946012B3CEA688 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18A15E6769049B4159AC23B4E203B59A /* AnimatedButton.swift */; }; - 8C41EA954997897C3E30C5754010C05F /* UIViewController+ParentContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB04F626FFD85B894E25E3C7C4001505 /* UIViewController+ParentContainer.swift */; }; - 8C6C7E25C5A24C936F81823978190E96 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = C7047394005D22EF48C06D0F8CD2813B /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8CBC72065F0261B373B958696985AF99 /* IQKeyboardResignHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A1F982C6186E1FDD481C50E8701D062 /* IQKeyboardResignHandler.swift */; }; - 8D416D8997FCE1C4EAAD230D39B817D6 /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B29F79281A6FD2F1AB20A45A56FF699F /* AnonymousDisposable.swift */; }; - 8D4AA30F9BBB8C344C48D2DC8D951E43 /* DotNetParserFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = B60F33DE3FA740B4B9EE0AD8B0619BC0 /* DotNetParserFormatter.swift */; }; - 8D51421FF478040E6383D24254900967 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F22AAF79A7B61FB53A870AA54CECA0A5 /* CFNetwork.framework */; }; - 8DB09720CD159CAE1DA1F9E2E6A0984E /* EpoxyModelProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = A132C1553C8DE2206B733C062A0E2D83 /* EpoxyModelProperty.swift */; }; - 8DDD172EA8E9E4548DFB15F6783E075E /* EditorConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075CAD90D4B9F0A4CD5758A057138771 /* EditorConfiguration.swift */; }; - 8DE0169623626B1E8E25C98D15189E42 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B0785BC93A1F0C4CDC04A31E0BCA48C6 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8DF169B3ADBCBA100BE5D2CA34EDC31A /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB37AE0B23DBB1F9D609993CCEB82AC1 /* Combine.swift */; }; - 8DFF92F12F47B1D6B9F5EE78C46FE13B /* Star.swift in Sources */ = {isa = PBXBuildFile; fileRef = B496E0B79F00C67F9FFBDAA29BD68B37 /* Star.swift */; }; - 8E04A59BA6D460441F8AAFCDCE8E8FD0 /* Archive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A5135277BD48056B6627693C1C65126 /* Archive.swift */; }; - 8E0754113F5AA8EF1DBB84D46F521EA4 /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD1638A7E851D89BA5A60B16C3122AA /* Photos.framework */; }; - 8E2CA0865DE0A2AAF339EE30A9B44B56 /* OIMManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EAF1091660C6429B118149BE01714056 /* OIMManager.m */; }; - 8E549B308AE1B5B2FD6EA4435D5252BB /* PickerCamerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9013133C38E66F88D918BAA5D7105F92 /* PickerCamerViewCell.swift */; }; - 8E563B48B53CF54E65371203515A0D66 /* IQTextInputViewInfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF496A8009AFD9E84E8B500C581ECAC4 /* IQTextInputViewInfoModel.swift */; }; - 8E5A40EB2652D32EC7F38833C460581D /* ShapeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = B37A3310A4C1CE6AF8477A9EDAF2E4A6 /* ShapeTransform.swift */; }; - 8E6FD5ED48BD0F55E0B72C5E0605062A /* ImageLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A75DA3631019C8E174047B15B8ABDEF /* ImageLayer.swift */; }; - 8EE1FB0285E02C433C5E762B13B33DAA /* FillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C6988BCE07821C58551CEC828E29088 /* FillNode.swift */; }; - 8EF9E020BC7B8E2E9276C2F32408810A /* _RXDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E299BEB764B9A1DEC98EA66D620ACA5 /* _RXDelegateProxy.m */; }; - 8F2B26A032E5F2B4F6A15A8B15A5750B /* RxNavigationControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CCA7A792E4A6A2B6109301CC66A69A9 /* RxNavigationControllerDelegateProxy.swift */; }; - 8F420E9DDBD125163B97E8F489286F71 /* UIActivityIndicatorView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E167799FA0AC9BA04FEF298D51921F2 /* UIActivityIndicatorView+Rx.swift */; }; - 8F4AC5455CDD202655025DE431360AEE /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = C90C40D569DD82664EC7B02F8B760153 /* ParameterEncoding.swift */; }; - 8F8EEB10D95D5FC6FBC08E87B2000EBB /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E8354D6F5407F2DBB7BAE63AF881072 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8FF7B6477BFA6E6ABA168E1417291D5F /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = AAED5794D1814F1E87DB3BBCE6FBE1B2 /* MASCompositeConstraint.m */; }; - 90264A40ACA3CA7A1F141D7DC7D17EBE /* ImageContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB8B31FB69DD6EE93331C2441B9893E8 /* ImageContentType.swift */; }; - 903C0676C8543A3F851A6C7CB065921D /* YBIBVideoActionBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BCADFC48E2D3683403AE676EBB1FAB3 /* YBIBVideoActionBar.m */; }; - 90614006DEE2476FC563684DD2A504A0 /* AssetManager+ImageURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20A1B6CDC1CCF4DEFD740A6FF78D001B /* AssetManager+ImageURL.swift */; }; - 90A5D35C6A35FE8B6FB2FAFAB8B8AEC0 /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19DD6665A13D1B7549BC7D51C85D9EF /* AsSingle.swift */; }; - 90AC39C3ADB425C5AC1E7F959BF384BA /* URLNavigator-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 193191BB278021F213BF3AEF417EBFFA /* URLNavigator-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 90B28F4F929AECD1B38177E9977B7F3C /* RxCollectionViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D50688D55F92F226672A561EA59EFC4 /* RxCollectionViewDataSourceType.swift */; }; - 90C6D6F36FC7F036060068E40C3FA0DE /* CLIColor.h in Headers */ = {isa = PBXBuildFile; fileRef = BD4ADD434EFB26616EA32E6982267301 /* CLIColor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 913A7FD6C80BA64EA81C7CA2B420D588 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 9170655A7E8C85E679CEC6A234C6EF03 /* RepeaterLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5F861507F91FE57B627EB903164472C /* RepeaterLayer.swift */; }; - 917246393B791C8A6CB643AAD3DC2364 /* KeyframeGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2445A2BFA4F1F72112D3E9B9BD1ADDE7 /* KeyframeGroup.swift */; }; - 9173CA8CE1020124CBCDCC83948CDB90 /* PhotoEditorCropToolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49624603A0AE8BE4B18806F2DAD7B3D4 /* PhotoEditorCropToolView.swift */; }; - 91848ADD44CC1B974590F9FAD0D33F05 /* HXPHPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30BB18DD5E18152570847746CA122253 /* HXPHPicker-dummy.m */; }; - 918693042E70C68780908DD1BF122833 /* YBIBInteractionProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 6115E13375F7CD6D73AD6BF3A4D25C83 /* YBIBInteractionProfile.m */; }; - 918AD406999AAE718841B034702BF5CB /* TAAnimatedDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = 112275B5F2DA020D1F5AAA0ADA2963C4 /* TAAnimatedDotView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 919299610C2CA6AB6B58C902F9FA91F5 /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FFB55FA3F07B1F7CDEF3C5945A8B171 /* AnimatedImageView.swift */; }; - 91AF661BB301FBDB2CCD3CED62072DAE /* EditorChartlet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F90E27702A8F171A62776D2F844F0A4 /* EditorChartlet.swift */; }; - 91B87C5B0A4D59D26CC93DA1001618F5 /* ViewTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1DB3CB1B0F9F8FBA6EB3FF0651D9C39 /* ViewTransition.swift */; }; - 91C27091CC5DCFA114186C0C7805E8C8 /* NSView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD8E3AD2D74BE680D34541310F348A2 /* NSView+Rx.swift */; }; - 91CA63A8C62222E89FBB8FA2B7FE9CDE /* IQKeyboardManager+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = C339600B8575DE34AFEDE149E0B30136 /* IQKeyboardManager+Resign.swift */; }; - 91D2F952AB2260566749C785C7584F29 /* DDMultiFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 661FEE91FA7BA21B21CE0C49E062F54B /* DDMultiFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 91FA6EE5F4C6B9164271AE9205E12C81 /* AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = B893A474C858F5C4E36D48E3A0D8C038 /* AssociatedValues.swift */; }; - 923384554D67DB88905E486CC081620D /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC4D4B98E55AECCD92A3E8F03E8B4975 /* DisposeBase.swift */; }; - 924BB206EA770A1521FDEB1AC1C35E44 /* CameraViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9591005EF300740D15A68DC41F123102 /* CameraViewController.swift */; }; - 927FB34ED26E3AAC260DE630EC4B5862 /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 812CB0666B267F4A5171B774F6D0D99B /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9298CB7C2E4AC4E751E535DA15BEEFA8 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5EC839402CC9058163D064D0B5E9CD /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 92A43BFC165F5595D1CF24AD2C65D6C0 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D460BB20DEA54F4F1227BF8309D4153C /* ImageDataProvider.swift */; }; - 92D50FCEBF77BFACA64AB481BF6EB687 /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A4F33BE715AF8213D74710FD0599549 /* CallbackQueue.swift */; }; - 9358FC6C6DA728AEE250D8E7DD236946 /* MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B3F62938E971A0D73273E6ECF332744 /* MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 936503E8CE03C1985CC7F73B2FCD5D25 /* EmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D03C4A705D61C193A9538DBE31D5AA6 /* EmptyView.swift */; }; - 937E4C92B122C2049A0CAE2D16116B05 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 938A1624E7E0AA2C636073D50916A3AE /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C8858466B5059D32D3438BB36FF23C /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 93C6077AEFD0E46EBC9140156C32A15C /* PhotoEditorFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = B023E00F6097377AEE33C52783C2D1FB /* PhotoEditorFilter.swift */; }; - 93DD3438FA31B90F60BCC482878F1968 /* YBIBVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = C5B7E713872D1FF5E662E3E0EA2B6505 /* YBIBVideoView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 94440F5D1A5B7F87009DD3EA604AD46B /* AlbumTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DDF4C5CB57A76EED48FAB3C5DE0F648 /* AlbumTitleView.swift */; }; - 9468675C9202DD78D32E8C7888DBC731 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = D076B59FCDF9A92CE3960EA4ADC0446E /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 94CE2F8D9A996E797BBF4D37580CDA63 /* YBImageBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = CD18DA084428987D08B37C1AEAC65E52 /* YBImageBrowser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 94FF83A49128359842CBC062AE979EA7 /* ShapeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59AC7679378D0A2B32322B3D52CC590D /* ShapeAnimation.swift */; }; - 9534119EDE1FB3F9DECE76D8130D6397 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FB9C7E464A314BD63D92538B44F8A6D /* Storage.swift */; }; - 953FF696DD3B62FB3B39114A6A8FA0CA /* PhotoTools+File.swift in Sources */ = {isa = PBXBuildFile; fileRef = 606B36089216BA9AAA95CC158D76FE49 /* PhotoTools+File.swift */; }; - 9540707F7AAB70EDE0369AE6E75A9CAD /* Infallible+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAE83CBDB804481CBE1626600EB92085 /* Infallible+Driver.swift */; }; - 9543FC7093A9F1F3E2A1E438DD179C13 /* UIView+Responders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FDFCFAED54B1A668030FBB5DAA027B8 /* UIView+Responders.swift */; }; - 954A8A86B59625A40BF76D00D8864C8F /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FE1BA63F690470C059660AF0B0F5AC8 /* SDImageGraphics.m */; }; - 955B87902E039163281C4F47C95DB851 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 95FBC83924660AF9550D968A6631AD5A /* MJRefreshBackNormalFooter.m */; }; - 95B8F2F4A82C78DFF16B127288DF8612 /* DDTTYLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F2F6B8CB2B809BBF697237FB094086 /* DDTTYLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 95C73DF77BBC82BA09363C45E7B6021E /* YBIBSheetView.m in Sources */ = {isa = PBXBuildFile; fileRef = D7BAE3331BAA65418B42B63EB7A827D8 /* YBIBSheetView.m */; }; - 9612707F9DE302BF40FCBE970A9F859D /* YBIBContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D98D1A29F5DC6D072CD99F8B268931 /* YBIBContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 965ABCBF7A409A106D970E220F43F0D2 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B2824679F61129A99A02FB3B02A3D9 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 96AF24FDB989490637082038CF8EB93C /* Navigator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 486C16E381473095D0AA5D90E00E5843 /* Navigator.swift */; }; - 97213AF9E83AFDA9B63697F584DFC456 /* ControlEvent+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3CB5318B015CED596B8976F167CB700 /* ControlEvent+Signal.swift */; }; - 9765D023EA9673C300F3621E73902B80 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - 976F2DEC006F1C7F8AEB874CE0018985 /* DefaultsAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBAAAB6F1E8977B72F66A0CD9B335B76 /* DefaultsAdapter.swift */; }; - 97A13C75DA2BCECA29B0E7F6BA8EEC4C /* sharpyuv_gamma.c in Sources */ = {isa = PBXBuildFile; fileRef = 088A84604336D5130B62B245D8D225F0 /* sharpyuv_gamma.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 97BA4EACB3823937158991C170924719 /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B1E426822FE7CAA3703A573A0281F51 /* ObservableType+PrimitiveSequence.swift */; }; - 97BD0BC7A9938C464C3D919699CAE7B0 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 45A82B7D82427BF1446499386E18E4FB /* mux_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9812D1624B70319D03262967BA53F1D5 /* AlbumTitleViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23627BEB011259D12B07A6DA62769D64 /* AlbumTitleViewConfiguration.swift */; }; - 9847DF292DB8ED979719B25E15224044 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 984AE6A5A39C7F95738C1D95CCABB10B /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5C635E55F5A6DFE07FD9D482A1443A7 /* DisposeBag.swift */; }; - 9869E7C419F4AA14557C287A77E6E7F8 /* String+Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB8309D96FCEC99B33E677AF7698B74F /* String+Parser.swift */; }; - 9878BBBB5F72D65F065E1B2D097BBCA0 /* AlbumTitleArrowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8552E5A9E1DCA523D27BEF65DF4E6F35 /* AlbumTitleArrowView.swift */; }; - 98D2C5A94857D45C5E6476DF11659DD3 /* SGQRCode.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C966D75070D79B9D443364A819C0C3F2 /* SGQRCode.bundle */; }; - 98D4097922F78A49E02441100FF15AC3 /* PreCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2355152919250DBBD5FD5A9E31F11464 /* PreCompositionLayer.swift */; }; - 98E85707455AF1E27F8FBDA8CFB3B53D /* CustomLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8EA635F6E6ACFAAD23856120F08C7CD /* CustomLanguage.swift */; }; - 98EFA246A2A845E74DEFF098CE60356C /* SDCycleScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 137B6C5117E166291507375196C29E1B /* SDCycleScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 98F2777C7B7BA024CF0DEA263EBEE2FD /* _RXKVOObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = A96C05B637BDA477BEE511BDBAF925FE /* _RXKVOObserver.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 990A4E31ADF23A8BC1C5044ABD45B979 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83FC585A2073635F19A93B8712ADFCDE /* ImageContext.swift */; }; - 994DF47F20CED7B2C71E7F748972EC3C /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23BCD448D0D59E19E3DE5D1D80437EB0 /* Maybe.swift */; }; - 9957F0F1B355B8E1F8FAA917159E9199 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = E4D3017944C2D05C9DAE6514D3E169CD /* SDImageCoderHelper.m */; }; - 9981C32E56FF09688D9FBCBF45FB93B2 /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 622275BE3CDED43E4D4D52732AFB6ECB /* NSButton+Kingfisher.swift */; }; - 9983957076323822F4C0A8EA4CF352DE /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3341A7FC89EF4648B74656D78B47F6E2 /* Zip.swift */; }; - 99AB67489232A0D64E91577E068EBDDE /* RxCollectionViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F09681D932FC2A10A110AE909ACFCC0 /* RxCollectionViewDataSourcePrefetchingProxy.swift */; }; - 99D2D2129D75D3C07E0123C98C2A14FA /* TransformAnimations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89A49B541760965E76940F9AFC9F361A /* TransformAnimations.swift */; }; - 99EF2A49CBC5CB056F28CB5BE9635468 /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C8AD3E343425805782DD3A683C4AB359 /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9A57392E0BC5A5E6A886134E855A9381 /* RootAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 277586195FD85080AED690938D317998 /* RootAnimationLayer.swift */; }; - 9A748E06A1A0D4590C268AE3517D906F /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = A30F967339486C931FF72A91349018AC /* IQBarButtonItem.swift */; }; - 9A7E5CE23211E85C6232833EB3741A71 /* PhotoPickerSelectableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 462A0CFAB7382F9081365327D7F33267 /* PhotoPickerSelectableViewCell.swift */; }; - 9A7FB1E975A5955C896E6B195C521804 /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 456E97C9FEB89B1B0A86B831368F12E0 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9A994727773B0B2ECF0BF43B89ECA9D6 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 2696085F8CF53F46F0711050C0A10E07 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9ACCB282299CCC09F7018E6CA760C1D1 /* NSObject+Rx+KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EB164560DE3677F1DA177D4DC5B5447 /* NSObject+Rx+KVORepresentable.swift */; }; - 9AD9BA7A311DF770828C4B304E63A9A1 /* OIMQuoteElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D81D87D9F9A845B326030633297628 /* OIMQuoteElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9B81AAA7E1947A2A38DC7CDFD27B76D5 /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13248AF2B1E920AB3B30184BB73FE587 /* IQTextView.swift */; }; - 9B8F1984A1F831434EFB36B7BC03C431 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AACEF2C953C3C0DBC735A19E819E97D /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9BA535D00043A9D52063EFEB813E6278 /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = E102058F9539D17E8EEB15112A058EEF /* Amb.swift */; }; - 9BE9ABF100051ABF1961958C54100327 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = F2929AA63D82688BF8DA0D85380910E8 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BF10B033DE930DCB412101F17A2F9F3 /* Locales.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A84325CE3F960B48B1C19244D0063D0 /* Locales.swift */; }; - 9C4901CD6CC93184585BD5E765C9841C /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAEE0D2FE71C52FD936AF6D2095F23E /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9C5AD0CCE68EEAE2096052C189F3A948 /* YBIBImageData.m in Sources */ = {isa = PBXBuildFile; fileRef = 21D531AE86A9BDBC117C3BE120B6E7E5 /* YBIBImageData.m */; }; - 9C89110A7C655E5C39B3135E9020CBF7 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50BEB8D58D55B2FCF2EC6E5DFC90DAC7 /* Alamofire.swift */; }; - 9C975B2F72D067FD855FC9874F45A40C /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F5CFA1AE264D0A7CC41E863C86C294C /* SDWebImageDownloader.m */; }; - 9CA7295DFA502275B960E09DE8FA8BA2 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EEAD77C593182D302DEC7E521078E3 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9CBDE95F15D7D2F7926F74170A23E8F1 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 489954733A3E65665BFD9C14B718677E /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CE2B0DEBE0178D7BCA89AD9A7F0BFDF /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB9C1CC0C5611BE2E3A59B48E0E6260A /* MultipartFormData.swift */; }; - 9D02329C05D857C2BDD3089FB523862D /* RxSwift-RxSwift_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 420D86B6DE49D1E1898C3A498E4F4195 /* RxSwift-RxSwift_Privacy */; }; - 9D10B4077239CD4A98091985A4A3F523 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7AAD023CD959C7D04EDAEF495E42D4 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9D22F88B7F1AF054C2BF025DFB767154 /* IQKeyboardManager+ToolbarManagerDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A5182C75AEAD0F757530B825BB3DA6 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */; }; - 9D3503AD6B9B4367B93A5B548AA24040 /* OIMManager+Connection.m in Sources */ = {isa = PBXBuildFile; fileRef = D1DB4F36A216F0FE7063760FC77B8302 /* OIMManager+Connection.m */; }; - 9D3C14C890F752864533DD41540D7678 /* Commons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F851682E599767E9AA044FB11D2D5E4 /* Commons.swift */; }; - 9D46306826317C2783B0A8255691E035 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1089D62CEB1502272B582AC17278077E /* StringEncoding+Alamofire.swift */; }; - 9D7EBD01D0A527C34FD31EE1DBDCD650 /* DelegateProxyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E519B15CCB12F735F0129579FF286E3 /* DelegateProxyType.swift */; }; - 9D8BF11B27F90EE2FEC8E030D8D324C7 /* OIMConversationInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CC518F434B48E1EC17CB97405E4AAE6 /* OIMConversationInfo.m */; }; - 9D99119517C283B342844D8DA80A1F26 /* OIMDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4A4FAAB99051ED36282D6DBBCEA552 /* OIMDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9D9E2C0A96E8F024ABEA21B652809FC1 /* VectorsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C592FF44021E880C95CFE088D4C80A27 /* VectorsExtensions.swift */; }; - 9DDE9A4DCA7722B701E4BC61B2CD9D6E /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E93437C29905A7527D19EBEC710F418 /* KeychainItemAccessibility.swift */; }; + 87E6581111DF30DAB6BE39E2C5B9A86E /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8FA084404ADC4DAA8462C55C53C1E1B /* RecursiveScheduler.swift */; }; + 87EEDE0EC414BCF701CDCF1963EA053C /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = FDECDECD34ADFC847CCA706F55AFC610 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 883C4B3FA7C98CA11B121BC4E0092B73 /* OIMAtElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 888BE989F91C6C44101C700B8DEBA649 /* OIMAtElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 883EDEE1C699497CF2A77C3B8A32A790 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 378372F498F665F3FFD43D996BC74AD0 /* ConstraintMultiplierTarget.swift */; }; + 884419C8494495094ABE64D75CC3F90C /* Diff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 684A7422DA5D5676B52EEDD2E28FC657 /* Diff.swift */; }; + 884F5F55420FE62C12003DECE5661841 /* URLPatchComponentMatchResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5593B53EE9179304F30998CE87A02732 /* URLPatchComponentMatchResult.swift */; }; + 885CC108EFE64571A6332D9FDD7A13C4 /* SGTorch.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ABFFC2EF84C27BEA54CF8DD10F38B28 /* SGTorch.m */; }; + 8872BEB0954C0254A792469F4DBC9891 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = DE63E8D0A27679395591CD603D53B1EE /* MJRefreshAutoStateFooter.m */; }; + 8899CFA2CF5684F53E5DA5A6ACC22A9D /* UISwitch+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDD47B22A2046775AB63801AE6381A4 /* UISwitch+Rx.swift */; }; + 88A6155330CCF69524EF9DDBD69E1B9A /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EC04DD6C08373446E1739FED2DFC3 /* ElementAt.swift */; }; + 88AEADE841758CB25058FE66DEE9C8F8 /* PhotoEditorContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B9CB5F944772CAB0E89F0484325B547 /* PhotoEditorContentView.swift */; }; + 88BBEE036CD8E65AC3FD9E3947EBC30F /* Core+URL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F75D1EC0E1C320D3F9EFC4E8509D719 /* Core+URL.swift */; }; + 88C759FC42F8AE58B0ADA29B25C01344 /* Image+WebP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CF7E9B4E27E9DB75877750C9B8021F9 /* Image+WebP.swift */; }; + 88E0FD7941654F2DC21D27A34DD3CD56 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 19AB346F664AF3BB68015BA96F15CA47 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 88E76DE06F81A6B173F029A37BD0BE7F /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = B39A92039C1C6E5A539881A3C30A3EFB /* Runtime.swift */; }; + 88F4CA6C1D8268726FB5EAFA1B8B60DB /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 45F9E01CB1B5AD57F4855BEAFABE70FF /* PrivacyInfo.xcprivacy */; }; + 88F56AFF074B6F882778C33015C91E94 /* PhotoEditorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 560267D27DA0FB5CD68E69E62A79BFF6 /* PhotoEditorView.swift */; }; + 8904ED8DEB77CA657A4EED2F86EB961A /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06C8D5A6462C9B25ACD0B162347F8166 /* AlamofireExtended.swift */; }; + 89082AF17AF5C1B80EC64F39D659DAC2 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = D62C830395ABE984B932E2867CE13845 /* SDWebImageTransition.m */; }; + 8929ACF6C9157182F8B76FB438F0D5D3 /* NullCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB216BE0D8FC0CAFD94F4FBE9464267E /* NullCompositionLayer.swift */; }; + 893AE39673116061407A043A4E4DEA45 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 898290F3B36D3CD51ACDC340A9672E24 /* lottie-ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1358D7123BAC8C0A76B45D29BF04C27E /* lottie-ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 89930437CF8C0483FAF6B9ABA5ED6449 /* EditorStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53184C1114CEE9521E8AB97A2DB43893 /* EditorStickerView.swift */; }; + 89B8FDF95E703B9B1D6D9B056906A1A2 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 31095D3E6FF883967D59CFEE2575C384 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89B9718F6328E69EB494F036512691D1 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 6939A2F658A7053D427D8CA0499EEA5F /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89C457ACFD60011F394C5BD42800BDC6 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5377BAA90C9F75A3EAA5CF2746999E7 /* ImagePrefetcher.swift */; }; + 89CC589A21EE67EE5A904D350EA92A11 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager in Resources */ = {isa = PBXBuildFile; fileRef = 80A40EDA3AF0499BDBCFF09467BB49AD /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */; }; + 8A52D7C8D989FC845E323308C4A87D71 /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64FDE768BCD110D76CA31416FCD660DB /* ImmediateSchedulerType.swift */; }; + 8A6AF1A1D8157273EEFE7E708A2C4C2D /* ValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F7489B3075663D6DD35FC554D303EC6 /* ValueContainer.swift */; }; + 8A75F90D7F25EB93D76AD8A672680883 /* AnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = B36D5FDE715BA934BD34F8786C8DA5A5 /* AnimationKeypath.swift */; }; + 8ACAA83990FE291111877CE8251572F8 /* EditorStickerContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 155696EF7C4D692123629E939A4CFC88 /* EditorStickerContentView.swift */; }; + 8ACE9296AA479804EFD2D3CC417DE801 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + 8AE640439F0C94295E509ED320B648C0 /* MqttSubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71223FB6D980C715AF98D520D963B6B5 /* MqttSubscription.swift */; }; + 8B194760C4583AB3D5E17DB95679E3F6 /* CocoaMQTTStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE1D44D51C8A45FD369FE3952E1D2B2 /* CocoaMQTTStorage.swift */; }; + 8B31BDB2762ED660B1D0A13FD3F0472A /* Archive+ReadingDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8112BFCAD85A1901C75F5AECF9170CC /* Archive+ReadingDeprecated.swift */; }; + 8B31CEDB2E6DCC2766E7DE11E1759B27 /* IndexChangeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9552D22A9233631F84C168E3F12CBFA /* IndexChangeset.swift */; }; + 8B7560712BC596AD4790CDCB38D629BC /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 26B386FB80AD4FBC1955D5C4F245DDFD /* Kingfisher-dummy.m */; }; + 8B76C03618F5FFAB32834CC24C3832EB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 8B914E305D4CD1DABFEB039BBCEB24A2 /* GroupInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD075C270BA262E2E0C9C7E705229ABB /* GroupInterpolator.swift */; }; + 8BABA32F7B94A25D8E9208C0A8D90B2E /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D581489AF2D977E97DD236B6C4C9583B /* ConstraintMakerRelatable+Extensions.swift */; }; + 8BB4E1330084CFF09A5057180B4E624E /* EpoxyableView+SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5516434AFE89CDE1669E3995A27B09FE /* EpoxyableView+SwiftUIView.swift */; }; + 8BD5654E2662F6368895034E3983792A /* KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 620866CE6F644E71DD360A0EFAC1D7D4 /* KVORepresentable.swift */; }; + 8BDDFED41302DD7ADF441B5E8D81E73F /* YBIBPhotoAlbumManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 23C5E159C4F71F067E60F69603441421 /* YBIBPhotoAlbumManager.m */; }; + 8BEE7F56D2E1F2283CEC98F70ECD9E19 /* DDFileLogger+Buffering.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5F7D75A5F16DE8ED73EAB9D1681EE0 /* DDFileLogger+Buffering.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C31B34CE864C7DAB9946012B3CEA688 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = D00321F8E978E74F4F4D60B3EB34997C /* AnimatedButton.swift */; }; + 8C41EA954997897C3E30C5754010C05F /* UIViewController+ParentContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AACBABCF5B90F04C33A9FECD309A234 /* UIViewController+ParentContainer.swift */; }; + 8C64A7C9603A2B05E32A7C417F5D9CEA /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C782F6BBA9D908DF2ED57F50C12C768 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8C6C7E25C5A24C936F81823978190E96 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ED6DCACD44E7EC0DE34BDE788A9AFB3 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C7BD9F3D0BD5668940D9E18FA9AEABD /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 8168F54744B4E03AC915F62D17CB4288 /* SDWebImagePrefetcher.m */; }; + 8CBC72065F0261B373B958696985AF99 /* IQKeyboardResignHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86CE596122BF5B193D2C94C75BF941B4 /* IQKeyboardResignHandler.swift */; }; + 8D4AA30F9BBB8C344C48D2DC8D951E43 /* DotNetParserFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4739742911C8301AAE3EF467466767F /* DotNetParserFormatter.swift */; }; + 8D51421FF478040E6383D24254900967 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 376332B7BB7B62B68F0FF48144147A45 /* CFNetwork.framework */; }; + 8DB09720CD159CAE1DA1F9E2E6A0984E /* EpoxyModelProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D66152891A6C0CFE6DE74BD7438631 /* EpoxyModelProperty.swift */; }; + 8DB634AD509A72F1980DCB26BABB92DB /* RxRelay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FFA5203579DE0199D1EEBA334E365319 /* RxRelay-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8DD1C035F8672F10066660417B5BAF12 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93AC70A2D46A8E4C52484F59DCF920FD /* ImageIO.framework */; }; + 8DDD172EA8E9E4548DFB15F6783E075E /* EditorConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B549342902CF998B972113E3FFF6A2A /* EditorConfiguration.swift */; }; + 8DF169B3ADBCBA100BE5D2CA34EDC31A /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9A16E733FC1E5FE0D380BACDD771918 /* Combine.swift */; }; + 8DFF92F12F47B1D6B9F5EE78C46FE13B /* Star.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86A0D05E1B1AF9C0E4BDE710355585D3 /* Star.swift */; }; + 8E04A59BA6D460441F8AAFCDCE8E8FD0 /* Archive.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4F1801A3E01D1794CA3E91A36D21155 /* Archive.swift */; }; + 8E0754113F5AA8EF1DBB84D46F521EA4 /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0716716AD81AB2B2F5991A5E536BC03 /* Photos.framework */; }; + 8E2CA0865DE0A2AAF339EE30A9B44B56 /* OIMManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 31B8537D70EEE6E1BCF41B5917CDDC13 /* OIMManager.m */; }; + 8E549B308AE1B5B2FD6EA4435D5252BB /* PickerCamerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35BDD75E89E9E5DD5191A7DBE6C746BE /* PickerCamerViewCell.swift */; }; + 8E5A40EB2652D32EC7F38833C460581D /* ShapeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 248B06013737714E8413242881D097C9 /* ShapeTransform.swift */; }; + 8E6FD5ED48BD0F55E0B72C5E0605062A /* ImageLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59E0C671EF5B5B543DDE4A04023C67FD /* ImageLayer.swift */; }; + 8EE1FB0285E02C433C5E762B13B33DAA /* FillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA2360D1A6E94ECABACD3E1106335EF /* FillNode.swift */; }; + 8EF9E020BC7B8E2E9276C2F32408810A /* _RXDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B6298FFD801309A5E645D5E694C08F2 /* _RXDelegateProxy.m */; }; + 8F2B26A032E5F2B4F6A15A8B15A5750B /* RxNavigationControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7F7D27217E891C5F29A685C844B453C /* RxNavigationControllerDelegateProxy.swift */; }; + 8F2FF92C2ACB7B2551DE8D9C8E26E204 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15B4330482D87D40C8FC65666CF75DD1 /* SwiftSupport.swift */; }; + 8F420E9DDBD125163B97E8F489286F71 /* UIActivityIndicatorView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B9BF634B186B10B3DEB036AF4CFC662 /* UIActivityIndicatorView+Rx.swift */; }; + 8F4AC5455CDD202655025DE431360AEE /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EF9D3B110D82B8135F84345D73A0B28 /* ParameterEncoding.swift */; }; + 8F77F520107C9BE9E88265F2B4B3D1D4 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 846FD9A1A5BAE3A6EF9143279169E011 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8FBBE87E9886B5BE2B5B44D08812B43A /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C1D9B69A7128BBCC29DD780202F2071 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8FD8500C56E59D86AA72FC774FB3F2A1 /* SDImageFramePool.m in Sources */ = {isa = PBXBuildFile; fileRef = 35095A89B3C9A2BF1B30A1C61D469BA6 /* SDImageFramePool.m */; }; + 8FF7B6477BFA6E6ABA168E1417291D5F /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 016496ABA78D6144AB7AD700001BE86A /* MASCompositeConstraint.m */; }; + 9010DB8F0F66A0EEB1A7DB5C96611654 /* IQDeepResponderContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5660094DA95120EE2B8164E7355B119 /* IQDeepResponderContainerView.swift */; }; + 90264A40ACA3CA7A1F141D7DC7D17EBE /* ImageContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC82CDB4622F4F83A99EB2D2AE120E /* ImageContentType.swift */; }; + 903C0676C8543A3F851A6C7CB065921D /* YBIBVideoActionBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC1B8C248D81410FDAFCB9BE646654F /* YBIBVideoActionBar.m */; }; + 90614006DEE2476FC563684DD2A504A0 /* AssetManager+ImageURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 458E91DE3D1A4CB674A1B648258294A3 /* AssetManager+ImageURL.swift */; }; + 907545A1764CE1C7724399E65237DC20 /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 27A43B258704D27FDBD3E9FF44A51207 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 909C544B79175483251BC46FB225BEBA /* CocoaMQTTTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBB464629EFF24FC46445D5425B39D7E /* CocoaMQTTTypes.swift */; }; + 90AC39C3ADB425C5AC1E7F959BF384BA /* URLNavigator-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 546737B43CD88885573162690F1B1567 /* URLNavigator-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 90B28F4F929AECD1B38177E9977B7F3C /* RxCollectionViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6946053ADEB795CA6BF8DC00F6E9818C /* RxCollectionViewDataSourceType.swift */; }; + 90C6D6F36FC7F036060068E40C3FA0DE /* CLIColor.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8D9B8D105015C6EEF5E5C35E31DF2A /* CLIColor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 90DFC2E073F83E7EE947EFCCB868B573 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 33F42C258DDB2E31077B9DE98F72F3B4 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 91057BB30A6A21F670FACC5D492C2447 /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 430D8BCB203E6FA33D34F430A850845B /* Dematerialize.swift */; }; + 915C0D7BCA417AE073CCEC9CCB77A8BA /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65867AB26CF8515F87512779D35AAFE7 /* SwitchIfEmpty.swift */; }; + 9162EF894ECC79E2524927E8EDD3A5F6 /* MqttPublishProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD6EB60D65042D6F79F8E621BF2E5BBA /* MqttPublishProperties.swift */; }; + 9170655A7E8C85E679CEC6A234C6EF03 /* RepeaterLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 640F3024D486EF2882424829BADB5957 /* RepeaterLayer.swift */; }; + 917246393B791C8A6CB643AAD3DC2364 /* KeyframeGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77D36BE38B7CA86985F86993EB76ED85 /* KeyframeGroup.swift */; }; + 9173CA8CE1020124CBCDCC83948CDB90 /* PhotoEditorCropToolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 663A9AAB1644EDF5B89B050210D188AE /* PhotoEditorCropToolView.swift */; }; + 917F9BB22E1E892B4144A812C2F49096 /* IQTextView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7196CA4EF95950D8E1B0780E5CB73D1E /* IQTextView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 91848ADD44CC1B974590F9FAD0D33F05 /* HXPHPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC1E150CEE2FA713EF8E77E76B5F0E06 /* HXPHPicker-dummy.m */; }; + 918693042E70C68780908DD1BF122833 /* YBIBInteractionProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 0736A9464846A7FFD4CD0741B9E475AD /* YBIBInteractionProfile.m */; }; + 918AD406999AAE718841B034702BF5CB /* TAAnimatedDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3526170ED597B2F4DF1BF8DD590D5391 /* TAAnimatedDotView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 919299610C2CA6AB6B58C902F9FA91F5 /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6563437DD714E4651A54D5D9827E41BB /* AnimatedImageView.swift */; }; + 91AF661BB301FBDB2CCD3CED62072DAE /* EditorChartlet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 909BD42DC3755A52936AECE9F677FAC7 /* EditorChartlet.swift */; }; + 91B87C5B0A4D59D26CC93DA1001618F5 /* ViewTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 801F815AE21CA3F75E4A08CD741E3FBC /* ViewTransition.swift */; }; + 91C27091CC5DCFA114186C0C7805E8C8 /* NSView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5758CE5A67AFA979046916DC97CC125B /* NSView+Rx.swift */; }; + 91CA63A8C62222E89FBB8FA2B7FE9CDE /* IQKeyboardManager+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0E21354913A22F0F4F3F224BF3699C6 /* IQKeyboardManager+Resign.swift */; }; + 91D2F952AB2260566749C785C7584F29 /* DDMultiFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E48E1B8ED8E32B9FD17F6AF5FD4C19 /* DDMultiFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 91D68DE854B45FB77508E2782F9D36F6 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DEF1FCE593F12623DE48F3406DF7003 /* SDWebImageCacheKeyFilter.m */; }; + 91FA6EE5F4C6B9164271AE9205E12C81 /* AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE234EDBBA854CE992A10F0073B4502C /* AssociatedValues.swift */; }; + 920C1A9E23C3CE15BF44203272B96908 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F4493CF215BF661CDF160795093A360 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 924BB206EA770A1521FDEB1AC1C35E44 /* CameraViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56CE73BB666FB1014D9B132720BD8776 /* CameraViewController.swift */; }; + 928FCF60E3649C39E281C1DD526CEF07 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BDE8C8E66FA082F46F1643FAC6D3F43D /* SDMemoryCache.m */; }; + 9298CB7C2E4AC4E751E535DA15BEEFA8 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 852A16226F156C32AEDD3A6649B83421 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 92A43BFC165F5595D1CF24AD2C65D6C0 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 914D1DC48410EEA11DC4146D823176F8 /* ImageDataProvider.swift */; }; + 92D50FCEBF77BFACA64AB481BF6EB687 /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C45BD99F26D6E924687C0DEF6BD9871 /* CallbackQueue.swift */; }; + 92F619B07D3D91F74CDA3CA4B000807C /* MqttDecodeConnAck.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85C1FB7E970597CDEA090223148461D /* MqttDecodeConnAck.swift */; }; + 9321C9FC6EF91BA1E6DF974D0D8838CA /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FAC0E0BC6370F8AC09DFB8E21DCDFCC /* Completable+AndThen.swift */; }; + 932BC8C27900D27C048A5635E7231CA3 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CD359CC21DFC73BA0F1DDCAF0486162 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9358FC6C6DA728AEE250D8E7DD236946 /* MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DACE5762DB2310A02D85503ED9DED1 /* MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 936503E8CE03C1985CC7F73B2FCD5D25 /* EmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9E2E94F5A368A73CC30515962A10A16 /* EmptyView.swift */; }; + 937E4C92B122C2049A0CAE2D16116B05 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 93AF8427CD5DBBE14C33946AB538F904 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = 094C068E414026C8CB65CAC50AAE5C84 /* Single.swift */; }; + 93C3B1F0BE88C1985707ECEAE55E15A3 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + 93C6077AEFD0E46EBC9140156C32A15C /* PhotoEditorFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62D07C690BC24C555DF4B8EFE24DBD23 /* PhotoEditorFilter.swift */; }; + 93DD3438FA31B90F60BCC482878F1968 /* YBIBVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 522607A5314BF8105FC7AA0003C2790A /* YBIBVideoView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 940622D3F968C7D89CD39D1E8AE97373 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F671C802188EF41EED437EF1BD461D86 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 94193840525CD2BF5B5FE96B133D211A /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE64907BB7CB5497C4B31C6437EA2231 /* InfiniteSequence.swift */; }; + 942CE6472FD49042B9F22A946D86FF26 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3043900069A7BFFDBEFA4E3F38FBBC2 /* Errors.swift */; }; + 94440F5D1A5B7F87009DD3EA604AD46B /* AlbumTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C21C4FBD6D82FAF123B6FD4221EEC000 /* AlbumTitleView.swift */; }; + 94A1B8EAF5E302028F0E33406D1C2D2B /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = CC704F85E6DECFEFBA3A0F282033AE27 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 94CE2F8D9A996E797BBF4D37580CDA63 /* YBImageBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E558D8C6D3AFA14C61F24DA97C33E8F /* YBImageBrowser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 94FF83A49128359842CBC062AE979EA7 /* ShapeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE2D768229B35C3FE454C2B95DEEC7BE /* ShapeAnimation.swift */; }; + 9534119EDE1FB3F9DECE76D8130D6397 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FC8E717DED2B35BD1F66E0A8B62D552 /* Storage.swift */; }; + 953FF696DD3B62FB3B39114A6A8FA0CA /* PhotoTools+File.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0942915E855CACF30C7A5843464A23D4 /* PhotoTools+File.swift */; }; + 9540707F7AAB70EDE0369AE6E75A9CAD /* Infallible+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80F95906923E1515A2AD4F0F6690D8F6 /* Infallible+Driver.swift */; }; + 9542BC97F490CB6D4671C68776DC2B9A /* FrameConnAck.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3353B782D463177D03DE0F388380825C /* FrameConnAck.swift */; }; + 955B87902E039163281C4F47C95DB851 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A229AE0D21491B82D7E0DAE152DE073D /* MJRefreshBackNormalFooter.m */; }; + 957C254909D1EAC5C8A62D6AA468F6BA /* RxSwift-RxSwift_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 420D86B6DE49D1E1898C3A498E4F4195 /* RxSwift-RxSwift_Privacy */; }; + 95B8F2F4A82C78DFF16B127288DF8612 /* DDTTYLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F320304CFB5F16992D6434DE4E65B7 /* DDTTYLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 95C73DF77BBC82BA09363C45E7B6021E /* YBIBSheetView.m in Sources */ = {isa = PBXBuildFile; fileRef = B85121EB950716DA0F583D20DABC268A /* YBIBSheetView.m */; }; + 9612707F9DE302BF40FCBE970A9F859D /* YBIBContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B2799B201F8DE8120BD7D5DF850756 /* YBIBContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9619919FD41DFBDB5760E158BAB8F295 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4B1C2103D7684DB18D233B798D4561F /* RxMutableBox.swift */; }; + 9644417C8C310B2FC3EBDB998596F3C8 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E734FF2DDA8DAB55B08800FDD08E017 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 967D69215A506E8003D53AB825DBF8B1 /* IQKeyboardToolbarConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C8FAD9863B07762E14BEC17A1AD179E /* IQKeyboardToolbarConfiguration.swift */; }; + 96AF24FDB989490637082038CF8EB93C /* Navigator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1249BF2812DDEF7380FB54875C83716 /* Navigator.swift */; }; + 9703F00AD9B433ECD5A6290032A2C05E /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 687C03C1A0D5934231452CF86A151B5E /* SDWeakProxy.m */; }; + 9720D8169C83739350D3580924FFCB3D /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFD05E64CF85F8CA7E5A6576121884A0 /* IQKeyboardToolbarPlaceholderConfiguration.swift */; }; + 97213AF9E83AFDA9B63697F584DFC456 /* ControlEvent+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E1B0A6502E32D023ACE68E9AAF41799 /* ControlEvent+Signal.swift */; }; + 9735FA2F9E5D53A10450D1BAEFA7612F /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = E36023FA5050A88E423759EE0EFCD497 /* IQBarButtonItem.swift */; }; + 9765D023EA9673C300F3621E73902B80 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + 976F2DEC006F1C7F8AEB874CE0018985 /* DefaultsAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED9291ABC29121BC7F4C0411D3DFCBDF /* DefaultsAdapter.swift */; }; + 979EE714FBC877B08294DDDAC01C1BDE /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = B652E29752B7E03ECA2EB9B62D3DB63A /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97D740C37BC4DFC9691E9C6EF64B89A1 /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5A050AD03631811ECB18C196A9D21CC /* Infallible+CombineLatest+arity.swift */; }; + 9812D1624B70319D03262967BA53F1D5 /* AlbumTitleViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD68B1602B9133E2816F156CB92881EF /* AlbumTitleViewConfiguration.swift */; }; + 9847DF292DB8ED979719B25E15224044 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + 9869E7C419F4AA14557C287A77E6E7F8 /* String+Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A7A20E96488707B469EF7CBE0AEF37 /* String+Parser.swift */; }; + 9878BBBB5F72D65F065E1B2D097BBCA0 /* AlbumTitleArrowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E80DB3359336F605C30FE7B728A01618 /* AlbumTitleArrowView.swift */; }; + 98D2C5A94857D45C5E6476DF11659DD3 /* SGQRCode.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 40A7089ADE900B568CDC7B11FC4C263B /* SGQRCode.bundle */; }; + 98D4097922F78A49E02441100FF15AC3 /* PreCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FCEA9AD6C802E052AB4F36F955C37E9 /* PreCompositionLayer.swift */; }; + 98E85707455AF1E27F8FBDA8CFB3B53D /* CustomLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA4B9E352F29C90F44D0244433AF8504 /* CustomLanguage.swift */; }; + 98EFA246A2A845E74DEFF098CE60356C /* SDCycleScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B4B42635EF69EE9862334DD24CC3566 /* SDCycleScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 98F2777C7B7BA024CF0DEA263EBEE2FD /* _RXKVOObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 144656E3F5F7AE2576B871406A869F02 /* _RXKVOObserver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 990A4E31ADF23A8BC1C5044ABD45B979 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58257C6D930B04CA0CE4B0BC5E9FBA44 /* ImageContext.swift */; }; + 996ACA07E398381E297FE2D20EBAEAE4 /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 569BA4EC75A7753E8E96D8A92267A5D3 /* DisposeBag.swift */; }; + 9981C32E56FF09688D9FBCBF45FB93B2 /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = A96139C1CDAA829E1C5C99CC966F3CB0 /* NSButton+Kingfisher.swift */; }; + 99AB67489232A0D64E91577E068EBDDE /* RxCollectionViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B7E3FC6BDBCDDF8FE344D514AFA47BC /* RxCollectionViewDataSourcePrefetchingProxy.swift */; }; + 99D2D2129D75D3C07E0123C98C2A14FA /* TransformAnimations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99865637FCFF7B1AA28FC0923C3042EE /* TransformAnimations.swift */; }; + 99F98734F451C3423D3CFE18BA45F389 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = D5252618732B4F33066C92F6903EA17B /* UIImage+Metadata.m */; }; + 9A079D75446EE8455C3496BCCB758DBC /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 03FE134A3FD2889614B4CC40FFEF3581 /* SDImageLoadersManager.m */; }; + 9A4ED09FF5F6C42B302E97D7BFFB5541 /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF0216C421365AD84F77ED22BEA23707 /* InvocableScheduledItem.swift */; }; + 9A57392E0BC5A5E6A886134E855A9381 /* RootAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBC245604F36AD9FEC3CD87AA04F7C2F /* RootAnimationLayer.swift */; }; + 9A64AA527A1156361FEFF89E58AA8A43 /* FramePingReq.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D9D5041CB0B73D214303A39FE8ADAB /* FramePingReq.swift */; }; + 9A7E5CE23211E85C6232833EB3741A71 /* PhotoPickerSelectableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F976405F401C7E3AC0CEE5C7C2595458 /* PhotoPickerSelectableViewCell.swift */; }; + 9A7FB1E975A5955C896E6B195C521804 /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = BB037BF10F9C4170C64093D37538877C /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9AA1F63D85A53624D985D05569E80864 /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = F723E0730199FB22CB10297CB86034E7 /* ToArray.swift */; }; + 9ACCB282299CCC09F7018E6CA760C1D1 /* NSObject+Rx+KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DCED5C705FE63535A256328BB0E994A /* NSObject+Rx+KVORepresentable.swift */; }; + 9AD9BA7A311DF770828C4B304E63A9A1 /* OIMQuoteElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F77A9C4687FD3D84DFF005E7862759 /* OIMQuoteElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9B10D0EE1A1B362C382D7C32790D5F2C /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A2965AF467F1BD2E4E571F66AA1F8EA /* AsyncLock.swift */; }; + 9B5FB4D7BDEE150249FC25BAD02E4673 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F04172F80298AFE5BE335BF76D4501 /* UIImage+ForceDecode.m */; }; + 9BA717307CD936629FAE4A1515CCF862 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A180547A0748580216D31947FCF91D /* SDFileAttributeHelper.m */; }; + 9BF10B033DE930DCB412101F17A2F9F3 /* Locales.swift in Sources */ = {isa = PBXBuildFile; fileRef = A989C2079B8C5E48A3BFE36041C1D718 /* Locales.swift */; }; + 9C5AD0CCE68EEAE2096052C189F3A948 /* YBIBImageData.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BD92912FCEB695DC98E049E3F1E663E /* YBIBImageData.m */; }; + 9C80A0175BF8E8B561F88F78FD8027C1 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F121A1AF57280A390FE624572D35BAA /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9C89110A7C655E5C39B3135E9020CBF7 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F79F59C81E9BD55D2300957A95BFEE2 /* Alamofire.swift */; }; + 9CE2B0DEBE0178D7BCA89AD9A7F0BFDF /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57CD8A4DBF03A8134B3DF489CCC344E3 /* MultipartFormData.swift */; }; + 9D0684B3B738D7D21EAA1387D127C782 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 188EA8631594375F44FE972823A25FAC /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9D22F88B7F1AF054C2BF025DFB767154 /* IQKeyboardManager+ToolbarManagerDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFE969BF87DF6A4473ACCB1E8565BDF0 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */; }; + 9D3503AD6B9B4367B93A5B548AA24040 /* OIMManager+Connection.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B0AFDE6F490BD489C84DE9AB7B623F /* OIMManager+Connection.m */; }; + 9D3C14C890F752864533DD41540D7678 /* Commons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EF8EEB5237176128E14B293533A72C8 /* Commons.swift */; }; + 9D46306826317C2783B0A8255691E035 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5FE6488A1A339DC17ED5A3C860C6FE3 /* StringEncoding+Alamofire.swift */; }; + 9D7EBD01D0A527C34FD31EE1DBDCD650 /* DelegateProxyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3BAA59A5DF299D939954B1D0B6BAB74 /* DelegateProxyType.swift */; }; + 9D8BF11B27F90EE2FEC8E030D8D324C7 /* OIMConversationInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 380D33A71478D6A19360DAADF01641A2 /* OIMConversationInfo.m */; }; + 9D93C80F910C873F803391661A10336F /* Combine.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0A90D1C88AE636E67296B135530FC21 /* Combine.framework */; }; + 9D99119517C283B342844D8DA80A1F26 /* OIMDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CB958102E3830756508C5AE67B201BE /* OIMDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9D9E2C0A96E8F024ABEA21B652809FC1 /* VectorsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837CE453DD68FD5980A53849C6B2FDE2 /* VectorsExtensions.swift */; }; + 9DDE9A4DCA7722B701E4BC61B2CD9D6E /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78F45D1A1EB720928FAD6EFDCCBE1536 /* KeychainItemAccessibility.swift */; }; 9E0045B41BFE697DB4ADE151228024D2 /* SnapKit-SnapKit_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */; }; - 9E0BFD43354B5C39E229B566380FBC7F /* SharedSequence+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AD087C00AE0A2CB66E870C10681C588 /* SharedSequence+Operators.swift */; }; - 9E1B9E12EB2FA47D31C61522122C6CF5 /* OIMManager+Friend.m in Sources */ = {isa = PBXBuildFile; fileRef = 30BCDBE3285AAC94EE2E1B2D935E8DCD /* OIMManager+Friend.m */; }; - 9E3A87603BC1BD80CDECEB3B52D3C592 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - 9E43D3C06CF64AEB62E7122847C15FAD /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D9CC311816278CAC539F9972CCF9467 /* SwiftSupport.swift */; }; - 9E46EF300E2FAE9C075C03534DECBCA5 /* YBIBVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F32E9C5ED25E45138C2B009244D8436 /* YBIBVideoView.m */; }; - 9E4FDDFBA5C3856E7C540B560910C2C0 /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 054BFF3B2D649118B2DCBE549463B70B /* CPListItem+Kingfisher.swift */; }; - 9E8ABB2490C30D6462B91C63A60D4A03 /* OIMGroupInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 49B2C730E8574BF4D63DAF8204DC6409 /* OIMGroupInfo.m */; }; - 9ED92DDFDED091E3FB77221273D5F4E3 /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = E50D3CE2D0594CBF14EB8467CCA02548 /* AtomicInt.swift */; }; - 9F8FD4529C610082745C8C7B1F1961F4 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D8BD69420673B5C0598B75F654685F3 /* SDDisplayLink.m */; }; - 9FBC6A5DB0E8F77EC6EC2D6B98C81BD2 /* SDWebImage-SDWebImage in Resources */ = {isa = PBXBuildFile; fileRef = CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */; }; - A002E77E30E8C6C20406535665186E0B /* unwrap+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3363755C6A144FD04CC1F79B7234245C /* unwrap+SharedSequence.swift */; }; - A029B635564A3A7C8174D69E444241AB /* Editor+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB48C25BA36E7A3A90DF6A7ACCF696A7 /* Editor+UIImage.swift */; }; - A078A275FFFA48D620074790DA3CA6CE /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = E1470F23022327507435AC5D5E2E0048 /* MJRefreshStateHeader.m */; }; - A0B03E2E8B1952B3B64E2B26970089BD /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CC6895CB40EF7ADB0A3C945CEDFF07F /* SDWebImageDefine.m */; }; - A0B9F8C32DCAE928C8485766B4CAB172 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E906AAEBF4DCC02DEAD03D193A8E8CC1 /* PrivacyInfo.xcprivacy */; }; - A0E4A9C2BF836AFF9EFD0FE0751287F9 /* Archive+Writing.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8D7DF632932C141A3A0BC1099B53183 /* Archive+Writing.swift */; }; - A0ECDE88D35F5D0348C2A533B07EBFA3 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - A11B53CD11370C968EC79A951D865E4C /* DDFileLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E0374CED5B77EA1A9488888C3A901E /* DDFileLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A12FDB12DF3F9EB993A5CA6FA07754F7 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2FF52A2AD4EFB49CA6B7904FDF26EA /* MBProgressHUD.m */; }; - A13546213743CF2610800864045B5D7D /* ContentConfigurableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E82B6099394C2F5A543E192B85CC8691 /* ContentConfigurableView.swift */; }; - A146D36DC8070733A58AD8D12D4E8E4B /* AnimationFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB9746CC3590A586C2503988C11BFE17 /* AnimationFontProvider.swift */; }; - A14CB138559202BF9783493A3B0A49F3 /* YBImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C871A85DF5F63890D0CDE0EB704B3560 /* YBImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A1B70BEB9DCBE081F5B39F596F2596C5 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF7131C55E627FF8ABFED611ABA66AC /* RedirectHandler.swift */; }; - A1DC9EFDF50DF0EAF24D9D7C219AD2C1 /* NSObject+MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EECED2B41B3AE95453700ECC56AA3BB /* NSObject+MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A1E29CD112385C90E29DDEC573E9CF44 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 16193DA5A0D7C1CE6F0645E191E3B728 /* UIView+WebCache.m */; }; - A1E44277704AD68E867FD7C955A6632D /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D15A1A1C3D45C5DBC427A6AA27A1645 /* MJRefreshBackGifFooter.m */; }; - A203342FF8908BCE627B0AD03D4C6516 /* Combine.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BB070EEA28E7CED98A5D3FBC546B2023 /* Combine.framework */; }; - A20DBEF15B6A962DF4C548A26F00C8C0 /* TrimPathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6278C6F6E095466FC0747AED3A82DBAC /* TrimPathNode.swift */; }; - A20FD3BD7888CA75CCBE32C513D7E076 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C431CF55C1DEA301F7009AC22BAF420 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A2144AB5DA94A4BDA2253B25CC069E3C /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DFC47471DC57CA8A3990D13F5421EC2 /* SDAssociatedObject.m */; }; - A21E48381D84E5A83C5139952CA955EF /* LocalAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30CA8E9E2F081102A0E466E3DBCA97C /* LocalAsset.swift */; }; - A24744A0D592244A51AE4FD145482C24 /* UIView+IQKeyboardExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 886EDE3EF4D2E04DC332BE8E363F892F /* UIView+IQKeyboardExtensionObjc.swift */; }; - A2BBF60D463B5DA1E57EB843B63DED87 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 65116B7F8B410E440874CCFA63662B20 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A2D48CC012DADC29CC924512A5F4513B /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F22AAF79A7B61FB53A870AA54CECA0A5 /* CFNetwork.framework */; }; - A39FE5F72261B202CC63722A7B357206 /* IQTextInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A22DC8E59A81000BBA63235416889042 /* IQTextInputView.swift */; }; - A3B37F7F50CB1D300D0B4F6210406988 /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A28EAFBBFB2489AD46E0091B00B767E /* HistoricalScheduler.swift */; }; - A3EA39A13714B3103B82F4066A642F53 /* MJExtensionConst.h in Headers */ = {isa = PBXBuildFile; fileRef = C2EBF1ACC8534A22F5BE37FAAD051863 /* MJExtensionConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A3EA40405F301013677F25D98B02737A /* RequestTypeWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE2AE28AB42D6BB69AEC9E7501336749 /* RequestTypeWrapper.swift */; }; - A40C5F28F224D47644D6642B2515A011 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 8587D011AA0593CFF7A1B84EEE2FB3F1 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A44ED4475C4343EE970814D8508A6490 /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A094F4CEA1C525291A1DA9D1530B5BD /* Reactive.swift */; }; - A4869D054B2AA3CF5F87BEBD031CDCBA /* StyledView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62AA6CBDC90F15752FBBFAD594E0DB65 /* StyledView.swift */; }; - A4D7ED63C57E58316780D9AC735C680F /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B403F5A8513C8A0A4EEC0650F17063FB /* SchedulerType.swift */; }; - A4D9CEEE49AA3EF5064EB426E05BF774 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AABA4A903D3B1748D2F7ABD73C518B1 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F402526B013CC1222E2324F7AB2DFB /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F1D4C539840D1E04C5FFAAA34A578BC /* StartWith.swift */; }; - A51815518AFD2325631A5EF870F23BD3 /* and.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF6DF531579CE69496EA3326B6B5AB0C /* and.swift */; }; - A55FA53F690C15B96D16270FA0DDCA61 /* OIMGroupMemberInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3031EF8A675A49AB3D585F9F2A638A62 /* OIMGroupMemberInfo.m */; }; - A57326C8E77245DB6680543B3426F381 /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28028200CF5288C6709AF472B07A3E73 /* SwiftyJSON-dummy.m */; }; - A57C8E88F850C24574FF47756536392B /* LanguageType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C30ECEB47A30F096C7A11DAFC977D503 /* LanguageType.swift */; }; - A57E2091853F8D22158738D995DE6946 /* SDImageFramePool.m in Sources */ = {isa = PBXBuildFile; fileRef = 386033983F3A03681989750FE5B69703 /* SDImageFramePool.m */; }; - A58136C9566B2242204F3F8EA3CD8D48 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3DCF34621F9247483D8AC14424E3D9 /* UIView+WebCacheOperation.m */; }; - A58EE42EE3645E9A635B070F02E9825A /* SwiftDate-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10714B805F30205FBFC798B49F7ED8AA /* SwiftDate-dummy.m */; }; - A59F8F6BF639189A54750A0FCA385CBF /* TimePeriodGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE90CA40DDCE3B2A7557F7300F48BDA /* TimePeriodGroup.swift */; }; - A5EF8F09A21D6A69E2DB05787B061D84 /* DefaultsKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71FD6427BA94D4884EC2B62E60E9E7A3 /* DefaultsKeys.swift */; }; - A5FD5A91303A2FB61CC314DEBF3CB08A /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC93400A9949AF32E23616180B0B6CDD /* Observable+Bind.swift */; }; - A610226159AA69D1BEF935D66747ADFC /* ShapeLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4E269F1764BE1BC501E09F81012012C /* ShapeLayer.swift */; }; - A6226F26A69916F590663BAB95720286 /* Zones.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE27247B0F48B326AF1DDFF5E52E4127 /* Zones.swift */; }; - A6415BE5D50BA69358B8C31085045BD2 /* PhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53EE3FDC6BBE60EB6D5FD6C0201E710A /* PhotoManager.swift */; }; - A66EA62E1052F6AE1A384EE8932EDD85 /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC27B316D383024F0A59D8133F0685B /* LottieAnimationViewInitializers.swift */; }; - A698A792F293BA997FE75C70CD18B022 /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B56B9C4446B4864B2E6EC9FA7AB1F4C /* OperationQueue+Alamofire.swift */; }; - A6D6518D73C66770F338CEFFCFEE9737 /* PhotoPreviewViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25DE73A1EA9F7ECF0E1D5E9F2897CA07 /* PhotoPreviewViewController.swift */; }; - A6F1EFC3CDA009A4BE6CCBB01248DA21 /* UICollectionView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB3AF5015C0B68FB788983C3D31F518B /* UICollectionView+IndexPaths.swift */; }; - A723E474922D959654804A7822B2C9FE /* AnimatableSectionModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B47B0F33ADB52865D45F738C9337602 /* AnimatableSectionModel.swift */; }; - A74FD9C3A0D40BB2919EEF5E39879531 /* InterpolatableExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB34224D13F0A6C900F251943BDB8520 /* InterpolatableExtensions.swift */; }; - A75A9CEA5A4788D0651D7EF895679CFD /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBD10C64367048249EB3CCA3A4728FF2 /* RetryWhen.swift */; }; - A776BB860CFEC83AFD8814D717A1F616 /* bufferWithTrigger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 326281CC28396A68E89160486CB6C8EF /* bufferWithTrigger.swift */; }; - A7E562FC9C10C5003534E91160C69330 /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F579D560A7BAEC27AA799B2A5CD1BBD3 /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7F8F8A2D8CDBC03F051E68E7F80926D /* RoundedCornersNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146CAAD47B8060678F231FC28E0A3B60 /* RoundedCornersNode.swift */; }; - A7FF322DF74002F7C9F855A5F95B166A /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 037D39577B12B91D443CB163F5B8C2BA /* ImageFormat.swift */; }; - A81A06306F6CB52B6454B87AD1389688 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B4181173D600C81E639DF5A03E52AEA2 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A8437EFD962B3A3F812B756C76ADD87B /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9C59615FF8BA2E341509BA2898E468F /* HTTPMethod.swift */; }; - A84A1EFADBF970F63D187ECEC5A10811 /* DDLogFlag+DDLogLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8D6A5FE25A3244C84E4059F96B41735 /* DDLogFlag+DDLogLevel.swift */; }; - A8609464778FBADF9D5C6800FB02AAA2 /* GradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 716D4AEC881C597AE0F28479D16E71AE /* GradientFillRenderer.swift */; }; - A86CC1AFDFDD692DC4EE66F57C0F39E6 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 62991FC09198149F6AADD3A172559A80 /* UIScrollView+MJRefresh.m */; }; - A88BBC15BE4C225B31AEE17F4D953A2F /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A9EAC8FC1287A9C24DA5BC7D31F39F91 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A8A6C9D9D8B65ECD3056C232B62D70D0 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = B838E8CD32B3E7AF843A57E9E5C5B435 /* SDWebImageError.m */; }; - A8E186B1FE4B17DA0502C02E03CA8A07 /* YBIBVideoData.h in Headers */ = {isa = PBXBuildFile; fileRef = F06C8ABB058B9D2FEF1726930EB05BCE /* YBIBVideoData.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A9148F1A43900CC2F92709355079A30F /* Driver+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74E963FDBB2A72AA3EB7D60BB0724666 /* Driver+Subscription.swift */; }; - A93F0AB3530D12C4DA9F4C4389C7F2B1 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = EE69701659551D2EA95E581E43FAAE49 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A96564D57DFFDCEB8237AC0009F19E91 /* Task.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBBFEC0A19957F2E4DC6F87C398A3318 /* Task.swift */; }; - A97478529331285D5FE36B7A4FEF9FDC /* DefaultsSerializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41ABD5255F5B3887A1E6C0B3CD1A9071 /* DefaultsSerializable.swift */; }; - A983CCA5F6596F030EFCC1E27C1E766E /* UITableView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = AADD4B026F6027AF572D51A25BD61D10 /* UITableView+IndexPaths.swift */; }; - A9B0233F2C7CD6365526CA2178F9215F /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05CFBCB3BAF48A65126967EB66B83905 /* URLRequest+Alamofire.swift */; }; - A9BD8B825EC61C85BD1592271DA93A01 /* FillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C61CA1E7129FC9BB178D8C730B3B5A79 /* FillRenderer.swift */; }; - AA01A57B3D11D35C946824DC7E089F2F /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = A59E29643218DB83EB446596CF3A4210 /* Completable+AndThen.swift */; }; - AA08300A57FC853C833BD5E8167445B9 /* SGWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 51C1A964478BEE6F4C1DE2808C0CB83F /* SGWeakProxy.m */; }; - AA1847AA96F3BD93538769D1690A750C /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 643E20DC003F67757DE48602D2A7C2B6 /* Enumerated.swift */; }; - AA28F4A2C9F5993AD2085D8F3D0A4366 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 453CA5B7C2555E48218CED21C1BC8519 /* NSData+ImageContentType.m */; }; - AA4CECA3798CE0C84CB7CD5F342AC4E3 /* YBIBToolViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FA833C33B5AC6E4CEC49F9D1321C982 /* YBIBToolViewHandler.m */; }; - AA5921D519E9769BC090DF9BB63A40C7 /* DataSources.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9361EDCF72DA935BC195CF2F2E7FEEB1 /* DataSources.swift */; }; - AA5BF2DFB10400AA27950626CF7948DF /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD15BB092F57C56BCAA6B4B7F799504 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA94FD545FBCB2D0659264C82CA6858B /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EDBA00E11125390D155B70ADD10B3F /* AddRef.swift */; }; - AA9883CA105A3DBEEC0EB4A4619D158B /* YBImageBrowser-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C413DA11BA0A2F7D5DE3F394B6B61F /* YBImageBrowser-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AAB1561F8BB17934C2858A14B7A16D3C /* PhotoPickerBottomView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13C32C8D313CE54C938117F79FB42909 /* PhotoPickerBottomView.swift */; }; - AABEF13464BA7F4621BD94736C1D057C /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2874A5748A76E6FF8D240C980346F2D /* ConstraintMakerPrioritizable.swift */; }; - AAC982194C2E64A6EA74BE58C7BF6B45 /* ValidationType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05D4D13EF29C8F7DCE86020D32C8D588 /* ValidationType.swift */; }; - AAD885901A99D6AE01C8DBDB90C5C979 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = E32BDB5F008E014DF2899A52778B0534 /* Merge.swift */; }; - AAE2016D45F550892E95C71837487A79 /* PhotoTools.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE0F2F0A1C318B0FFFF4DFE36D1A69C5 /* PhotoTools.swift */; }; - AAF1D044A1BFEB95FD91F7381DD2A5BA /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B531F280DBAEF942F4FE6A28535EBE76 /* PrivacyInfo.xcprivacy */; }; - AAF9494BBBCBF94960369A5624E1DF5D /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4A3B8F09E406012F86745357A1CD7D /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AB132905D478C48DEBA0FCB05051BCDB /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE111CCED1194464F57087895D162857 /* Concat.swift */; }; - AB1F732806BA88499D9556A1DF9C7147 /* DisplayLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5481E8B55B3E97A187B601A410FD66DB /* DisplayLink.swift */; }; - AB292EBA731CE0800CDA7DDEDAFD0E6D /* PhotoAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988C977871E4F16B43124775C5442980 /* PhotoAsset.swift */; }; - AB4DDF5983551D7BAD74FE07187972F6 /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = F553CBDEE22BDB07390A5A1890961940 /* Create.swift */; }; - ABB23E61CFECC70CBC823E10333EEEF9 /* CurveVertex.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA285ADE8A6A7FDFFE668150218D3D8C /* CurveVertex.swift */; }; - ABC0BD510E360D3E43D3AFE11F000C4F /* WillDisplayProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D638901CE9A00B98FD0FD8D2DADCB2A /* WillDisplayProviding.swift */; }; - ABE29701808E91BD6622EBD0EEBEC762 /* materialized+elements.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C69CF0F0BF608B7192C8C2D478D58D4 /* materialized+elements.swift */; }; - AC22AD1E1EF9CD9D6E242F3630A9A012 /* IQKeyboardManager+ToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43FB9E973A47305B19D631375B80A59A /* IQKeyboardManager+ToolbarManager.swift */; }; - AC4CA901E2320D4D147740E29CF08F1E /* CLIColor.m in Sources */ = {isa = PBXBuildFile; fileRef = CBCF16C1D8B08EBF7F70BEF64DE8914F /* CLIColor.m */; }; - AC710813CB6A1DAEEE45914402F864D2 /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = E48DCE42501B7013F70D4B72A64A9C20 /* MJProperty.m */; }; - AC7E09D6855D27DD855A81B3D8C1CDC5 /* View+ValueChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6929D9112D6D2BA2861A61C822056E89 /* View+ValueChanged.swift */; }; - AC7E21CB29757E2CFC0A30211BE31248 /* PreviewPhotoViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF59DBF677935AFE11100B7BA87711D0 /* PreviewPhotoViewCell.swift */; }; - ACD8044C76783EF19755EFC8E911FD55 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 06C9041561AE6E617D216D91DE531015 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AD3490FC2929561C622B20EEE38A20B0 /* RxTableViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC839CBDE62FBDF1FB0A9B6E583E159C /* RxTableViewDelegateProxy.swift */; }; - AD50B64828C23634D364DD46F5BAE1B2 /* PathOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A744FA8696B38DECAED24C7D0829A18 /* PathOutputNode.swift */; }; - AD860938D35585A99549790933C165E5 /* HasImageComponent+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B38CA1B256C4DC4578E9BED9368B736 /* HasImageComponent+Kingfisher.swift */; }; - ADD4389B968C2739C37B789AD44D3ADA /* Picker+PhotoAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42313B5EA1C08DEBCB6B59020C9314BA /* Picker+PhotoAsset.swift */; }; - ADD657BDD83FC569FE0749205901878B /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C8FFE3A4542A54D17DEA4F0A0654EDE /* SkipWhile.swift */; }; - AE224EDB6D044C0FE86B086E950FC2F9 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 342385D452E45822DD7ECD2003E65B56 /* Debugging.swift */; }; - AE745A25F12D4918404C5ECCE439FC2A /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = F1230DFA99D00D6DA8C2465727F22D30 /* SDAnimatedImagePlayer.m */; }; - AE7A69CD6CA5A7CD8B2DD0524F25CE43 /* EnumTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 577E69204BACD94290D8AA0F05255858 /* EnumTransform.swift */; }; - AE7B02645B8F769CA5F215EE8F7CC5B0 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 111E59CE836AAFABF981BB302BED14EC /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AE883C65A28D87087F1BD17AE1E6BEAB /* PhotoListConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45D6D7BCFDFDF29A6DBD06C86894A520 /* PhotoListConfiguration.swift */; }; - AE89340D37520E24ED75F2F2201263A4 /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D81725FC20BBBDBDAE2433DCC141F /* Infallible.swift */; }; - AE9E12B9AE82D5E8964A3BF8D2E83F08 /* DataTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE530A41C456C8942C48BEE1BC4ACB0A /* DataTransform.swift */; }; - AF1D366BDF7AA8C015A0283550C197AB /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4667C302EAFF74DF30B4071AAC48CA /* ImageDownloader.swift */; }; - AF28EF187B5278B9BBDBA36DE7452166 /* OIMSearchParam.m in Sources */ = {isa = PBXBuildFile; fileRef = 59A43B984C0AF852A6F8AB9E25671AE5 /* OIMSearchParam.m */; }; - AF34FDA62958AD154C005C924C808165 /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D68BEDC9751B141065CF1027FED503E6 /* Delegate.swift */; }; - AF6EB132E2FE73EF2933818F91A86240 /* Ellipse.swift in Sources */ = {isa = PBXBuildFile; fileRef = F531DEF9CEEFBD2F35BEBFBF41D073F4 /* Ellipse.swift */; }; - AF760C78F1C7E11BF7CB9E9B29903530 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDD4F7BA6A5912E04B2CD34EE7001335 /* ConstraintInsets.swift */; }; - AF872DC1B0FCA5AF714EEEB0FE1CB581 /* VideoEditorConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF7AD9CDBAEA6134EE92F10730C7351A /* VideoEditorConfiguration.swift */; }; - AF8B4F3C9A868E54151E882AFF5972A3 /* CocoaLumberjack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DBD93D288BF1971680AC0CBFA87CEC7 /* CocoaLumberjack.swift */; }; - AFAC54AB9B003E85E8D1D3E076D2ACDD /* OIMNotificationElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB99949480CB8A0B0DF10697A19BAF6 /* OIMNotificationElem.m */; }; - AFBECCF0A08CAD1096EE187621760B19 /* LayerEffectNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94D516F270368ACF9D94D50BA45877D7 /* LayerEffectNode.swift */; }; - AFE232EEDAC5B035CDB331A5CEA18E32 /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BDC964E4BDB8D2FC07223D96BD59013 /* Placeholder.swift */; }; - AFF9C62E7AE15ECE0FBA058A48C2C662 /* TagListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D51AEB7941D5096807E59C7B4F7596A /* TagListView.swift */; }; - B008CBC52C3135A6FCF0532177D46D43 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA7F7E45797654B45F07848151665690 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B008E06B51A57F11E9A195A14B80F6C2 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F817082B9C5EE4458A59A5A7804DEFC /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B01BF1940094224E6A48D83E53BA6AC8 /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 773911D3EAAE3F33A663F7CC1EC09005 /* ImageBinder.swift */; }; - B03642C4490E4F61792A6BC3CDFF4C9D /* EpoxyLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86450CB64F3B277D05E16E3FCFBDDDC6 /* EpoxyLogger.swift */; }; - B03F71551FE251F44BDC790C91C850A0 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9604381FEF2D16AD7ED3B5538527210 /* Deprecated.swift */; }; - B04007D5AC6F72BD74FDAA49029B5F6A /* mergeWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03AF9077A88CE3FDD85D74403482C1A5 /* mergeWith.swift */; }; - B048B31836F1E5A82AE520ADD74580AB /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F91D8352B875D35E55568B695E6F368 /* RecursiveScheduler.swift */; }; - B0875E3AB8718E7DFE5C53497C02A15E /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DAD49D64090D08FBC52E7C52FFBFF8A /* ConstraintLayoutSupport.swift */; }; - B09A70A587400F738C138BB0487F08E0 /* OIMCallbacker.h in Headers */ = {isa = PBXBuildFile; fileRef = 722CBBE05AA45B4D4BCC2A8D48EC1CFB /* OIMCallbacker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B09F08548ACA8379445F6525011EE219 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = FD486E62809B39EA2FAE17E7977B3C8B /* MJRefreshBackStateFooter.m */; }; - B0B6845271D9CB2ECE54665E4942D32C /* ISOParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC974D5440D46C2475A13210B5072DF5 /* ISOParser.swift */; }; - B0ED3A9AFF050F528F62FA62A2ED867E /* OIMSoundElem.m in Sources */ = {isa = PBXBuildFile; fileRef = F0C281DB20437F52417B71177BFAEE60 /* OIMSoundElem.m */; }; - B126EF2264809CA8F7A70EB1F227030B /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19008898D15EB1FBBCD1A15590CF8625 /* ExtensionHelpers.swift */; }; - B14EBD76B590189B2C83A6EF963D822A /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 06C6D818FF85158065EEB29C708DF89F /* SDImageCachesManagerOperation.m */; }; - B186A7028D06E8C1196CE78DC5CCBA97 /* OIMAtElem.m in Sources */ = {isa = PBXBuildFile; fileRef = E2664E5BCD9D8BA910C7D09EA6C2AFBA /* OIMAtElem.m */; }; - B1BD3BEC4738D96D11B1DBA31F71504F /* EditorType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E5A66AF3F7558F7194F9003783F97B0 /* EditorType.swift */; }; - B1D23A68F13080F6DA6EC33CFB04B877 /* retryWithBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 414EA10691F9648F2A822D776442BEE8 /* retryWithBehavior.swift */; }; - B1F7B96741F92ADC2F98417FFC33DB96 /* PHLivePhotoView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBBF1F672E38253186ECF2C0972D5FC1 /* PHLivePhotoView+Kingfisher.swift */; }; - B1FD607CDF2E95D05BA3B880BB410E7B /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9421E603875C52CCF37AA01A75D831F8 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; - B20CF9BA80C38488F04F90EC817A3B23 /* OIMGCDMulticastDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DD55E3EE49E45A74B40D393DA730FB1F /* OIMGCDMulticastDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B229312BD26C96CA7BBDD079EA82CA7B /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 52826A20DDBD116B62604609F4896887 /* cpu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B23B20F1C3E3BA41870F9137074F1AEE /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DF522262FD43A31939B404FAB1CDBF3 /* MultipartUpload.swift */; }; - B25C3DEE88FEC6E44A1FEF8F655130A4 /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1DB25C161114385C7539D92C70848E7 /* First.swift */; }; - B26E12AF738E9902EC107EF28E667940 /* IQKeyboardToolbarConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D587347C55CFBF02E2405496E4C19F1 /* IQKeyboardToolbarConstants.swift */; }; - B27EB3E83EEF095CC2ADD635BFED1F2C /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 355C2A9EBE4A9B292FB4090BC017E1E8 /* UIImage+GIF.m */; }; - B29AC86CA5B5F21AB3E41AA9B62E712D /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01D238240F648EA7EA5C6EBADC6F1FC9 /* ObserverBase.swift */; }; - B30507428462F086F3129F625DF33A42 /* DelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D16E2301CBCEED8AA04536AFC22CE901 /* DelegateProxy.swift */; }; - B3055D5399B97852355F98821ADDBC5E /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C0A1312B50C17A4C611BA04975FA59D /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B317F935509A2A6E0FA87FA52C95E88F /* Date+Components.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC143A0F924BCC3BADED1EC0C737709E /* Date+Components.swift */; }; - B32135C2E38D3F46CAB71F02B695E1A9 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = DDDC822826BE0110F15C916A638B4E1E /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B32473D5AC71620CB7266728ECDB133D /* IntegerOperators.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD14CB3A9622BD754B4DDE7ACDA1BA7A /* IntegerOperators.swift */; }; - B325D41B7CB98EDA508C0F99AF0531E9 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C50D5AF6E97AE83A91CBEDB011B783C /* SDWebImageTransition.m */; }; - B327822BEE47C530A9E220A4164CE0EF /* DDLegacyMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = E0DFBFFC4098538E3CF30773ABBD972C /* DDLegacyMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B32BC6D67438172D5B58955EAB85D802 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - B3A873963105EEB40F98BD3F9F18FAC8 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 00E1EE863C3A3C3630E7BBB6E807087B /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B3AF4BD0E1246FDD4F23204C1EAAFE18 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = A677DBA18E68A3B1473D33FD77407ADD /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B3B7D430ECBFB270DB1E8D1F17ABE8D2 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 847FB0FA98CE4AC2E60D73CCAC2CF1AF /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9E0BFD43354B5C39E229B566380FBC7F /* SharedSequence+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56A5A309D34A2E484F6D17F00DAA899C /* SharedSequence+Operators.swift */; }; + 9E1B9E12EB2FA47D31C61522122C6CF5 /* OIMManager+Friend.m in Sources */ = {isa = PBXBuildFile; fileRef = 33A714CAD18FD98B82C934FCD845F5A4 /* OIMManager+Friend.m */; }; + 9E436802F5A5E80EEABE067709B78441 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 6427F96BC62F8B8E39CE8CBF47E01176 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9E46EF300E2FAE9C075C03534DECBCA5 /* YBIBVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = CFABCB79861B27F18DA91612184F6887 /* YBIBVideoView.m */; }; + 9E4FDDFBA5C3856E7C540B560910C2C0 /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EE8AEF48758E3AF539B73FD6DD3891E /* CPListItem+Kingfisher.swift */; }; + 9E8ABB2490C30D6462B91C63A60D4A03 /* OIMGroupInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DB1752A2DA09B80102258B1B4F99B43D /* OIMGroupInfo.m */; }; + 9EE5156B6860FA93358E2C0CD9990E43 /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CF535FBA7A17C38D87E054E77B938BC /* InvocableType.swift */; }; + 9FCBEBABD3BEC78A8C6C2016750AF263 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BA3D3A4D6E0BDD3AE5425664D8746EE /* UIButton+WebCache.m */; }; + 9FDC5D39EE8B3B84BDE0191BDE69A4AB /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 72DF4AA01E687D7B5FA55FD57819D458 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A002E77E30E8C6C20406535665186E0B /* unwrap+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = A66A31893F6C7863209C97E72EC09DF9 /* unwrap+SharedSequence.swift */; }; + A013D216E8894F541CF684EF88305EB3 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 85A7CF7AFC03C91AFB98EF5022FB97AC /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A029B635564A3A7C8174D69E444241AB /* Editor+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A49D1842DD970A77A3B0D605617890B8 /* Editor+UIImage.swift */; }; + A0534AEA682DDCE2360B05C9EF82C8FE /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E644A02D107EFCE505936D2C494F0D2 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A078A275FFFA48D620074790DA3CA6CE /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = FF39E4326B5C2C88D65E04B5814284C9 /* MJRefreshStateHeader.m */; }; + A0DC59D2A58D5BD6F3700FFE3FC295A6 /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C73EB33F3F32ABFF91A2BD8F436835E0 /* CompositeDisposable.swift */; }; + A0E4A9C2BF836AFF9EFD0FE0751287F9 /* Archive+Writing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42FEFD5D7BAEE2B475CA21E3B18847DA /* Archive+Writing.swift */; }; + A105754189EF99CFFEDEA8CCBE60D0C9 /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3543AC184D347C03D551F192980FD16A /* IQKeyboardReturnManager+UITextFieldDelegate.swift */; }; + A11B53CD11370C968EC79A951D865E4C /* DDFileLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = F02800A4D7E74C83AF754FB80D50552A /* DDFileLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A12FDB12DF3F9EB993A5CA6FA07754F7 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ED125D7528257024B809AC5B68197AE /* MBProgressHUD.m */; }; + A13546213743CF2610800864045B5D7D /* ContentConfigurableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AF5A4FEF1EBB57D68D4832ED9C4B8C2 /* ContentConfigurableView.swift */; }; + A146D36DC8070733A58AD8D12D4E8E4B /* AnimationFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5727BECEE9618152FED1401FF57F6A0 /* AnimationFontProvider.swift */; }; + A14CB138559202BF9783493A3B0A49F3 /* YBImage.h in Headers */ = {isa = PBXBuildFile; fileRef = E3C18EF459A92F67B78ABCB4D4C4B7DB /* YBImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1B70BEB9DCBE081F5B39F596F2596C5 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5DB288CA1735838DAB9C361892E54EA /* RedirectHandler.swift */; }; + A1DC9EFDF50DF0EAF24D9D7C219AD2C1 /* NSObject+MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC8482EF4E24B214C0C7B9E49611EE5 /* NSObject+MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1E44277704AD68E867FD7C955A6632D /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 14D2737365898F5CAB68817BBFBF3E3A /* MJRefreshBackGifFooter.m */; }; + A20DBEF15B6A962DF4C548A26F00C8C0 /* TrimPathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFFFE5A3E20A221292DEDE2DFCC56A72 /* TrimPathNode.swift */; }; + A20E40DEA40B323770F8419B508B828A /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 362ECCD2645D282758EFF964B9C6ABA9 /* TailRecursiveSink.swift */; }; + A21E48381D84E5A83C5139952CA955EF /* LocalAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBF872BB8015B50B7C30FC72B5542972 /* LocalAsset.swift */; }; + A243EC482D57F45F646DD0769BA8D5AA /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 98026ABD4730AD0D7DE536A7F513DDB3 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A256118BC48CDEE51725AE00BA7352ED /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34853EDCAAF81DB2B6643A784E02B2A3 /* DelaySubscription.swift */; }; + A29A43CF3053CFBF94A3EF7CF2324F70 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 63A3A7CA60BE4D32F36898432CE921D0 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2D48CC012DADC29CC924512A5F4513B /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 376332B7BB7B62B68F0FF48144147A45 /* CFNetwork.framework */; }; + A332C0B8334B1F42C06DA96434ADED1B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 4E62540E472572F4BB15B036489695F3 /* PrivacyInfo.xcprivacy */; }; + A34060A696287851E155DBF22FA07A8C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + A36C66423C63347C362000CFA6B39ADD /* IQTextView+Placeholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71CEC01D5366F1D7433565AE23908319 /* IQTextView+Placeholderable.swift */; }; + A39976E89E1F055CF12BC8BD0A16F9E7 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 940C74F803A7278DA8A603C8A4C8CE5A /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A39FE5F72261B202CC63722A7B357206 /* IQTextInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E0BB18C9D64642FF39EC8D976EF900D /* IQTextInputView.swift */; }; + A3AE0AE632B34C3FED84760D5BD8502A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7C5F5574EA447F3EFFBEBB60DEA304A5 /* PrivacyInfo.xcprivacy */; }; + A3CF3A4EB88976FB0D5E989B4ED85C55 /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C9BE70FD7A9924081AB7126CF05E791 /* Infallible+Zip+arity.swift */; }; + A3E8A074E30BA84E989760E577267356 /* IQPlaceholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7928401BE8E30C66EE3ADE8DD8F0B52D /* IQPlaceholderable.swift */; }; + A3EA39A13714B3103B82F4066A642F53 /* MJExtensionConst.h in Headers */ = {isa = PBXBuildFile; fileRef = E3620E9742F07E1E2733403D44E6B104 /* MJExtensionConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3EA40405F301013677F25D98B02737A /* RequestTypeWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6D3BE472B6444F8EDCE6D9376908C0A /* RequestTypeWrapper.swift */; }; + A403C1C5410219C8C51B2C2F7EAC7FD8 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C3BD5F1BA48FA5E47E18FBCF7AECCA0 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A42B44517A3A60DA308BA03F12A2EA92 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 751C8796E14CDA48CEFF8C95250759A9 /* Filter.swift */; }; + A43B51A077E9450423F6E23E3E3A656F /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = B212767BD106E5330DDC1032B129ABEC /* SDImageCoderHelper.m */; }; + A4869D054B2AA3CF5F87BEBD031CDCBA /* StyledView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3333FB4826A1B7E11CD9D053ECCD0B71 /* StyledView.swift */; }; + A51815518AFD2325631A5EF870F23BD3 /* and.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8354BEF8A173F7C560C84148593F0CD7 /* and.swift */; }; + A55FA53F690C15B96D16270FA0DDCA61 /* OIMGroupMemberInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 020B0D8611C73B031357E9E91365C77E /* OIMGroupMemberInfo.m */; }; + A57326C8E77245DB6680543B3426F381 /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 944736B27436A346B72E1922E58C113A /* SwiftyJSON-dummy.m */; }; + A57C8E88F850C24574FF47756536392B /* LanguageType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B26EFE7D0D803E3B328DE5A7C05B5F30 /* LanguageType.swift */; }; + A58EE42EE3645E9A635B070F02E9825A /* SwiftDate-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 77A1006A98BEC8471B208887084BC2DC /* SwiftDate-dummy.m */; }; + A59F8F6BF639189A54750A0FCA385CBF /* TimePeriodGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D5452FF8CDB97481CA818937F4AA899 /* TimePeriodGroup.swift */; }; + A5EF8F09A21D6A69E2DB05787B061D84 /* DefaultsKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = B95B13BB8C7EC7678CC95F016E6DB9D2 /* DefaultsKeys.swift */; }; + A5F0350C5D35B1A7A3685A17C4971080 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D6E9D7AF870E8D988924C6290B87CB66 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A60C37A57AF2C392F61D9CB30547C2C1 /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF54465B2588A0521DFFB1FF4940DF6C /* RxSwift-dummy.m */; }; + A610226159AA69D1BEF935D66747ADFC /* ShapeLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 763616BE3E35702DEF0239BC9469B331 /* ShapeLayer.swift */; }; + A6226F26A69916F590663BAB95720286 /* Zones.swift in Sources */ = {isa = PBXBuildFile; fileRef = 076D230EE2230FCE5631F7FF4CE38942 /* Zones.swift */; }; + A6415BE5D50BA69358B8C31085045BD2 /* PhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C84DB09A5FF186DAD4C96289F6032C61 /* PhotoManager.swift */; }; + A66EA62E1052F6AE1A384EE8932EDD85 /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FECF4078450642BEA0A9B39AB4BE98C /* LottieAnimationViewInitializers.swift */; }; + A698A792F293BA997FE75C70CD18B022 /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = B75F8EA27F5A661B3123631BB2649458 /* OperationQueue+Alamofire.swift */; }; + A6D6518D73C66770F338CEFFCFEE9737 /* PhotoPreviewViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB9E8F62AB5BBD697AAD9ED993626C03 /* PhotoPreviewViewController.swift */; }; + A6F1EFC3CDA009A4BE6CCBB01248DA21 /* UICollectionView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEDFB3B7BB27DE01032FB09D870AD119 /* UICollectionView+IndexPaths.swift */; }; + A723E474922D959654804A7822B2C9FE /* AnimatableSectionModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85C8B51DA0770D817281FCCB4771C0A0 /* AnimatableSectionModel.swift */; }; + A72E718765315BFF3AF34D284006DE99 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EE7CE374C8D7614210D1BBF61EE6A98 /* Map.swift */; }; + A74FD9C3A0D40BB2919EEF5E39879531 /* InterpolatableExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8E337169F44377E81115D90C19F1BC0 /* InterpolatableExtensions.swift */; }; + A776BB860CFEC83AFD8814D717A1F616 /* bufferWithTrigger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5883A9A254761FD72FD4BD60F9207B /* bufferWithTrigger.swift */; }; + A7B5DF43B0752729116087D9A68C052E /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C4D61F01CE840F45DF6982F78033302 /* Repeat.swift */; }; + A7D3ED11692D0C8E94AB8FFC4EC4BDF3 /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2D30AFD0DABC502445D62AAE24594DC /* SubscriptionDisposable.swift */; }; + A7E562FC9C10C5003534E91160C69330 /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E69D9DD0B6099895F3D54842186DC5A /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A7F8F8A2D8CDBC03F051E68E7F80926D /* RoundedCornersNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = B35DAB47F413C69F7A5ACA58DFE60344 /* RoundedCornersNode.swift */; }; + A7FF322DF74002F7C9F855A5F95B166A /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = A84F997BE9F6903E8E03618EBBA3FB65 /* ImageFormat.swift */; }; + A837370033A5D6274750FFC197CD5517 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9823236B88743EB6A4D25D711237C722 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8437EFD962B3A3F812B756C76ADD87B /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E4A8A666F6AF1C7AB6EF523E556900E /* HTTPMethod.swift */; }; + A84A1EFADBF970F63D187ECEC5A10811 /* DDLogFlag+DDLogLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E964CE79E7B4729FBA8FB44F8D76D8C0 /* DDLogFlag+DDLogLevel.swift */; }; + A8609464778FBADF9D5C6800FB02AAA2 /* GradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EEA8F70494527CB93A38C74F7982F83 /* GradientFillRenderer.swift */; }; + A86CC1AFDFDD692DC4EE66F57C0F39E6 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = C90D59230855356AC2C7ECAC0C2A6DAB /* UIScrollView+MJRefresh.m */; }; + A875ACCA7ED41CD1D12921290A386F5C /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63A719DFAC9452911312006859FB59BC /* ObservableConvertibleType+Infallible.swift */; }; + A87F51B875525B9EFCF8E484CB3EEBA0 /* IQKeyboardNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 29DD63712BF5682DFBF582E1766154EC /* IQKeyboardNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A890CF713389EE9AE188A5B8CBD28DA7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + A8DE63C8D7C4A284E843DE63FED30A6C /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DA0D288497955329D2E2EEE0E11E4A4F /* NSButton+WebCache.m */; }; + A8E186B1FE4B17DA0502C02E03CA8A07 /* YBIBVideoData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4448D42457474E9CEFD9FDDB43FCDE90 /* YBIBVideoData.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9148F1A43900CC2F92709355079A30F /* Driver+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = F140B22CB4AB5F7F5608248DFE474EB8 /* Driver+Subscription.swift */; }; + A9506074DCA6117AAC10CCF38810EE3A /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34FD978A375670AC41396D2A0C366330 /* AnyObserver.swift */; }; + A96564D57DFFDCEB8237AC0009F19E91 /* Task.swift in Sources */ = {isa = PBXBuildFile; fileRef = 263E0995DC5FBCEC84D7B86C4F00115D /* Task.swift */; }; + A97478529331285D5FE36B7A4FEF9FDC /* DefaultsSerializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C7BAAB90591C5F80AC0B54E492DC5FE /* DefaultsSerializable.swift */; }; + A983CCA5F6596F030EFCC1E27C1E766E /* UITableView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = B33EEB175BF64F2AE39B373015729BB3 /* UITableView+IndexPaths.swift */; }; + A983DF87C622A2FBC2DC71F27911092C /* Pods-QuickLocation-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F742F9BBDEE927B1CEBB85C83810BC8 /* Pods-QuickLocation-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9B0233F2C7CD6365526CA2178F9215F /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACD9E6D9D77A4F9B1BAA53135CC21EF6 /* URLRequest+Alamofire.swift */; }; + A9BD8B825EC61C85BD1592271DA93A01 /* FillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56F63B4CF7F8651C02683E839A24EC1B /* FillRenderer.swift */; }; + AA08300A57FC853C833BD5E8167445B9 /* SGWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 176B5986B4C5F9E607A7F9872F4E9DBC /* SGWeakProxy.m */; }; + AA4CECA3798CE0C84CB7CD5F342AC4E3 /* YBIBToolViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C27A10A9A647A42B2B5BE3F24C1D6BB6 /* YBIBToolViewHandler.m */; }; + AA5921D519E9769BC090DF9BB63A40C7 /* DataSources.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54E4EED20E396CB065FE382ED36B44A1 /* DataSources.swift */; }; + AA916DADA92B6BF9B60F104C7C77518E /* UIView+WebCacheState.m in Sources */ = {isa = PBXBuildFile; fileRef = D3963C0BEB66BA33C14419B6AB8E504C /* UIView+WebCacheState.m */; }; + AA9883CA105A3DBEEC0EB4A4619D158B /* YBImageBrowser-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 19AC9477C2E6EE717E2515047C572475 /* YBImageBrowser-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAB1561F8BB17934C2858A14B7A16D3C /* PhotoPickerBottomView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0DB6C7F3D7CF810502FB403BE2D852D /* PhotoPickerBottomView.swift */; }; + AABEF13464BA7F4621BD94736C1D057C /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8DDCF4864693C73E1125B4AF69B2DA3 /* ConstraintMakerPrioritizable.swift */; }; + AAC982194C2E64A6EA74BE58C7BF6B45 /* ValidationType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75859D611A6F089B1FDC29D1AF73E27F /* ValidationType.swift */; }; + AAE2016D45F550892E95C71837487A79 /* PhotoTools.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64CAD2C8FCCCCFB901AD99338C69EE1F /* PhotoTools.swift */; }; + AB1F732806BA88499D9556A1DF9C7147 /* DisplayLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8E1A6C1868911E09185610292922398 /* DisplayLink.swift */; }; + AB292EBA731CE0800CDA7DDEDAFD0E6D /* PhotoAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 590BD5EE2F1B73CAD4BA76A24A89F755 /* PhotoAsset.swift */; }; + AB3D4041F79C0E504824AE124753F01D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 18091BE40C28018BF17A58A3B4E68CDA /* PrivacyInfo.xcprivacy */; }; + AB9078825EF42F1CF8E1865144AB3C09 /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C7BC7D5D706A55CD1A71A40EB4D8F08 /* AnonymousObserver.swift */; }; + ABA94A91427B1911BD12BF9E63471453 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB02546BA5EAF3A87B631DFDF1A12A9 /* demux.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ABB23E61CFECC70CBC823E10333EEEF9 /* CurveVertex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7657F084D1FA639C2B0E06330CD5D367 /* CurveVertex.swift */; }; + ABC0BD510E360D3E43D3AFE11F000C4F /* WillDisplayProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7CDA2FFFAE2097689AF3F32BE7E21DE /* WillDisplayProviding.swift */; }; + ABE29701808E91BD6622EBD0EEBEC762 /* materialized+elements.swift in Sources */ = {isa = PBXBuildFile; fileRef = 591FE62A8AED50273FB3FD3B80759AF3 /* materialized+elements.swift */; }; + AC22AD1E1EF9CD9D6E242F3630A9A012 /* IQKeyboardManager+ToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CC9F61619926E872D28D902C1AF880B /* IQKeyboardManager+ToolbarManager.swift */; }; + AC4CA901E2320D4D147740E29CF08F1E /* CLIColor.m in Sources */ = {isa = PBXBuildFile; fileRef = D10D891E1B9E58E640DDE11239776223 /* CLIColor.m */; }; + AC710813CB6A1DAEEE45914402F864D2 /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = FAF290DAFBACC9C13199D9CE5174EDA4 /* MJProperty.m */; }; + AC7E09D6855D27DD855A81B3D8C1CDC5 /* View+ValueChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E34F664A26E302A185A09496929E75 /* View+ValueChanged.swift */; }; + AC7E21CB29757E2CFC0A30211BE31248 /* PreviewPhotoViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DEA470D696BF33083541B017CF60B05 /* PreviewPhotoViewCell.swift */; }; + ACC5A64D2C9E36024DB07378F7118FB8 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A7C1E882BC355EE233177C35BD2FE3 /* SDImageLoader.m */; }; + ACF245BEE605783DBA0E666FED8DBE65 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 21EB64BE1424FD67CBFD60640E5AC630 /* SDImageCoder.m */; }; + AD12190855956D547F04D5CAC6F6F1FD /* sharpyuv_gamma.c in Sources */ = {isa = PBXBuildFile; fileRef = 42AAC5C25F48FDAE17B347BE4BC0FB10 /* sharpyuv_gamma.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + AD3490FC2929561C622B20EEE38A20B0 /* RxTableViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 208FBB9974C322A514DDB9CF05374E5E /* RxTableViewDelegateProxy.swift */; }; + AD39CF4A2A15D137EE8908099B9FB9E6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + AD50B64828C23634D364DD46F5BAE1B2 /* PathOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41D8AE7E514A94049498276F4D7A2EA8 /* PathOutputNode.swift */; }; + AD7FBFF5398724D66EF831648087F043 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 335078A0CED7AAD0119A29BAF4421016 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + AD860938D35585A99549790933C165E5 /* HasImageComponent+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99A5D487DE1C7561340E93F71231A048 /* HasImageComponent+Kingfisher.swift */; }; + AD94DCBF00976709889890A22F960062 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC4832233C2EAA5A0A324B4FECE605C /* SDImageCodersManager.m */; }; + ADD4389B968C2739C37B789AD44D3ADA /* Picker+PhotoAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2679C547D6616063B0D9FC6E558EBA1C /* Picker+PhotoAsset.swift */; }; + ADEF5F16FEE9FCE6638ACC79A7ABF82A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 34D94319150FBBDA5DBC6B33CE2A3F42 /* PrivacyInfo.xcprivacy */; }; + AE0B3DCEC831425C787D002509B4C8F1 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0592F073094483AED9C6687373CD3E98 /* UIView+WebCacheOperation.m */; }; + AE224EDB6D044C0FE86B086E950FC2F9 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A25B8A9E6FDF0123372C7099D17C0C5 /* Debugging.swift */; }; + AE7A69CD6CA5A7CD8B2DD0524F25CE43 /* EnumTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85BEE30BD1FC651C5184A49AFD512A6C /* EnumTransform.swift */; }; + AE7B02645B8F769CA5F215EE8F7CC5B0 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 06E85A137AD401FDF67AF3F231FCBFD3 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AE883C65A28D87087F1BD17AE1E6BEAB /* PhotoListConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C837B2221F8E0307B9986F0D7DE84AC /* PhotoListConfiguration.swift */; }; + AE98272854C73D89242B359616498EEF /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A287BBD95D2A3CE560410E6AAEFD0C82 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9E12B9AE82D5E8964A3BF8D2E83F08 /* DataTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAFECD5FCBEEF8FDD448C9D99E7875DB /* DataTransform.swift */; }; + AED546D422103E6E622C110FB58913B6 /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A233DB53169F833FF0DC8F0A5692710F /* ObservableType.swift */; }; + AF1D366BDF7AA8C015A0283550C197AB /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9D77B762A0231CE5705251F42F55AC3 /* ImageDownloader.swift */; }; + AF28EF187B5278B9BBDBA36DE7452166 /* OIMSearchParam.m in Sources */ = {isa = PBXBuildFile; fileRef = B067C57685FF3EDC8CC9D9022087A8D5 /* OIMSearchParam.m */; }; + AF2A94909F2C7470ABB6995ACDB756F6 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CAD8E36D5A47E8FC472AD76480C5F1E /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF2ABE6FDD3F70320024969E414C97AD /* MqttAuthProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2DF4020FB18B7407F948B895C5A055E /* MqttAuthProperties.swift */; }; + AF34FDA62958AD154C005C924C808165 /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 953DA43EB13E30AF8D9D972941D5826F /* Delegate.swift */; }; + AF6EB132E2FE73EF2933818F91A86240 /* Ellipse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F2EC575215EF8F36FE3332C7B8FAB5 /* Ellipse.swift */; }; + AF760C78F1C7E11BF7CB9E9B29903530 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DE460D658E702CA2B530B22A735CDEE /* ConstraintInsets.swift */; }; + AF872DC1B0FCA5AF714EEEB0FE1CB581 /* VideoEditorConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5F108D6C13B18E7F0E70A6661D58574 /* VideoEditorConfiguration.swift */; }; + AF8B4F3C9A868E54151E882AFF5972A3 /* CocoaLumberjack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B0F792B49D07BDC668FEA0FEE1D35C1 /* CocoaLumberjack.swift */; }; + AFAC54AB9B003E85E8D1D3E076D2ACDD /* OIMNotificationElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 52E0CA4A9F089F647F586FB444DBEF13 /* OIMNotificationElem.m */; }; + AFBECCF0A08CAD1096EE187621760B19 /* LayerEffectNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA18A9D0FE32D587402920F04251F766 /* LayerEffectNode.swift */; }; + AFCA288AE0DE819FE6CE288067C9A82A /* Frame.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA032BABA117E2462E78153FD9CBD9F0 /* Frame.swift */; }; + AFE232EEDAC5B035CDB331A5CEA18E32 /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D76CFBF1AF771B8A842900B6363C910F /* Placeholder.swift */; }; + AFF9C62E7AE15ECE0FBA058A48C2C662 /* TagListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 548902D1C1F1F472857640F1054B46CC /* TagListView.swift */; }; + B01BF1940094224E6A48D83E53BA6AC8 /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6198D280669473ACBA6A084A650DF4D8 /* ImageBinder.swift */; }; + B03642C4490E4F61792A6BC3CDFF4C9D /* EpoxyLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 442B1083EAD63EC2E04EE79B2C02102A /* EpoxyLogger.swift */; }; + B03F71551FE251F44BDC790C91C850A0 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68E69BFAD345E18146F7E60EB1231743 /* Deprecated.swift */; }; + B04007D5AC6F72BD74FDAA49029B5F6A /* mergeWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = D387B9EF45C30A00D99BDDC504B89E42 /* mergeWith.swift */; }; + B0418EE57851D799582EC87D566AB8CE /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 71A128A3C931B299C59408CB2AE87451 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B0875E3AB8718E7DFE5C53497C02A15E /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7389364A0F9C4547DF6856032C109311 /* ConstraintLayoutSupport.swift */; }; + B09A70A587400F738C138BB0487F08E0 /* OIMCallbacker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7983D53E055B37FF8E25038B02CC164D /* OIMCallbacker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B09CA827B18A5EC0404B38B1F5351AAC /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D705995FC6E23FD467B4D98A67815ACE /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B09F08548ACA8379445F6525011EE219 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 715C3629D8ED7790147D9200459C63B8 /* MJRefreshBackStateFooter.m */; }; + B0B6845271D9CB2ECE54665E4942D32C /* ISOParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13E455DA64F34549C2DF36123E908D73 /* ISOParser.swift */; }; + B0D8D212F563CF188A5C51F99359E31A /* SDCallbackQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 17F4024785CE7E20270CB82E7E759217 /* SDCallbackQueue.m */; }; + B0ED3A9AFF050F528F62FA62A2ED867E /* OIMSoundElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D4B044B9175BC06CC0B9475C219755 /* OIMSoundElem.m */; }; + B105F27A3EC15746DDE121AC8A9A57F5 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = B581780208A80C4FB8291D723C00EFDB /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B126EF2264809CA8F7A70EB1F227030B /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDB5DC8D1CA553235FAB3A2185D3646E /* ExtensionHelpers.swift */; }; + B147ECB892B7C79FE4B1B46436E885B8 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = CCDE73E0140C3BC9F72E28078BAB4C4E /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B164FC4CCE6C47414B566E8CC277DE69 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = A01FFB1189079876A3BE427E2D58D934 /* SDAnimatedImagePlayer.m */; }; + B1668CE388B75307E26FE3899736E5ED /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB1931CF524B963B8848089EAC19A28 /* SchedulerServices+Emulation.swift */; }; + B177B54D22587EACF66B2AC074C5D053 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0CD73578573AF5AD46B0F08EBEDF1A5 /* Accelerate.framework */; }; + B186A7028D06E8C1196CE78DC5CCBA97 /* OIMAtElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 26E12650ACBFCF10361CA3BE989938D9 /* OIMAtElem.m */; }; + B1BD3BEC4738D96D11B1DBA31F71504F /* EditorType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFB269DEB8628E1799B027D9BCE9841F /* EditorType.swift */; }; + B1D23A68F13080F6DA6EC33CFB04B877 /* retryWithBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AA2CD254B942B1A97437DFF6AA4C3B8 /* retryWithBehavior.swift */; }; + B1DEBD8F6B20A33C8CA774C87DCFA050 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = E0EA20F9C28C606A3D5D4FFEF8208E80 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B1F7B96741F92ADC2F98417FFC33DB96 /* PHLivePhotoView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E6697D38397D54AD0F4753556ED8EEF /* PHLivePhotoView+Kingfisher.swift */; }; + B20CF9BA80C38488F04F90EC817A3B23 /* OIMGCDMulticastDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F21FFCD8871B063FF323D4E6DEEBC240 /* OIMGCDMulticastDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B23B20F1C3E3BA41870F9137074F1AEE /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DD2EEC1DF1BF388D4AF543887D09A83 /* MultipartUpload.swift */; }; + B25C6013B93EF08F819A23AAB22285D5 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 08261D3B2E86FA4702201DA370E21959 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B2840774DED49F3FA2E50D1F47964C60 /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA95392BD8532D881A2B0ADE65F10F5F /* Infallible+Create.swift */; }; + B30507428462F086F3129F625DF33A42 /* DelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC1490178B4403F12075DA020083F475 /* DelegateProxy.swift */; }; + B317F935509A2A6E0FA87FA52C95E88F /* Date+Components.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E1182014BA99CB0BFD1ED56B36F4889 /* Date+Components.swift */; }; + B32473D5AC71620CB7266728ECDB133D /* IntegerOperators.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCACD2069A5D045848CDC2E5FCB44305 /* IntegerOperators.swift */; }; + B327822BEE47C530A9E220A4164CE0EF /* DDLegacyMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC013570B52683EAAC1DC3751BAE86A /* DDLegacyMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B32BC6D67438172D5B58955EAB85D802 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + B3563172CE8252B7C899749ADDFAEA75 /* IQKeyboardToolbarManager+Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAA272F52E8ADAC35C395237086FBE2C /* IQKeyboardToolbarManager+Action.swift */; }; + B3D4D6744D0958B2ECA368B18B2DF24B /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACCF599458E42F9D6A4C0F3BE13220BF /* VirtualTimeScheduler.swift */; }; + B3DE6FE1EC85A2D9631122D41AE6AB35 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0905AA9AF1C83106FBB5946C32226A04 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Public, ); }; }; B3E6AA7820DF935DB4D69B72CE4054E6 /* ObjectMapper-Privacy in Resources */ = {isa = PBXBuildFile; fileRef = FE6B8ABE5D0AD8A55BCFA48D21915C07 /* ObjectMapper-Privacy */; }; - B3EC2DE8A5B6FAF5ED30071E4A3D9BE7 /* DataRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB09968F5CF26869F7C209FA6BA9D6AB /* DataRequest.swift */; }; - B3EC3F7A87EF3C63DE72D179C82CBA3B /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78512BDAE7DFEC4E0557ABA5FBC074A /* Observable+Concurrency.swift */; }; - B3F47B7393090017F4BD01635B052462 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = ADFA2645467E0829AC032303FE5EA3B0 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - B3FCB3CE60F4C86B4E560EC64D1DD97E /* DidSelectProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88CF94B26432761AD7272FFDA7D98646 /* DidSelectProviding.swift */; }; - B3FE6E966F4807E217609F2F1BD307B2 /* DefaultAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8F3F7FD348306025BE447B96E130A74 /* DefaultAnimationCache.swift */; }; - B42C81138A67C0F5F5319692819E0F00 /* Pods-QuickLocation-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F742F9BBDEE927B1CEBB85C83810BC8 /* Pods-QuickLocation-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B4834C595092A16BC05744CB4D7E6CC2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - B48A975992E58328254C494F133DE467 /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = AC86EDE9FF4EF53151A9DBC007517513 /* NSObject+MJProperty.m */; }; - B49B2D5BC6CD6BE522D76CC1B4B78B71 /* sharpyuv_dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 905D38CB18C6D7D4FCFE589AE6168BA5 /* sharpyuv_dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4AF2DB1C39D8E8AD3A28DF1EB48D43B /* sharpyuv_cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = CB5F439F4729CFD04024FF05BCA74AE0 /* sharpyuv_cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B4B5D09B6C943A88805B18833A836718 /* YBIBCopywriter.m in Sources */ = {isa = PBXBuildFile; fileRef = B10210F7003D8FCDC58E9897BF8F9A7C /* YBIBCopywriter.m */; }; - B4EC613823F8FACC3A49812C18BC5AF4 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 45A6C83A799C0C051A71B753EBF2E0C4 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B5093BCC34D41354EC39E646BF28D580 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF349643C3A63B3C5D763016F77EF7F5 /* Observable+Bind.swift */; }; - B50CAB2E13D6CA8AA00F024343B9129D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - B53D9A285B3015EA413FA05765041026 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13E5190A07461E9AA35ECDE444AE8025 /* PrivacyInfo.xcprivacy */; }; - B5556D21308AA5BA79A0624047839955 /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7F0E8464FD7AF4F138EB5EAA5FA48F4 /* InfiniteOpaqueAnimationLayer.swift */; }; - B563C32EF8CF73F290ED561473CC681B /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC2D2851101B7855064121BBFD5564 /* BehaviorSubject.swift */; }; - B56F252576BC6F84DE40D50006FC21E6 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A774383BDFCF0DCC96A12872CBD4BB /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B5858E60C0045D05C618A1007ED5599F /* PhotoEditorFilterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AC1D8D7E70806DAFFF676321C42C9EC /* PhotoEditorFilterView.swift */; }; - B59E167A7323D3F0E727AAE4417ACA03 /* Entry+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DECC62F44E2E42AF9DA7B4D12D109AD /* Entry+Serialization.swift */; }; - B59E60FBC9665FC1061B88B8E6FD9FAF /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2641DD06874437DB484DC2A833AACEDB /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B5A43FD19F22727998A5D4EC2D146DAE /* YYImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E50B64226D3560CAF37B63F959E322 /* YYImageCoder.m */; }; - B61DF7E3F4B364D1C76D967F71676C9C /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BE68E3C8423A0C2B3B2F147C351569BD /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B6456227FD0D52F4612587F38FE03104 /* KeyedDecodingContainerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E919CC6590A0AF2C026C7FA6371EFD8 /* KeyedDecodingContainerExtensions.swift */; }; - B666FAB7B1025CBABB994FABECC3E75A /* DotLottieImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2739ABA43794B9409EE2F3DDA37D1A7 /* DotLottieImageProvider.swift */; }; - B66E00F5B93F21B87D00BBFFED5D1E14 /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = E653E3EC2CFFB240C0B26C63037A8603 /* AsyncSubject.swift */; }; - B673D2E104D413AA84CF2924084B4596 /* OIMQuoteElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B160D855FFEF98949AC7D84DF900D91 /* OIMQuoteElem.m */; }; - B67EF56AA99C48A55752847C721D65F1 /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13FACFBC79FA95702703916C3A64ECF /* Debug.swift */; }; - B680C2604BD8BC9644AE7C67BC46B9BB /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E3AB8EB5CD905844D10DD03E94B4F6 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B6C6293CADE3F065D6EFDBAFEDE7668B /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89242402665F619FFC3F3B24AE76ADD2 /* Generate.swift */; }; - B6E41B29F0070DC15F62FD34A8DFE647 /* KeyframeData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C4A9542376C040D061E6FE28C2DB9B7 /* KeyframeData.swift */; }; - B7411DFB7E022539E8D860F784CE165E /* UIGestureRecognizer+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3371BF35BC76F7D9FEB483B31F4A8082 /* UIGestureRecognizer+Rx.swift */; }; - B74FEE33ADD328185A51EE3A14BF754B /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8F9A75D00E6A2AE71D19B551AD747C /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Private, ); }; }; - B77AAFFFDADFBD968027A516A913C2A3 /* SetBehaviorsProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 249F08F366A61A80DBF012BB16BE82AC /* SetBehaviorsProviding.swift */; }; - B7B1143A40E02A017FC3A5337E196138 /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60011C2C50FFAEAC7F35E0F62890FDD6 /* CombineLatest+Collection.swift */; }; - B7C4190C4B24D435ACDFF3495EBA2DC6 /* YYFrameImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6815C778E5D2D39FDC2284C3868D2F07 /* YYFrameImage.m */; }; - B7C57A55A892301550A7BEFF1C9E6754 /* YBIBVideoData+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0DB89854D24E5D70FDE2EA792BBCE4 /* YBIBVideoData+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B7D4A8BCA9A76AE4952E96EEAC908D20 /* cascade.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A2D3C3FF94DFA55B6240A4E3F7EF71 /* cascade.swift */; }; - B7FB51D80B098D03F81DF426A2F80142 /* TargetType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9A7F9B1E648B27FC9190CFEA462392A /* TargetType.swift */; }; - B81BDE79894EC150074DDE2B45B32093 /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEBCF31BB53A7A17C21471A5D93034A1 /* OperationQueueScheduler.swift */; }; - B8541120F3126DC519E6E26FD850AAF2 /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A5BAB2182C418AA259E530EC867EDDB /* RxCocoaObjCRuntimeError+Extensions.swift */; }; - B863E4ECC1232754CF9ADC11898A8259 /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBC4752255378F245AD160803FB5186D /* TakeWithPredicate.swift */; }; - B899D80B7E9444646D3EBF6B0084CBB1 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 680A88CC00CB2961A0B5247C9F2AFDEB /* SDImageTransformer.m */; }; - B8C2356F35304D8A9AB06A3AADA00C4E /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AD3C64E24C009607CBD92AC885EF423 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B90209EF771CACC6796001936D684F96 /* ViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E60DA40527A43576DB5B9BD90EF96BE /* ViewType.swift */; }; - B903049E7C1BED7918DAB208754107C7 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB6180AA64A729F29163E3E4DA72B8DA /* ConstraintMakerFinalizable.swift */; }; - B933657988FFD0044335D648936B6B3E /* YYAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 366510E521C9064578CB795725F0EF55 /* YYAnimatedImageView.m */; }; - B94F1F1193404C2E45C1E34D1745406A /* DDASLLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A87EEF8234577813707C2B05EA16DC /* DDASLLogger.m */; }; - B9AD528414906CA2F7EFC29C105A4835 /* YBIBScreenRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B41E31317DB329D97E70B6AE1B3AAC /* YBIBScreenRotationHandler.m */; }; - B9C4A527640636F2E81CE6B3DAA86A76 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7E2AEED7BA2AEFE99F0369B0A398E2 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B9E2DC5B8A62D07383AE695D13A30CBE /* OIMManager+Conversation.h in Headers */ = {isa = PBXBuildFile; fileRef = 65AF056AC49D66AA67CE8E4CC5F7ABFC /* OIMManager+Conversation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BA2133874033B6E2A7DB5F7900DBFC00 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 50ED832AF109F2B258D94F54C004E6F6 /* SDImageCoder.m */; }; - BA2BF63F7311BB19D1584B948436162B /* IQTextInputViewNotification-IQTextInputViewNotification in Resources */ = {isa = PBXBuildFile; fileRef = F956E149F5B195BB7833F97FC6211AE8 /* IQTextInputViewNotification-IQTextInputViewNotification */; }; - BA2FB695DEB0D179253EEB8DFCE3578B /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4301E59E401F1C6F4638E1B62F53C1DD /* SnapKit-dummy.m */; }; - BA630891DEED7C86255D158198B277A0 /* IQKeyboardToolbar-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BA4DAE10AD47725EEC376152E05E20C /* IQKeyboardToolbar-dummy.m */; }; - BA904ABA8ED36CC4E5EB2B2004CA1F18 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = B8BB502A0A93569100EFA0D73E3A13AE /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BA9ECBC5C994B303E135BCAE0A5A5047 /* Combine.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BB070EEA28E7CED98A5D3FBC546B2023 /* Combine.framework */; }; - BAB98DDCE1A65F6F377E0318A4782874 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - BACE03596343C2C83670A3996164D2F0 /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DC7E49D8AEF596CCFD395189A1C41EC /* RetryPolicy.swift */; }; - BB06C36A7FC540F344FE52110DDB261B /* IQTextInputViewNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E67302D9EB7537412F3092EFC7E74F0F /* IQTextInputViewNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BB1AC47D956946D637412FF465A81839 /* FileManager+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E794613B7B4967B7E315E58575C19E8 /* FileManager+ZIP.swift */; }; - BB2655E6FFEB70EAD084C745DA7D46C2 /* ValueProviderStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A2A7C5D27987780C1AD46450EB28461 /* ValueProviderStore.swift */; }; - BB38C83C7216E02ACF4EE149FD2ABC71 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2B336DD1382EE765ACAE769343CFE2 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB8854955B704BFF79EDD38538B9568B /* OIMManager+Login.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A34944CB3A07DB54E4A187735E5EDB /* OIMManager+Login.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BBBCA687743C57954AF34D4FA17B0CDD /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABDF1BFBE98F3670973FDD3336644BFE /* Repeat.swift */; }; - BBF31B50E3CEE27B78E54554DDA3052A /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAEC149E660F72FBA6F717D362ECF1F5 /* TestHelpers.swift */; }; - BC2F9B1D6986FEB23B4FB1288B512538 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = BF48EC27DD64ECC464ACB1471E51E2EB /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC99EADD6CA621D15EE88F4124E03F67 /* nwise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D5CC7490D18D68B024892F6BD86A7B6 /* nwise.swift */; }; - BCA597780C9ECA993B3E2754BE10BD91 /* TAAnimatedDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = F8E0F9310F8F3E8573FC448EDC98B78C /* TAAnimatedDotView.m */; }; - BCAC5285AA980D6A1970FD5B675BE970 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D7E275A9F465A83ACE378819BCFC362 /* libwebp-dummy.m */; }; - BCB96268C31A7DC83278A57060F1C1BE /* PropertyWrappers.swift in Sources */ = {isa = PBXBuildFile; fileRef = B26E10D04B2569140F59199A5C55C891 /* PropertyWrappers.swift */; }; - BCDAD53CD04F72114FCCBBDAE04D98C3 /* AnimatableSectionModelType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B13474C01D1C0B90896134215E5A5CEF /* AnimatableSectionModelType.swift */; }; - BCDC570FFC8ECF182211F38D61380307 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87ACE2C6A3A01ED7E5CD2D9E5B2B24CD /* Empty.swift */; }; - BD0554EA3BE2DF1255C6EE1ABFE654CE /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 094C71050294A146BB656949DAC3B8D6 /* SkipUntil.swift */; }; - BD30193C1E3D7B1F17B1B1F3F08BE655 /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F9DAB514C5BF79351540417F249261B /* UICollectionViewLayout+MJRefresh.m */; }; - BD716C672AC697BF23137D2E8E0F04E5 /* AnyEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2BF88E4E6955245A365CE72B7B29331 /* AnyEncodable.swift */; }; - BD867501B9A45D71635E695B52E57BC3 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 872036297568467805CDE1401346D2B1 /* UIImage+ForceDecode.m */; }; - BDA5C7CC91E86448237CF40954FAC5AF /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C04BCB613C18841E80E12AD65B54EB5 /* ConstraintMakerRelatable.swift */; }; - BDBD6CA03A46A81DA14E6D71A58C762B /* DictionaryInitializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E5D68AE59A4587387B9319DF7CF3358 /* DictionaryInitializable.swift */; }; - BDCA442F91AB58B88ACB311DF4A4B6EC /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58B9B2BED448FF6B8E278E87D6D430A3 /* QuartzCore.framework */; }; - BE05FF3437D5037E064F74C06AF9299C /* IQKeyboardReturnManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEC48A026B01DBA97EE27FE1A72019A8 /* IQKeyboardReturnManager.swift */; }; - BE166E4649CBB47AD13D7ECE120B756C /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = B32EBE3B8C04AA6B4171868801375329 /* ElementAt.swift */; }; - BE36C6B3898E3E82A7881FC4DE33A115 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 924741FD99920A8D329E493A5868847A /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE3D084BFA4E05F1BEB1E1B5264C965D /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 27D9BE3D24E10967CFE1D61E94371D91 /* UIImage+Metadata.m */; }; - BE84D546F834D2102993E61B0D2997FF /* SGSoundEffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 612B3D3A7C5E1084E5EF5EC8A5C44A27 /* SGSoundEffect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BE8527AE8767A7B99250200F93B54A02 /* OIMSearchParam.h in Headers */ = {isa = PBXBuildFile; fileRef = 54840BCE2FF7D34360F15C8D7EE872EC /* OIMSearchParam.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BEC53EA209B4092B02F378CDA0345F24 /* TimeStructures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C26C5D03455E309DF3A4CCB403C5CB1 /* TimeStructures.swift */; }; - BED118EF040F7D9B701E1749380AA3FC /* OIMPictureElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2F7CCC851477208D59289153C67F97 /* OIMPictureElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BEE2FE4E2322B71556DF0C94E641E84B /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = D73E24376EF4CAD3A86EF871E59DA6A1 /* InfiniteSequence.swift */; }; - BEE8E9644E23F619F7E3885D01D9F8BE /* SGPermission.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DD2273F4ADC8FF6EB64FA7E9A31E108 /* SGPermission.m */; }; - BF0C3D2782FE1425C2F1F8827132A94B /* MJFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AAC2C1B32FB6621960C9A8DA2B3F93B /* MJFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BF1AE4D97E813B95C43EA4A298B973D1 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44AA35264925F43D3EC251BF229096B1 /* LayoutConstraint.swift */; }; - BF22D137EF6324675FA50080C5D93C00 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E8846F57F00F87FD95FD897542C502 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BF5243244DA073DE56BE0B098B12E015 /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F5425BDC1B6DC62C60458D483CDA77 /* CachedImageProvider.swift */; }; - BF925AAB97F5FFC66B472FF8B068BEFD /* DotLottieCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFCED4E784FD6B990CD666FDBBA0A426 /* DotLottieCache.swift */; }; - BFBCF008C63FCC212437B59E8146181A /* VideoEditorCropView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED63C76DB0E4B5BC896EBC92A06916DC /* VideoEditorCropView.swift */; }; - BFC91BBC42B944C2D7117AC8DEB6E364 /* DDContextFilterLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = CAE3B4042285FE77961E90A1CFBB8D5B /* DDContextFilterLogFormatter.m */; }; - BFD960743F2B1CB1FA7B3808284DE99F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; + B3EC2DE8A5B6FAF5ED30071E4A3D9BE7 /* DataRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A22DBEDA2395191F537EFCBEB528C98 /* DataRequest.swift */; }; + B3FCB3CE60F4C86B4E560EC64D1DD97E /* DidSelectProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1238DCD625C5D81AC5BBEBBA05973B84 /* DidSelectProviding.swift */; }; + B3FE6E966F4807E217609F2F1BD307B2 /* DefaultAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0D804C76B78471CEB59B3283599A1A /* DefaultAnimationCache.swift */; }; + B4834C595092A16BC05744CB4D7E6CC2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + B48A975992E58328254C494F133DE467 /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 69B4A7FF944AD82C79E440C8DF908199 /* NSObject+MJProperty.m */; }; + B4B5D09B6C943A88805B18833A836718 /* YBIBCopywriter.m in Sources */ = {isa = PBXBuildFile; fileRef = C677F1F6911AEB8A0B1C0078557F254F /* YBIBCopywriter.m */; }; + B4DE36E030A0E5870E03A7BBD5B6701F /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = C577C2D8E39F304146E0343775615D10 /* Queue.swift */; }; + B5093BCC34D41354EC39E646BF28D580 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 071040A220C8B1B13643EADE3387CE25 /* Observable+Bind.swift */; }; + B52287026E457779C0D5D379252381D4 /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8C4C72BC795A5A37AB73555B0E71B23 /* VirtualTimeConverterType.swift */; }; + B5467510620EC8C411023B2C49B040BD /* YYImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4B6E74F07CE1CFA6740CC7367A9A59 /* YYImageCoder.m */; }; + B5556D21308AA5BA79A0624047839955 /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1114FFC890A3B15EDE446EAEE06B9F2 /* InfiniteOpaqueAnimationLayer.swift */; }; + B5858E60C0045D05C618A1007ED5599F /* PhotoEditorFilterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81270878AE486291AC7784104E82FF1B /* PhotoEditorFilterView.swift */; }; + B59E167A7323D3F0E727AAE4417ACA03 /* Entry+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3ACFB997E95585F568A813FF855B02A2 /* Entry+Serialization.swift */; }; + B59E60FBC9665FC1061B88B8E6FD9FAF /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CE033DD89D2C7F468E6CF4145EF8AB3 /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B5BE51A4B56D53A453BF0090448E8CE2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + B6456227FD0D52F4612587F38FE03104 /* KeyedDecodingContainerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F88405DE450E285D5F5B8F3AA9747866 /* KeyedDecodingContainerExtensions.swift */; }; + B666FAB7B1025CBABB994FABECC3E75A /* DotLottieImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 992563FFA7421581C3FDF8EA91BA1F9C /* DotLottieImageProvider.swift */; }; + B673D2E104D413AA84CF2924084B4596 /* OIMQuoteElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 935291735FD863A36C3BB6A8BDF7A2F9 /* OIMQuoteElem.m */; }; + B680C2604BD8BC9644AE7C67BC46B9BB /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 082BB2C211CC761AE7176E1C91AA3E68 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B6B29C558DA1B544550B5C1985FBA705 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 87CF4E5FA9EF74820C9D72AF08A6E3DF /* SDAnimatedImageView+WebCache.m */; }; + B6E41B29F0070DC15F62FD34A8DFE647 /* KeyframeData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 826DA11AB28DAD5B0EB7826B29CFC100 /* KeyframeData.swift */; }; + B714E9245E38008BAE86E8DCE9852153 /* IQTextInputViewNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 997167D7CBCAD446D8B3CDD072502918 /* IQTextInputViewNotification-dummy.m */; }; + B7411DFB7E022539E8D860F784CE165E /* UIGestureRecognizer+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1D497158B767F77BFA5E0748C677F85 /* UIGestureRecognizer+Rx.swift */; }; + B77AAFFFDADFBD968027A516A913C2A3 /* SetBehaviorsProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0EDB4D93155CAEB727C0AB45713F6D5 /* SetBehaviorsProviding.swift */; }; + B77BBF03AA212B2E36FF222796FD5A65 /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89F0017E752468FC04ED5B3CB8071A4 /* BooleanDisposable.swift */; }; + B79256A42976EC65C45648B7AE06478C /* IQKeyboardToolbarManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6A149B6BBD06C2232430F6ABB7B1407 /* IQKeyboardToolbarManager+Internal.swift */; }; + B79597B425FDD864097AB365CE8E43D8 /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27DD104205E990BA251147A8755AEFCE /* Zip+arity.swift */; }; + B7C57A55A892301550A7BEFF1C9E6754 /* YBIBVideoData+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EA7C9A78827F0C1A7A33C41BAAE00C77 /* YBIBVideoData+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B7CBF06317A4D75FAB6B9A0E9463E6A0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0E1989088B503751B4F0FDA7441A4656 /* PrivacyInfo.xcprivacy */; }; + B7CD4F8DF0A1CCC8E238605BC22C053E /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2C52DC8C30B74D4C622E1D2D88BAE /* SDWebImage-dummy.m */; }; + B7D4A8BCA9A76AE4952E96EEAC908D20 /* cascade.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57E872926A9F0A58259D98D0E6C8AD28 /* cascade.swift */; }; + B7F113A612A1048CDC190D435D1F7CE1 /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B9D8C163A245DEBF92CAC1EA5471D36 /* Skip.swift */; }; + B7FB51D80B098D03F81DF426A2F80142 /* TargetType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B583A8D3B15E63BC12FB32D1F96844FC /* TargetType.swift */; }; + B8541120F3126DC519E6E26FD850AAF2 /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41497B385EDAC9F73A4855C08692FDB1 /* RxCocoaObjCRuntimeError+Extensions.swift */; }; + B86CE44BAAF1C2379BE06AE0C9C3835A /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 930A966769BFBCE4E38BBE706B3106C9 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B876DC1AD722CC2597B54B608293FA84 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 365D92843D9B2C992588045959368206 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B89593FC8F1FD6132EECE6FF20013CBD /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8CF20E73C6434D4119C8CA90DE8CE77 /* ObserverBase.swift */; }; + B8F36C55BE219F6B7E9960D5580C72B6 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D330042F8A70A7845C60AA7BDA165452 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B90209EF771CACC6796001936D684F96 /* ViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C36DE6C3FC332032CD0B60D0BDA7563D /* ViewType.swift */; }; + B903049E7C1BED7918DAB208754107C7 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA81E3B3EDD71C5E60450FB07D07DC17 /* ConstraintMakerFinalizable.swift */; }; + B924B23E166C657CD6799A9ED008E55D /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = D27DD767F6F3E75D625CE059F48E6518 /* SkipUntil.swift */; }; + B94F1F1193404C2E45C1E34D1745406A /* DDASLLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = DE06532E7C05F4532ABBECA80B3BFBE3 /* DDASLLogger.m */; }; + B9AD528414906CA2F7EFC29C105A4835 /* YBIBScreenRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EE24F78A7AEEC8FF75CCB9FA0A47036 /* YBIBScreenRotationHandler.m */; }; + B9E2DC5B8A62D07383AE695D13A30CBE /* OIMManager+Conversation.h in Headers */ = {isa = PBXBuildFile; fileRef = 387A1E82C97FC165F805C0A885316D08 /* OIMManager+Conversation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BA2FB695DEB0D179253EEB8DFCE3578B /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02E757561295961F2661E2AEDADB230A /* SnapKit-dummy.m */; }; + BA47662F9A5020F099D17EA1CADB05BE /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B59F6D2D32C4EEE3ECDEF9CE11B50D4 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA76235961947F402695F8A346265B6C /* FramePubComp.swift in Sources */ = {isa = PBXBuildFile; fileRef = C093540FF30E4F3FC0F5546E3FA8958C /* FramePubComp.swift */; }; + BA904ABA8ED36CC4E5EB2B2004CA1F18 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = C31A05C7D26DBD0A551AA3C91D73FEFF /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BAAAEEF4190DC0417746E6F71736409A /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = C4822263D21DDDA08A1EF2995BBE39B7 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + BAB98DDCE1A65F6F377E0318A4782874 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + BACE03596343C2C83670A3996164D2F0 /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77FD67ABAAE7C891D12DD57D0E9D1D83 /* RetryPolicy.swift */; }; + BB1AC47D956946D637412FF465A81839 /* FileManager+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 524B28EBB88699EA3D332A42A3619B8E /* FileManager+ZIP.swift */; }; + BB2655E6FFEB70EAD084C745DA7D46C2 /* ValueProviderStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39139551D157EE1146CC15CFBEAFC945 /* ValueProviderStore.swift */; }; + BB6E8486F92FCD3E177730B8E01D0BDF /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD45EF31979AA82A13DD5D21DD34ADD5 /* Bag+Rx.swift */; }; + BB8854955B704BFF79EDD38538B9568B /* OIMManager+Login.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E0AFB41829ABCBA41B2E4A12FC1FF8 /* OIMManager+Login.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BB9663727F1154B67FE78531F9D27411 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58040DF6D7E6F543B8DB10D3E910311E /* ThreadSafeDictionary.swift */; }; + BBF31B50E3CEE27B78E54554DDA3052A /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = B92051DFD1B8964C84F2CCBDEA5D52B1 /* TestHelpers.swift */; }; + BBF958606E2F274F7FEF9F54B7A8308B /* YYAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EC813ED21BF52910890B2D6E3F54ECD /* YYAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC0830F2A2C68B289F2B438F1E3A9FA9 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 055298DA034E8AA9E33D79D490271D2D /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + BC2F9B1D6986FEB23B4FB1288B512538 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF92AF5D8DFCE759BF000B71F0DA02E /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC99EADD6CA621D15EE88F4124E03F67 /* nwise.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6153CC74CC2C4EA27387FCAB1619F3C /* nwise.swift */; }; + BCA597780C9ECA993B3E2754BE10BD91 /* TAAnimatedDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46401BF2160F11FED118E9A0C76EDE18 /* TAAnimatedDotView.m */; }; + BCB96268C31A7DC83278A57060F1C1BE /* PropertyWrappers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836002A544C87F9B72FD7E93C2F30BB1 /* PropertyWrappers.swift */; }; + BCDAD53CD04F72114FCCBBDAE04D98C3 /* AnimatableSectionModelType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78C01105638592D5D6B38F6C58CC2EE0 /* AnimatableSectionModelType.swift */; }; + BD30193C1E3D7B1F17B1B1F3F08BE655 /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C7AF6A4A7D873A5927E9BB5781FC818 /* UICollectionViewLayout+MJRefresh.m */; }; + BD716C672AC697BF23137D2E8E0F04E5 /* AnyEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 365A6611E9FB12240170EE665EF48284 /* AnyEncodable.swift */; }; + BD7649E3EC6317949AFC2234998F0F91 /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2ACDB20B7A0F28B516DC1D2EC6212E5 /* ScheduledItem.swift */; }; + BDA5C7CC91E86448237CF40954FAC5AF /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C17147FB45C2F91E3F4E0561AADD510 /* ConstraintMakerRelatable.swift */; }; + BDBD6CA03A46A81DA14E6D71A58C762B /* DictionaryInitializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B24AB5AFB6F42668409FB20FBF37EFE4 /* DictionaryInitializable.swift */; }; + BDCA442F91AB58B88ACB311DF4A4B6EC /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F2C997ED187FDEF21DB00D42F13F8ECC /* QuartzCore.framework */; }; + BDFBD6034EE2B4CBF1161BB7C5E9E6B2 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D695561A56C2DD9E3D9132C6DF66CAA /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + BE587FAA51EAB21A65120F5FBB61AAB3 /* ReplayRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57392B079508E1A952EB83F397A6AD5B /* ReplayRelay.swift */; }; + BE84D546F834D2102993E61B0D2997FF /* SGSoundEffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5F06A8E927D1486C8E2BE4C3CEF5B2 /* SGSoundEffect.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BE8527AE8767A7B99250200F93B54A02 /* OIMSearchParam.h in Headers */ = {isa = PBXBuildFile; fileRef = D79DA9ED5F22B3153EAF6FB853B9ABCE /* OIMSearchParam.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BEC53EA209B4092B02F378CDA0345F24 /* TimeStructures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15CF4020595F378B3FBC56EF16E33756 /* TimeStructures.swift */; }; + BED118EF040F7D9B701E1749380AA3FC /* OIMPictureElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C69FE3005EC8FA3F9D8FCEC50F6CC8 /* OIMPictureElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BEE8E9644E23F619F7E3885D01D9F8BE /* SGPermission.m in Sources */ = {isa = PBXBuildFile; fileRef = CF88F372EC85C9D417C7FD9226BE7F3F /* SGPermission.m */; }; + BF0C3D2782FE1425C2F1F8827132A94B /* MJFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D7D7A97A7089AEDDA405B472981349F /* MJFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BF1AE4D97E813B95C43EA4A298B973D1 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBBBC8E8624440C8A9F3BC5407C904DD /* LayoutConstraint.swift */; }; + BF20215DA2E88848DEBB33D1A4CDBC32 /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D526378FA358EC2F96BAC5D581EFC75 /* ObserverType.swift */; }; + BF22D137EF6324675FA50080C5D93C00 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 130A9347ACA3AD097CD3B70D8B774B49 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BF5243244DA073DE56BE0B098B12E015 /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD86A09242BE8D4BF03B42D158E5C0D9 /* CachedImageProvider.swift */; }; + BF60F24164C7F3F7FA05A86398D9D967 /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BEBC5BCFD6362440D9D4603E86772C0 /* PrimitiveSequence+Concurrency.swift */; }; + BF925AAB97F5FFC66B472FF8B068BEFD /* DotLottieCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94C3D7F5F5DD3200C6843026A2749F7E /* DotLottieCache.swift */; }; + BFBCF008C63FCC212437B59E8146181A /* VideoEditorCropView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06875FDB4D66D9C998AEF230FEF92724 /* VideoEditorCropView.swift */; }; + BFC91BBC42B944C2D7117AC8DEB6E364 /* DDContextFilterLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1692A7D7BE4DE1B7E024C490612EB31B /* DDContextFilterLogFormatter.m */; }; + BFD45DCF81CA6FAE63F89D08066830EC /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF134D80E9619348A65BBB751BB70BBF /* IQTextView.swift */; }; + BFD960743F2B1CB1FA7B3808284DE99F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + C00938977A12337E087F0515C3F95647 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = C30C54F5FE080C171CB0A8068F86BE2F /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C00F636B88A0D45DDE34552361077A86 /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8260423FE880738627BA58E39088AE6C /* Using.swift */; }; C02CB58228C5C63ACB718E85C69AC71A /* lottie-ios-LottiePrivacyInfo in Resources */ = {isa = PBXBuildFile; fileRef = 62060F5D524AE8173817ADD9482A0FEB /* lottie-ios-LottiePrivacyInfo */; }; - C06E2597B414ABD8F769C8BE7E132DF3 /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD4BBD0CD593005DCB8ECA0DEAF875E4 /* ObservableType.swift */; }; - C07CB3E9A4D1BF00F841E4285629A2B2 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85DC559A3ADB0AF3A0CC24573A6D4F03 /* ConstraintRelatableTarget.swift */; }; - C08BB02A69A559B80327D76DE7B45BA1 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 38A2C4F42AAAE1661BF9821201515A70 /* SDWebImageDownloaderResponseModifier.m */; }; - C08F4B423A39CCF69136F7ACFA5FFB4C /* Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25C66D833F862144506D82243BC20CBC /* Driver.swift */; }; - C09B37223BCC5B22BF7B29CFB1C68F8B /* RenderingEngineOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BB44B5239CC920575CAF69072F84164 /* RenderingEngineOption.swift */; }; - C0A27AF8E1BA202D8015FC341C905C25 /* SDCycleScrollView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E058257A7D0F02E7FB8985089EEC6E1 /* SDCycleScrollView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C0AD493AE4A8DC8FF960D753D6D971E3 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C1D99CE01FB6BB6346D7EBEF5BF9DFF /* IQKeyboardManagerSwift-dummy.m */; }; - C0E5BD34620B57EC98C5ADD30CD3D01E /* Trim.swift in Sources */ = {isa = PBXBuildFile; fileRef = 340B01518155A1C6DF9490C3B5583041 /* Trim.swift */; }; - C10B1478C4AB3693D886D94ADFAEFDFB /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDD4EA270A2514B7D7491E50CF6BA4B /* KFImageOptions.swift */; }; - C11354C639B096969AAA9734F14D0836 /* _RX.h in Headers */ = {isa = PBXBuildFile; fileRef = 75AB146FA8EACB2D7B8898EDB3F75A16 /* _RX.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C141940201901A38A684AB8A2426F099 /* YBImageBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B7DD4E4308B543CDB2A0B96FD8FD5AD5 /* YBImageBrowser.bundle */; }; - C14F10B663FE2898EACAB90C202B3F50 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C17C21B8184E139AF017777649C7942C /* ConstraintMakerEditable.swift */; }; - C1860BBFD363FE0FDB416A80F004718F /* LayerTransformNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67C415CE5B3DA27754A005F1E2626DEB /* LayerTransformNode.swift */; }; - C19F5F3FD38FA35CAA4915D576E7761F /* Core+UIDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67BB983FB1DF61CE58E767CA5AACA670 /* Core+UIDevice.swift */; }; - C1A5F0FC8A3482F772329209BE755714 /* CoreAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 687267D7FB090DB33AAF5A62DA1D0495 /* CoreAnimationLayer.swift */; }; - C2068AEACC2D9C7F1FFE41AA25B12A68 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA207F1841764F2BDB2505E309C0D98 /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C20ECE96A97688090D5FE186DCF7B5D9 /* IQKeyboardManager+Resign_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5400BB1D506451A1F627BEE91353F39 /* IQKeyboardManager+Resign_Deprecated.swift */; }; - C22290501532385B349FA0DA58710DB9 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 522FFC7277C7384DC812F49DAC6A2BD7 /* AnimationSubview.swift */; }; - C22DBBD7FBFD295C00185B5F614B74B7 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 56C83FF28405BC4C60D1E897F48C954F /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C2504EF0A847BB416ECE80CA2F9BC2ED /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC9309308C3EFA965298882EABE106 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C278A03B4975812C48A280BA391C23D9 /* Data+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CD26ACB38019F95EF4C9767072D150E /* Data+Serialization.swift */; }; - C2A21354D5DB755E780A9ABC1752E74A /* PHPickerResultImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D64F41A2745AE91DEE1543DBD286390F /* PHPickerResultImageDataProvider.swift */; }; - C2CD0223F067656A2FC851B7612916E2 /* YBIBImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E0979D045CAFD37581816EC0C09D3F4F /* YBIBImageCell.m */; }; - C2FE60A10C792613E45031AE6E851ECB /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E03E21D00A0CFC8BB4829B9104C22F /* MASViewConstraint.m */; }; - C2FF0AFBB1853A8459AC0432E6AD85A0 /* URL+Moya.swift in Sources */ = {isa = PBXBuildFile; fileRef = 571DADB16DAF9DD3606BAC0AD82E99A9 /* URL+Moya.swift */; }; - C303A4E0C86C512F7DA7A841C5BC000A /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FC7510690F9C1195797935F509A996D /* LottieAnimationView.swift */; }; - C324848DC9989E558C88F00CBF82C95C /* DecodingStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86CDC89A868B6D3092C6F3EE456FC553 /* DecodingStrategy.swift */; }; - C3297A7121B4CBEBBC8FDAD4279118AD /* LottieViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C664CD013CBAA23F9525F2EC6C50AC09 /* LottieViewType.swift */; }; - C36F0742777344AE9C9EC5B393E39A66 /* PhotoPickerViewController+SwipeSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCF8F600071E7B3102920CAB6FF48BAF /* PhotoPickerViewController+SwipeSelect.swift */; }; - C37E014356FAFD96EF5488586DBD6E11 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF51400637F64015372A2214FB9C7DBC /* SDImageCachesManager.m */; }; - C387C8843E8133D38863C2B409539913 /* PhotoEditorMosaicToolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41F90D943D1430057060CE7D0D884CEC /* PhotoEditorMosaicToolView.swift */; }; - C3A2D804B1EF219B56E7EA71585CB148 /* NSButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCD3A21323E36012C189C0952F31DAE8 /* NSButton+Rx.swift */; }; - C3DE4CA7617C9BC6EB538E0A23303DBC /* DDAbstractDatabaseLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 8062C80A2CDAA60C796028D49DDD5B04 /* DDAbstractDatabaseLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C4005FC583ECAC0694F5042A24F8B663 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C77D66DCCBD20AA11966F53C867FF4FB /* Accelerate.framework */; }; - C405A16EDD5CB5C1FC7EEA7856D73DAC /* PhotoEditorViewController+Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8203A43BF6030189020CD4BD6F61CE28 /* PhotoEditorViewController+Animation.swift */; }; - C41750A380D75A5B08EB714F5236FF0F /* BaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B05BAD2FED8BCAA8BC346D23A2E4C934 /* BaseViewController.swift */; }; - C437FA9AF753C87C55F0849F7E1E176E /* UploadRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00F55D2694BB24CBDD85533DCDB7FC2F /* UploadRequest.swift */; }; - C462F17EDE150EF6837F0524C632A64B /* YBIBImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FF70490B2E1F91F3313E405F04F864 /* YBIBImageCache.m */; }; - C46464010E864ECB7A1F16073A402380 /* Optional+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 345CFF4C2DE56AFB5B6B340E3433F8F5 /* Optional+Extensions.swift */; }; - C48A9E2CABF2ABD7D954BC1FBB6D3C77 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DAF97AA6C3E4088F2E9F27E50E1B400 /* RedirectHandler.swift */; }; - C4CF908B22439772FC5FA601B3C481B2 /* AssetManager+LivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DAF66AF9A10C8CE260ACFC74496E828 /* AssetManager+LivePhoto.swift */; }; - C4F42EBCA4302C49201476B324A8E679 /* TransformLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B281FF7A2ADCDBC7ABCD018AE61A7C48 /* TransformLayer.swift */; }; - C50703A0335F75D79E28A40A1A533D8B /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84364ADC8106E744D74626D2D0AEC0B7 /* MobileCoreServices.framework */; }; - C51F243E04F7B1B1D8B6A0D8B5E5B940 /* EmptyViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECB898FD774D9886C3F4389AF60B275C /* EmptyViewConfiguration.swift */; }; - C5320CD53E83230B2207534005DDD183 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C5F40A9D38F5D71424CF3307F62112 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C57B18D85E8D7A47D74E16B95F37C88B /* once.swift in Sources */ = {isa = PBXBuildFile; fileRef = 705E874F6D90A41BB91F8827850D08E5 /* once.swift */; }; - C59E3FD52D5408C08FDC0E6FE6266C3B /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A9024578942964BD08F0109992B3280 /* Source.swift */; }; - C5C81E89EA185839DE018B2C1FDBEF37 /* TimePeriod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 533D9571D1EC332BF0EBA2C3A4F8E994 /* TimePeriod.swift */; }; - C5D1719D9646B00FF98E064E46508BE8 /* HXPHPicker.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 02DBF5316B8E0D522ACE204CE91F2E5C /* HXPHPicker.bundle */; }; - C5F059E06474BFDCE4964679841A8484 /* CGPointExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAFDBAA1B3E4639B806A656741AAC875 /* CGPointExtension.swift */; }; - C5F4341339351B5E870AECED2E537EE3 /* UIView+IQKeyboardExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7FD01CF991B2947E8743F34F758F00A /* UIView+IQKeyboardExtension.swift */; }; - C60DB44F719853DE3B7157960DAF9270 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = FFC1B522A7D474FA4DAA6C62A6BEFB3D /* MJRefreshComponent.m */; }; - C6728BEB2195DED53EF713DB08BF8166 /* PhotoEditorCropToolModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F982914D28918E5ED7DABBD318AB9CC /* PhotoEditorCropToolModel.swift */; }; - C6A4302ACE006C4E2CDD481287E2916B /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80DEFE3B1718E8C2DAB2BE3561944DAD /* Typealiases.swift */; }; - C6E3DE7ABFB88E546E2A83435E48ED44 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C65529B177CF37DE07312C17C19A0D6 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C6E542DE6D61F7CD41340049F2D8FFDE /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 728805FD0FBBD9E7F0C8D7E8AA79948C /* AuthenticationInterceptor.swift */; }; - C6E75AF470A88DCA0D63040F5F34879A /* UITableView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3911F180E1B0182AC1A84D0FE3E4A4B /* UITableView+Rx.swift */; }; - C6F35BEA16F9EEEA1297311E01100AF2 /* Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8217A6F4149F4322FC3BFDAF3B20D784 /* Signal.swift */; }; - C6F45595676957ADBEC18EB3F23EAEC4 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BBC5AF8C3A9691541305496A8731034 /* LayoutConstraintItem.swift */; }; - C6FBF1708A9597C929A9848E48F3EF26 /* TextAnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5110D595F02FD67EECD601B158E606C1 /* TextAnimatorNode.swift */; }; - C71F72A5BEA7E7E2DA06517FD28CD703 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E4FA4C2B1EA9C47652450BD97F5DAC /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C72F37CACEC780E304BA0B9D1077EFCC /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = A57FD2A0791CC337715FFD68EBC59025 /* Response.swift */; }; - C75A276978CD42CE5FB7F99244E07808 /* ISO8601DateTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 889EAD92A301DE400B16BA95A2544CF0 /* ISO8601DateTransform.swift */; }; - C75C0D0545CF6B8B2A4B51DB97C57561 /* SwiftDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93EAA2A959A3EA70624A72F2FB588943 /* SwiftDate.swift */; }; - C7715123861E25EAB3E44E72397CECE5 /* CallbackProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 56B8A080F84269FEB98617E83C0454DC /* CallbackProxy.m */; }; - C7C6F1AD0C44C79C4A3416FCB32B0233 /* IQKeyboardResignHandler+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A53DA679B0F0E0C5A4B89F6FDDADC73 /* IQKeyboardResignHandler+Internal.swift */; }; - C7D693676710714878F4633AE77C881B /* OIMUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = AC8A56E876CE12D362A2C2E78A8D3CCE /* OIMUserInfo.m */; }; - C7EFB87F8415D2B0D1654745230578AA /* URLMatchResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DB6990AB0882562E03133DB23E906A8 /* URLMatchResult.swift */; }; - C81D645A697C6B9782CABFD8F06A93BF /* RectNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A5D9C68C0A84DD8FEDB37BAD59E8E7C /* RectNode.swift */; }; - C833FA17344A15EA1969FD585E7F4970 /* RxTableViewSectionedAnimatedDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85AB9F198071F4FFFD3967362E9EDB76 /* RxTableViewSectionedAnimatedDataSource.swift */; }; - C84BF5FCC4846F6CA4C505BD25E266C2 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD95C19D05E5141AD09F08757FE2699 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C85231B99C1BE80767753C368304A730 /* DateInRegion+Compare.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C22CE4CD1F8C21C3216ED7B7D0E2880 /* DateInRegion+Compare.swift */; }; - C857B8D2D0BAA5A8A764F9E1C4B85807 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E9EAC640CE6D964C3A01D2AD0D9CA661 /* ViewController+MASAdditions.m */; }; - C8EC35DFB0945DBE2F2FF9ECFE6D9711 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = D2F6C3141B01558E41612E3CB9A5B3F5 /* NSLayoutConstraint+MASDebugAdditions.m */; }; - C8F8EF7F872F391808687A0875D07F23 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F733D4160D39073D45BC056455B855F /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C937AC5DC84D468EBAB678025048B400 /* OIMFileElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E23A30B365807329D25B8ECAF0D6DF3 /* OIMFileElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C945CB4EC42271D435BF23E7749BE6BF /* IQKeyboardConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D7480D6550C594F75C2C72FDFB92E91 /* IQKeyboardConstants.swift */; }; - C95C753AE30159950F8DB7308DDF77BD /* MoyaProvider+Defaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 100BB5555346B3CAD8AB3EEC096C649E /* MoyaProvider+Defaults.swift */; }; - C9DC5FEA2934DB98043A547AAC973C97 /* CameraConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6268CFADCC4FF23E0CF60396A20648CA /* CameraConfiguration.swift */; }; - C9E19D164C26414115CC969ED9A303C1 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 73AAE64514CF9375B037045D901E983C /* MASLayoutConstraint.m */; }; - C9EBE0AD508E6B3A780A8FA0DBC68427 /* YBImageBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C537FE6F5932E4CC8555D24BCEFB66D /* YBImageBrowser-dummy.m */; }; - CA05084D970F9A48B7EC4F8027D386AB /* SwiftKeychainWrapper-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BA8CD97A30916CD9C77856C59D4A8993 /* SwiftKeychainWrapper-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CA140EEDBA04CCD8B9024CEC07C84A37 /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = B27D930CCDFA0E100210ECA696F0A212 /* CompactMap.swift */; }; - CA1CCD9DEB99136EDB8B3D33285BC802 /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A746BA66E73C424E8AAAA83B4F93FEBB /* SubjectType.swift */; }; - CA1FC14C840300F053C820C135E43161 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58B9B2BED448FF6B8E278E87D6D430A3 /* QuartzCore.framework */; }; - CA27CEC4815701402243AC17FF3D8209 /* sharpyuv.h in Headers */ = {isa = PBXBuildFile; fileRef = C2EBA132392950FF3765D57D57796814 /* sharpyuv.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CA31FEFC92EF7C84991037F938677068 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F7376569D3C3F89560606F792EFCAE3 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CA4CC5E18364E775EE169E4EE7A86FE7 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = A95AA6726D0817E43DE36A9CDFFAF8DB /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CA535DB1DBA1F7EE58FEC1A282360FF8 /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBF5747CA453C4BA37E67B413EF9E878 /* AsMaybe.swift */; }; - CA5FA2BC7F938675BEE80B531422ACDA /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 51BA12DF890414FF3DD09E9C68FA652D /* AssetsLibrary.framework */; }; - CA84D49AD6BC133A4CAC8238DC52E971 /* RxTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 059A00052A1FE8803E236797E5854769 /* RxTarget.swift */; }; - CB16D0B14DC2C1B1600F20B5AA3A7249 /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06EE3D85DB7CA93CAA94FA29AE45BFDF /* Observable.swift */; }; - CB25521BB6A401C4A6753F35624E179A /* mapAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 986D3638256A93D202D509D2EA916718 /* mapAt.swift */; }; - CB556EC39E590FCB9AF7EE22F5877FF9 /* DropShadowEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6A1B9FE2A7F11E3B46CD429C4BA078D /* DropShadowEffect.swift */; }; - CBC092378ECE1466F7B48E7DA94E8F32 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D77A6E5E115865516443F9DA796B6091 /* SDWebImageOperation.m */; }; - CBFC7E7CC7AA70EC3A3635B0727979C9 /* SGSoundEffect.m in Sources */ = {isa = PBXBuildFile; fileRef = C8317EDB1958C164EFD8B633A18F397F /* SGSoundEffect.m */; }; - CC2CEFEFB392E2AA75040A63D04B2400 /* Atomic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831ED1AC3678AC789F64583BA59A14C5 /* Atomic.swift */; }; - CC63E9DDAC7230E3EA8ECB73B9E0DA13 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE8173DD24489D8BFB8A788C54567E2F /* Filter.swift */; }; - CC70B453E389190B300C8CB7AB6A788E /* RxRelay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DB08296A6F18F928A00EC7AFDB47E3C1 /* RxRelay-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CC8416A27D23F24BCD2E857BE0F7D050 /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = E31B8E2DE2928272DE12C9F3AA9BF334 /* Vectors.swift */; }; - CC9889C11425435533883AC0C244153A /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FD85B1B451A0D803EAE3B5FA0006115 /* Materialize.swift */; }; - CC9CBC1F47B2FBA33DD0203ED7E1CF6C /* OIMMessageElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF512563DEBEF3926ED04F7296DA8B0 /* OIMMessageElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CC9E38183A1E0569E132A6DA920A9E48 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = F98D9C1BCC770B8E7D5CE310E26D0F4D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CCBBDEEFB29B358197D273C27B2FE6EC /* PickerTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC0ED2914A2752C49E36A33BF535265E /* PickerTransition.swift */; }; - CCCF77F411C28C0C0D8B6624E4ED184B /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EFFF31201EE4BC724B9C92EB8A90677 /* GroupedObservable.swift */; }; - CCCFCDB26235AF88D2796246E5CF01E9 /* KeychainWrapperSubscript.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5761947A8E5C4B96B80D8634E5181BC3 /* KeychainWrapperSubscript.swift */; }; - CCF13D8B4B07E8E4495DAB63FD02D402 /* Signal+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = D63215EDBB31AA1C7927001384586CCD /* Signal+Subscription.swift */; }; - CD137CB9D84195D6986D97B2534AE8FF /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0C85E19DE72AE17DD1F8E275523B4BF /* DefaultIfEmpty.swift */; }; - CD925EE71D8E482E486D2E5AEA77E0FD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - CD9E606578C993F9315256561691A76F /* Core+UIImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4D0E6975AA68BF82B50479B31188714 /* Core+UIImageView.swift */; }; - CDBE2CF1ADA30DC0A71C28250D08EA42 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - CDD07E44801C6B18EC5FA656DE04091E /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F425869866B28E3E578068ABC712AA7D /* SubscriptionDisposable.swift */; }; - CDDB6156405F579B06D7A801C664D48E /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 937ADC586D7A9572D0499B091531BB27 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CDF42ED6AF2C0252840DF2A724375380 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66632D9CC4BD0C730CF397F56806EA89 /* SessionDelegate.swift */; }; - CE57985823A81264B942F51EF4771A86 /* URLMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DAE16684B183BA733C62C1A5D862E6B /* URLMatcher.swift */; }; - CE58C177ED6AD34ADB5596F4FBBA0A0F /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 88A1873E1B4111D07E4764F077BE2840 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE593943A9E7CF83822CF60304BCAD43 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 937BB6E663A5DDF84A196EB20804E1C1 /* ConstraintConstantTarget.swift */; }; - CE60029474DA7D27FF1CA1EAD1548E47 /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F42F145897CD3CFBDA60FB0264DB501 /* ConcurrentMainScheduler.swift */; }; - CE7A7E5ED9E14B271B909410D101C483 /* Data+Compression.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB7D268FBB10E0D836B97C3928B5321B /* Data+Compression.swift */; }; - CE8BB3B50C1DDEFF60DD465EABC40A50 /* OIMManager+Message.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B686351F84A98FEEC222FA207E8D99 /* OIMManager+Message.m */; }; - CE9060F0B56A20DCF8151A74C7EBA537 /* TextInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = E37A739569DBBD3BECE189F4986936E1 /* TextInput.swift */; }; - CEC0AC2A77B3F8AE285DCF61F2F46E5D /* NodePropertyMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 350390ECD2B359290A8084CB7DDCEF31 /* NodePropertyMap.swift */; }; - CECA8162BFE05143ECD1DE4225B82B9C /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = A91F2AA5FE62815A42F8020A333595DE /* CachedResponseHandler.swift */; }; - CEE4E58F8C30B928A9CB1C045F169211 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 3081092804875B0A054049768857C958 /* UIImage+MultiFormat.m */; }; - CEE64CF0F327167627F8CC70A982EEAE /* RxPickerViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08050C89BDBFDA62A3F6EF30F6743FD6 /* RxPickerViewDataSourceType.swift */; }; - CEE6D85668589F0B8602190856BE1C59 /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 829687B94722C4B27AE1F6A929C38A8A /* AnonymousObserver.swift */; }; - CEED6F206BAE30C78F98B47385609688 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = FE4D3EFFD11310558DF46FD1F4BC3E8C /* UIButton+WebCache.m */; }; - CF1EC62E8A77D354F29EE22D25829C16 /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 750F89B19E3F2994003AEED155F64886 /* IQInvocation.swift */; }; - CF48E8DB6B85FEEBB58FB4AAD3F04D63 /* UIViewPropertyAnimator+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CF168F773685B0F062B7011CD49245B /* UIViewPropertyAnimator+Rx.swift */; }; - CF4F390AD14CD99E57253BE9D96DB274 /* OIMFaceElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C802E651BCE006BD4115AB9D594543 /* OIMFaceElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CF5F437F7201F79D3CE3BDE9D879F3C5 /* Region.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5751CB4FB7042A2EF15A1E430570581E /* Region.swift */; }; - CFB40BBCFE9C4381E5B367D25AB33B2A /* Cancellable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BB2959D3499F806D0273059BF3598F6 /* Cancellable.swift */; }; - CFBA04B4F951AC600813F7C6735C1A4D /* IQKeyboardToolbarManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E2AB0EB78B87ACFCF842238DC339AC /* IQKeyboardToolbarManager+Debug.swift */; }; - CFDB27ACA68B4C18C6DC1E51998D7623 /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = D33902803F47DEADED2DFA7B7C947887 /* HTTPHeaders.swift */; }; - CFEC116AEDE187E92C82DDDB62782D15 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 8839B71D73943CF891974FAA99B0A1FC /* PrivacyInfo.xcprivacy */; }; - CFF0F29D9670B80E247CF63035F01759 /* PhotoPickerControllerProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A8670B27DF4CBC108E75715DC9B290A /* PhotoPickerControllerProtocol.swift */; }; - D02739628E3C87FA50F6BC94BD08C6DD /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91FB2EE0D18C43ED23BA513E80509BEA /* Multicast.swift */; }; - D033FF8E0AE3251DE943B341D59D756F /* ImageLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F93EC958C215B385E15337C6289B91B /* ImageLayerModel.swift */; }; - D0382AAC74EAC957E55B1C0FAF9EC897 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CBC7A052D892803E76D2FFEAC1C3E83 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D03BD90BE0856C6DAD452338935F1F39 /* IQKeyboardNotification-IQKeyboardNotification in Resources */ = {isa = PBXBuildFile; fileRef = 120BD4C670EF00F4D5A40AA4B863A7AE /* IQKeyboardNotification-IQKeyboardNotification */; }; - D04A7B430798BB15521E4D2DBF41854E /* SGScanView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6491D6CBC9BF383CD1D2778BB5EE5732 /* SGScanView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D05D499E426C4CEEAEA63704CF36569C /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F09F941B55860CCB56708CB4F1FDA5F /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0BF696EF4334C8FBB5B80CA337FE3FA /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55FD0B6A9D6EEFE6A1C9B281B105F80F /* AnimationImageProvider.swift */; }; - D0D8491DF011B4E4EADEA80B20229F69 /* PickerResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA4B9D8BFF9CF3F65AD2916D9197DF2E /* PickerResult.swift */; }; - D0F33C234F469FDC4BB67C6651759826 /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1733D116F00BB7860C14898B3F57690C /* Endpoint.swift */; }; - D0F6FDC7286BCC69C228CD0FBB45B2A9 /* RenderNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B10279D7918F58546A902DD776F193D /* RenderNode.swift */; }; - D11C5FB6E97D1D93FEB7C07241BCC721 /* EditorImageResizerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C148AA1C2819A5B7DEAC0ECF49DDB109 /* EditorImageResizerView.swift */; }; - D1B32297F53DAC71DC34649E3A48CF32 /* BlendMode+Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5D7AA96F4C384FFC61ABBD9C65C7F0A /* BlendMode+Filter.swift */; }; - D1C08C6ABA5A78800C160E54BA22FA50 /* UITabBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C08DCD50DDA4F71C414AA7077CC96A96 /* UITabBar+Rx.swift */; }; - D1D3D33D88845292F2024C488E0D6A73 /* ControlProperty+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAC75994F054E5C98A812D17C7527B6E /* ControlProperty+Driver.swift */; }; - D2134585517FBCB5CD2463B4DBEE8E84 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = ACA84D9FD7A30E84D64FDD5B306DE077 /* PrivacyInfo.xcprivacy */; }; - D23A8B089BE2FEAACF5AFFA9451E7139 /* AssetLibrary.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB7856D2A89B795002794BEF5165A081 /* AssetLibrary.swift */; }; - D25CE6003CD20B30B691ED7372087613 /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72D229FA5EF1F07B5006BB07983E73F3 /* RxPickerViewAdapter.swift */; }; - D2854184492AB0652C029448967FE129 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3099CDBCAB77ED24E860C30FE72F7E92 /* ServerTrustEvaluation.swift */; }; - D28C6561309CE8EFCE535410C20898DC /* LegacyGradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C16BCB8E73F50157A1D93FED070EE1D /* LegacyGradientFillRenderer.swift */; }; - D298D386913468C9712081456C60D77C /* GradientRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7381A6E52759A60F4F9B92C1DE3B2E15 /* GradientRenderLayer.swift */; }; - D2A5F87B90C178639FECC0A3CB42978D /* RxDataSources-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57E9017AEEC33B5ECECDD10EAB6C564E /* RxDataSources-dummy.m */; }; - D2AF9A7FD73B95960FDA4FD06C4BED08 /* NSObject+MJKeyValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C25F3519ADD38A0760C364F56755FA4 /* NSObject+MJKeyValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2C6284381E6492284EBABC8369CF5AF /* Core+String.swift in Sources */ = {isa = PBXBuildFile; fileRef = 113A6CE4C212D09BCD02D88EBC5EACC6 /* Core+String.swift */; }; - D2CAB6C0EDD7A68CE6C7926A1B665726 /* IQKeyboardToolbarManager+Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1413AD37773953D3ABCC8A24322AAB02 /* IQKeyboardToolbarManager+Action.swift */; }; - D2D20DB2826B591D39A66F05E59AC05D /* FloatValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADEB27CA669C4121E999811969AC33BB /* FloatValueProvider.swift */; }; - D2D85A3965444DE82DFACDAF2DC42D19 /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 433934F1DC56FCF3A68958D44ADBFE90 /* RefCountDisposable.swift */; }; - D2F694ED8F2C032D38470A9A2EF24969 /* apply.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99DBBEE27AA60246E2BFF5947C21C49F /* apply.swift */; }; - D32B9186272E22BE3BD2B51CFC481173 /* LottieAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB7FA079A6480E26839E652C739D968A /* LottieAnimationLayer.swift */; }; - D349A9DB4770091311275B3791EDF129 /* Differentiator-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A37D6C6DD50F2C36D62037BC7142EC /* Differentiator-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D37E5FCE8CD9E5458533FF847C6CE6FF /* RxSearchBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C508E91145FD5398716837106BE87EED /* RxSearchBarDelegateProxy.swift */; }; - D39ADDADBD9EBD47CC36026EA6F1633E /* YBIBCellProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E0CE0ECA12ED2394C3ED2CEEE96A2BA8 /* YBIBCellProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3C863454612C752A1A4133C64972A5D /* DDContextFilterLogFormatter+Deprecated.h in Headers */ = {isa = PBXBuildFile; fileRef = 959731C5E318724CF5BC5D4444F684D1 /* DDContextFilterLogFormatter+Deprecated.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D4218DA55B2BA45937589200CC0DF1FB /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DAE279F4B34773AA505A877C76A03B1 /* ConstraintMakerExtendable.swift */; }; - D437CCD86DC6E52502FB1EAA60B58991 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = FF07CBD86423A03E1F891EF47BBD0D56 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D43B99296130183FFF11E193E38C42F8 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F033F3D3DD2BD7F88B3CFEBDF396ED5 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D4B981D7F517394A1CBA2BCDE4B01A01 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - D4F5C37FC3D64648FEC360903AF1FDF4 /* RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1B1B6D7D2E92F184F846249072A1E0F /* RxCocoa.swift */; }; - D524921E7AE9C9CF9326E7DA8F80A034 /* EpoxySwiftUILayoutMargins.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEC5AA73C23F8210E1D7C888097942B0 /* EpoxySwiftUILayoutMargins.swift */; }; - D548E4E0D9121E18DA31F2150791F9AA /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = E98072F9E435CA10388C986C4EAA96F6 /* Image.swift */; }; - D5758BFED1514C39F76D3845AD320DC2 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 43409DB5BB90B590069DBF410D50DD04 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D5A2B190C4A0490CAACAD3C4FC76531D /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EDF22B2F7710B68BEF42DBD7960FFD2 /* Concurrency.swift */; }; - D5BC75187BC76C9D39D22066FE4E2A83 /* YBIBVideoCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 25786E146AAE30629FEFFFCD7FEF1C8A /* YBIBVideoCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D5DEA67CF8E95AB0E51A175E91769482 /* YYSpriteSheetImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B302C4A61CD77057994883E8AE64C5 /* YYSpriteSheetImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D5E8C734FD5A89DE65990747FB71E3D4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - D60D3D1BA7E494175E719D674E43B0AD /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 443DB1392864611F254C77FA4329F1D1 /* Bag.swift */; }; - D622FEEF75BE9D0AE9655CD5BB644E74 /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30ABC2B69AA7FDD403BBA66A483AA50B /* DashPattern.swift */; }; - D62E8EBC82FE2A4110091499EB72C052 /* TAPageControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A82911D5CB0F6C7A32A79C0374FCDBC /* TAPageControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D63AACB28313CEB9B9465C50A5A23892 /* OIMLocationElem.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0E479511C18ADD53E88F03961CB9F1 /* OIMLocationElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D655E5D2240DAD66E04E1EEC16BC6EBB /* RxCollectionViewSectionedAnimatedDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3FC69F2F25AD2A73471B55D72EF3D88 /* RxCollectionViewSectionedAnimatedDataSource.swift */; }; - D663837F4347AF58660EE6F7FD426ECE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - D6748A967D1B41C6C74B8987F21CE201 /* OIMCallbacker+Closure.m in Sources */ = {isa = PBXBuildFile; fileRef = A3AF198343EDA479FAEFF07AB3155C1A /* OIMCallbacker+Closure.m */; }; - D6B15F2F110BC58F7635A9FD7A985C79 /* IQKeyboardManager+ActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE7291A0D9ED471F9754D1FD9D58F0F4 /* IQKeyboardManager+ActiveConfiguration.swift */; }; - D6C50646DF1E6DFE90F59F1DD2EF6104 /* SGPermissionCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 977D96FA02CBC7EE86913380335CAEE9 /* SGPermissionCamera.m */; }; - D6EFA9EAA562143F338EB164836B7837 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */; }; - D75BC36D268EC4D6E1493FC5B6E5F329 /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0788BAC406F45A6FC2BF3C22638DAB6C /* SynchronizedOnType.swift */; }; - D78511BCB71209310E67BFD758101868 /* VideoCroppingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C4A63F49D323F784BCA69785BB2D563 /* VideoCroppingConfiguration.swift */; }; - D788BA4B9E8186271BA75CA52B30502C /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3372B0460260FFF150042F100790D87B /* View+MASAdditions.m */; }; - D7AA816442FF639772077023CB7CB106 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 2721B15D69AAC9EDC592D8D91DE15A30 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D80112F19F528A1C41741B121ACB18C4 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 99DADE9DE147112FECFE409CD724C123 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D82A0ABF3F863CDDE336FA92E16862D7 /* DefaultsObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 196C119B4B99656411031B27E64A2D95 /* DefaultsObserver.swift */; }; - D868C392BDB9CFABF97973A998C5AA56 /* SectionModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4218E7AB0F97FEEDD00E4E037614FB34 /* SectionModel.swift */; }; - D87ACEE630B7A52130B62DFFE5D00488 /* IQTextView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D575F8A3ECAFDA90EBA0B26E34F657 /* IQTextView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D8B1F69BCF2B8262D5E9E576E59ECBE9 /* NetworkLoggerPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CC8DF74CE848DD89C1543B98FF1568C /* NetworkLoggerPlugin.swift */; }; - D8C1C36499AAE21BC329AC0313715AB3 /* AnimatorNodeDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9889E1671FA4909135510BCB410874E /* AnimatorNodeDebugging.swift */; }; - D8EDAE77B19B3E8930DCFF4E9EDBF136 /* Mask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46FA4E5C6AB9828AA051B5295DB7401A /* Mask.swift */; }; - D8FBC2059AFC33C299D3ADAE97C9A431 /* PreviewLivePhotoViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF6EA89B3D938E7704E068A325DCF64B /* PreviewLivePhotoViewCell.swift */; }; - D904C2369FD78185284B5B4125D2CF71 /* IQKeyboardInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AD9B8FCF4FD89F4D5143063C5E7A0D0 /* IQKeyboardInfo.swift */; }; - D90607B4E56247B19B14462E487BA86E /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C6F8597CB530F782630CE04406C2C19 /* MJRefreshNormalTrailer.m */; }; - D90DED0F5638B1C44F4B6C62D600D240 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = EB19BE65B98A0E3ED0F4558833C481CC /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D90DF1376DF5E2EA644313BCD2E03058 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4B8D141C5CB92565EBE4E408187A268A /* MJRefresh.bundle */; }; - D9623705421AB179348D0B44B85D8CF5 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CA871A837C87D6CD87F1EF2EC8ED612 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D96A36BA5D4435B9B249FDA8358A0BFD /* Archive+Progress.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60BB1F68A42EFD825729CE824368D4A7 /* Archive+Progress.swift */; }; - D9D0A2F87519BD84F4B2B2D5732B0AB2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - D9F3D624752DB3F5F2736076F8F1B116 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - DA04AE61AF2464F87B87303CB25A8E8F /* Core+DispatchQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89A5CE11CC57889F540004F21A563342 /* Core+DispatchQueue.swift */; }; - DA07A5D6764940E785E70EDD08C5E1B0 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23DADD0A8F4BC93DE27A54C99980A205 /* Plugin.swift */; }; - DA2766F1FE150D6B0E5FF6559675F9C1 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 736BB63679A232597C9253B4A0B634D1 /* SDWebImageOptionsProcessor.m */; }; - DA43427CB705255E964D1E41B7CB9665 /* sharpyuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 80F00122FF7CD557F71EDB6CD73DCE0D /* sharpyuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DA70ABA313645BADFB5BC13FB995DCBA /* DDLog.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B95A9E68D6B1BFC0187CCA4BC88B13 /* DDLog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DA77D72DA1A4D08A1241EE9DA11D4F12 /* SGQRCode-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F0B7C25AA2F40A4E6FFD122B936E9B5 /* SGQRCode-dummy.m */; }; - DAACB6C433D86B6C98D2F66375D35A79 /* YBIBImageData+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D68C40790FE6F29278192AF58A55C115 /* YBIBImageData+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DAEC2E2F152FAB589719CC460085DB00 /* RxPickerViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37195C83073D00C327F9B6C8E49E6096 /* RxPickerViewDataSourceProxy.swift */; }; - DB1708B7C82FA44676C239921B21209E /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = BA0C32A8612AFBDAB31E407FBDC7FC06 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB17C9319D2226DB80AFB60844D61209 /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDE553DBFD8986CB772D81F3EA41D6F1 /* MemoryStorage.swift */; }; - DB19161ADD3C766572D982E840738225 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F4DD82FA503C00D1869D0680B76A86C /* LottieAnimation.swift */; }; - DB269D8700C7F90AFF5D0BAB45B0F8C4 /* Data+CompressionDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 050847A31B5BFFB8A95DC61D0BE1E3A8 /* Data+CompressionDeprecated.swift */; }; - DB7A88426F3F939727266BFD3AC87283 /* IQKeyboardReturnManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC56A5F60C8E478C362670C1A1CA774C /* IQKeyboardReturnManager-dummy.m */; }; - DB8A9051CC18A860342CA0B573718EC8 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE9E03A2577727310935A5A9E4A2B30B /* RxTableViewDataSourcePrefetchingProxy.swift */; }; - DBA4803F4765E1650B8C6841157F5D73 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56AE43789F036F7E37E7C78CE526A331 /* ConstraintPriorityTarget.swift */; }; - DBA9500CBBA5FF6FCBBA115AE4D12152 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C82451206DF153E55585157CFB2164B /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DBABCEDF64733C48553D3A417B869E4E /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 52F73D847B989EAAA31283582D8074C4 /* SDWebImagePrefetcher.m */; }; - DBAC6B1D8C54FB2B16D1EB2D41715F4F /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = B4EE7A0CB2B38A64ACC0428F57AEC7E8 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC016D326725C8F66C7F8382A0A65EE7 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = E747366903F9ED5B7CBB1D60E84BB103 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC06A1D5ADAFEA4996B96A0FF2812066 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E1CD8AB08972115F770800608A1BDC /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC10982107A29E4A8626F5C720927380 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = EE764BBD21C61C43683701E3F5FE2FAE /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC116AC0C3BC808A198B9C1704FA8C84 /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DBF29A5234553C463B88860B18F477F /* RequestInterceptor.swift */; }; - DC1380F89C13E6AD588136A434F3A572 /* OIMFriendApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = CB5268316387EAF511FE3FDA946F4C23 /* OIMFriendApplication.m */; }; - DC23ABA9F3B310276C216C3FC92817BA /* WKWebView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FD48EA2FBFB0058F98D944DAAEBE7C6 /* WKWebView+Rx.swift */; }; - DC3EF9ED530ACDBAD56AC2C72449546D /* SGGenerateQRCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 837E21014C5382624DE0924B4AA99FE0 /* SGGenerateQRCode.m */; }; - DC50C14598B1CF4EE405912D086A2058 /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC97A3BC2FAB2610A09174860B90436 /* LottieAnimationHelpers.swift */; }; - DC74FE4A54ABC1014D4F43EE30D080B9 /* AlbumView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CDDF5A118E717FCD167B130920711D2 /* AlbumView.swift */; }; - DCBCF1B3F76B2B74EAA05867FF15DE3A /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9DCB3383235EDBA4F3C971A96B27409 /* PriorityQueue.swift */; }; - DCC91EE07AF8DA97BEB7C13435F86DCA /* AnimationTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 775230A1FA491738DF687BEEB0E36177 /* AnimationTime.swift */; }; - DCDF1EE1680BD843F511BF67F227FAE9 /* PhotoEditorViewController+Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C1FF137DA42CBB07A1EF1B8D4A2D29 /* PhotoEditorViewController+Request.swift */; }; - DCE4CD952E671E4FD854F1F6699CFAFD /* DefaultsBridges.swift in Sources */ = {isa = PBXBuildFile; fileRef = 850578387A0EBC9B04FB5459FE3B3212 /* DefaultsBridges.swift */; }; - DCED4E4B0F4985056B32DF79783981AF /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE933906B9742E508D8D788A1D9460B /* format_constants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DD169E134718B3EBAB25987CE95481AE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - DD1E5022EE05E040EF088DB41010E5E2 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = FA38134483F784E7A4AA180ABE16C06E /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DD46BA20B478F77DA75007964216F86F /* SGScanViewConfigure.h in Headers */ = {isa = PBXBuildFile; fileRef = 87661C0964375E9E5AE8195C668A957E /* SGScanViewConfigure.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DD576D4E4F1144C2D1429D071DF11D32 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 722701F61A9A66CC4971FB3EA06BD853 /* LottieColor.swift */; }; - DD57E9FEF4EC5F5CD871D642F1EEDDCF /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A90426A3569DFD849BCC6A1F9C5CCD8D /* SDImageCache.m */; }; - DD7D38B1D11219F1882E3E9DD5FA2E0E /* YBIBCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE22C52F3EFE4A4578ABF3C37C14741 /* YBIBCollectionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DD907809DEEA2C3EAC6FA3F150AB9893 /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD572E7B11147DD4A8222AA6C45D15D7 /* Timer.swift */; }; - DD953C7254A2F9DCCF3758D6AD00F29E /* Rectangle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09E8A3E05EC079477747443AD301E860 /* Rectangle.swift */; }; - DDBA4D50BFCFA2AB8F7955CE701A7867 /* palette.h in Headers */ = {isa = PBXBuildFile; fileRef = 04296A362C3407E0A85FD5DB9C3E1EDF /* palette.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDC1718E80C5A12699A652A0EA10CACC /* PhotoEditorMosaicView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 693F8ECA090561B610BA6FF8274178DA /* PhotoEditorMosaicView.swift */; }; - DDEDEE8B19E94E46A2D70C78127236E5 /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F49C1B5C54E03ED988C89B6FA16BDB5C /* Kingfisher.swift */; }; - DDF61BEA9AFF4E1CFD53D4B84D119DF4 /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD658EEF20E9119CE663C6D7FC68A348 /* AuthenticationChallengeResponsable.swift */; }; - DE50BB83890C5693CFF24F29B5FAF6DF /* VideoEditorPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 120ADFE75C0204A5F6266DF89EC4FAF2 /* VideoEditorPlayerView.swift */; }; - DE553B8C80DF65038D90C24727ED63AA /* UIApplication+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5C77BBEF52E60A948A676A9BDB60109 /* UIApplication+Rx.swift */; }; - DE98ECCCA7106A4EA575EF34830D41FF /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4846DEBD1B88739515A29CBE64DAD34F /* MJRefresh-dummy.m */; }; - DEC54B892123D7FF8A5149EB54FC4BC8 /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03EBA45F8498DF53F666FD4E75823E8C /* Delay.swift */; }; - DED9ADFC8CC65243FC54E008A853742C /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = D8D05105D891E4492E3064011BFFBC55 /* MJPropertyKey.m */; }; - DEE9768C736DE29A649C5EB71C4869C3 /* CollectionViewSectionedDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E834870E6150A5FFB1FCE3D10C8A1A67 /* CollectionViewSectionedDataSource.swift */; }; - DF041B324D1AED0B879B8F3101A5A590 /* PhotoEditorBrushColorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AC4B8F50BFE837EACFBE3C44B0388D1 /* PhotoEditorBrushColorView.swift */; }; - DF09A95BFB1D9368C68F9395315F65F7 /* UIScrollView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA95F4A4BFFFE59FACF449B9D2D50CE3 /* UIScrollView+Rx.swift */; }; - DF207BC23177F7FAF26DFAB9168B6216 /* MeasuringViewRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A598A01BE8C27F0423DB78EB55F82E42 /* MeasuringViewRepresentable.swift */; }; - DF28F9B66D46D3CE0A315A19E135C16A /* PhotoPreviewViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E20299373650F59323E2017B3AFF9EA4 /* PhotoPreviewViewCell.swift */; }; - DF2B15402CE105F5A8CE48BBDCFFD5DD /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D4326B12078EADA37433D8A7688F45 /* MASConstraint.m */; }; - DF4BD662CEA133642C134CD18C65CD4F /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64955DB2B6BD9D4B02B1D00905645B96 /* Window.swift */; }; - DF7DC58EB9217CBF2B6DA9EB3B4F5F6C /* OIMFullUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BBDC785D271CA5318A067B81436E8352 /* OIMFullUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DF9B34E19C0F13BCFA58F0DBB348E008 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8472C6305564D304D3D3D434D7191E22 /* SDWebImageCacheSerializer.m */; }; - DFAE5F0CFCD5B6A5DB0E2F66A9E0B64C /* NavigatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78EDEE5E177BF6DF888E2F685ABDAF79 /* NavigatorProtocol.swift */; }; - E0069EDC3753BF4A03707B9C82F5802D /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = B9394C0414AC1F9427C4E7C0BC1863ED /* demux.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E00FCA3D1D8EB62A399FC73F0095E0E8 /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C3470E48B1D31E09FFD503615D9BB6 /* WithUnretained.swift */; }; - E024308BE172CDD2B5057109BC5A5F5D /* EditorImageResizerMaskView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1106559DE680E75DE166E285D84655EC /* EditorImageResizerMaskView.swift */; }; - E03D4CB7A199F25F35C98875B44AD563 /* distinct+RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA9CEA59AF7E8F2341E1A92B8FB97E66 /* distinct+RxCocoa.swift */; }; - E04CDA04CEF8860A01D1C3FA4D3B96DB /* ReplayRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 001B292321BC5B049194157ACD963619 /* ReplayRelay.swift */; }; - E080E4E10F9EE84CF6A4EF650744131C /* OIMGroupInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5318EE889AE2ED47F81CC78C2069CB35 /* OIMGroupInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E08450720F1754962C0C0528ABDAFE7C /* EllipseAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 471AA0E6419BEC2F99BC28C13F677E88 /* EllipseAnimation.swift */; }; - E122F98E77B93BE2E6D39CC3A0816028 /* GIFImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD4BB25B01C11AECAA30B2010211F454 /* GIFImageView.swift */; }; - E133D5294A2132BE10DD88FDA067DFEC /* SwiftyUserDefaults-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CD8E93CCDB5866098FEF8856FFB20F0F /* SwiftyUserDefaults-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E143494B69E3B18FE61C76A73A5EE775 /* DotLottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C184E760724FA58B37DE2A4F77BFEFDC /* DotLottieConfiguration.swift */; }; - E1734E56DB48E6F238408C9A232C7051 /* UIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7D3EF3525CECB919C94B7CBAAEB8D /* UIView+Hierarchy.swift */; }; - E18541685B292228D035343813E12E12 /* LayerFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA521EA6BA5447EBEE592BCF358F83F9 /* LayerFontProvider.swift */; }; - E1CAAC3585EB1C15CD85EC2F1491E04C /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F87C6B5FD4C86E35043453DB746469 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E1D5E750D0967821FCC5E697AAA2CDE1 /* PickerTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25285C5E626F30148926D9D6A6202443 /* PickerTypes.swift */; }; - E1DD651C52693F6D44F67698D02C7D82 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E92A2F23BD154B929E5D231A46F3FCA1 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - E1DE69F6BB6235A6EDB6C99A184BEDB4 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = ECDCA6BEAFD67BE73F5C9BDE8C1B4D50 /* UIScrollView+MJExtension.m */; }; - E22B29F35FA7B9A571C95C500C12F120 /* sharpyuv_cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DE1CB79BCC5D870E0A0F8AE2B4A1461 /* sharpyuv_cpu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E23C5187D22F3D7207BF940BAE80EF33 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 27F811FC60FE7171767A66AB5F507804 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E24730B2A18DC39C2BE4997ADD4A7598 /* PhotoPreviewContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0E23FC914AC918A3812AD96D4739ED3 /* PhotoPreviewContentView.swift */; }; - E270921E974E7D5ACD5BCCF42936AFD6 /* DidDisplayProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09C9FFCB4BFE694DCB6775DB83FA38FE /* DidDisplayProviding.swift */; }; - E274BA92F9C6AA938EF04CE7EA38CEAD /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD52698FB0F645D5FEACA1C0F6F5C222 /* RequestModifier.swift */; }; - E2D61561302F31F37F4AC7010B4C665B /* ViewProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3735BF48C165F1FF3722190A8D76CEAB /* ViewProviding.swift */; }; - E34C329C1184FB2A2327D471B5ED48E2 /* IQKeyboardToolbarManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C70AB659BC6BC3C3EF51AB32BBF7BD2E /* IQKeyboardToolbarManager+Deprecated.swift */; }; - E35F47135B73F9286B07B267CB98513B /* NSTextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E2D9445ABDD01E2EAF6BCF2874BCAB2 /* NSTextView+Rx.swift */; }; - E37671A03B4C17A1CF3766A6125833BB /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E9CDCE5F0043FB2C6DB3BCFEA9F9D6C /* ConstraintDirectionalInsetTarget.swift */; }; - E3D779DEE753C0B0D33BA8E73A980265 /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D116F3B6A0E7D4C7816BC8AF483B3EE2 /* ConstraintLayoutGuide+Extensions.swift */; }; - E42496F55B6B2C772D40F457B7C98154 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = CBD645FB492CC8ABAF8474214E280CC7 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E42A5C1780E7E37B3383F387DE14C3AB /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 065D063BBA4E2E76DE8E4F0FC55DEC82 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E4300B4836DC8B47F8D09A90DBD71587 /* YBImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C711A1DC0B3F501774D59914B427DF /* YBImage.m */; }; - E4A29F8C3ED424A7BC912DB796D03AFB /* UIView+ParentObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C298B2A388307DD5D979FAA27BF366A /* UIView+ParentObjc.swift */; }; - E4BEE8283802F8F8B17F1A1BBBD3CDE4 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC6CFC68DC5E71DEF88306F0089B2448 /* Session.swift */; }; - E4D62C8F5788C16CE8FDD00107251863 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = F43E549B88EA208A82D3DB6250CB8993 /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4DE6EEDF2754E430385AC1CF42D8413 /* RoundedCorners.swift in Sources */ = {isa = PBXBuildFile; fileRef = E24C7A21B6750630893FB2EA5D1EFFBA /* RoundedCorners.swift */; }; - E51D1D6DB3179622992C91A1DFE90D5F /* GradientStrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97F0DF9B08CCA8D2A5749BBA40C04F42 /* GradientStrokeNode.swift */; }; - E526D55AE9365CCCFBBE86334C17765F /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF3C657C177D6F9668EE4037A7757222 /* ObserveOn.swift */; }; - E533265B7ABFF5AB2789FC86D9D196FB /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = F584805C537CD1CBA84D5491040BA7C1 /* Infallible+Concurrency.swift */; }; - E54A7350798B1D45616E86D64DCAD262 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CD8F90D2331966421E416907B75E2FB /* ShareReplayScope.swift */; }; - E54BF0D07C2708D631DC6EC9D9A6F752 /* NSSlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07082B8A4C4290E5D4C81099E14B1045 /* NSSlider+Rx.swift */; }; - E56D42E6D9C9787C503C0D041B375E64 /* IQTextInputViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0654D9122788EE00CAED6C0FFEE73F77 /* IQTextInputViewNotification.swift */; }; - E5B057BC87284367918B2DB9CA084B4E /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E2DA31BB5B71385C2113C242EC8B930 /* MJRefreshAutoGifFooter.m */; }; - E5B8C9B69A522F320113821E8981F74E /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B2CFD3CFB14AFD520EDB9E11593AF849 /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E5BD9E38260CFB54191D2F4DE6C993B6 /* DateInRegion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6661F713463BAE855AF1063C2C8C4ADB /* DateInRegion.swift */; }; - E5EF977D40793FCCFDDF4CDC7E2BB865 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 60EDA73CDAB249744F8D82D94147C9E2 /* SDImageIOAnimatedCoder.m */; }; - E650CA91216B98D166FDDA405561CEF1 /* CocoaLumberjack-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 865E473975582293F0FE384ACE2EC425 /* CocoaLumberjack-dummy.m */; }; - E6531A60CC8B48F320DDD76C480102BF /* PhotoPreviewSelectedView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8D92D190853671E509BAA5E005AAD97 /* PhotoPreviewSelectedView.swift */; }; - E69689D02F65E151584D4699213E0763 /* SDCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 85CEF0B57610430DC6C0900DC77AC6F5 /* SDCollectionViewCell.m */; }; - E6A94F529B95809112533914EC89CF36 /* OIMAttachedInfoElem.m in Sources */ = {isa = PBXBuildFile; fileRef = ABAA3CDFB336842D51FBF95ABD577DDB /* OIMAttachedInfoElem.m */; }; - E6AC3AF0CBAA1843B13F34AB5CA491E7 /* OIMManager+Friend.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DFA11B23F0F29B0B8105FB002C0BB1D /* OIMManager+Friend.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C03633BC24D5BADF7D8EEB3ACE631666 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 979C891C173C4B89C451458A3F545DCC /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C0763E17DFCC612339CA455AAAB24188 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 729C335AC4480787A0D8A171C363F055 /* NSBezierPath+SDRoundedCorners.m */; }; + C07CB3E9A4D1BF00F841E4285629A2B2 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF05CC8BD4D487667590A69116766F94 /* ConstraintRelatableTarget.swift */; }; + C08F4B423A39CCF69136F7ACFA5FFB4C /* Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24A12D238EE2AFDFD11A5BF137C767AA /* Driver.swift */; }; + C09B37223BCC5B22BF7B29CFB1C68F8B /* RenderingEngineOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BF72D624C3A129C90AEC6EC4E3E5E41 /* RenderingEngineOption.swift */; }; + C0A1130442B239AC2610C6878C2C6869 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA1F9EE893754FCB88034C3F53B9134 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0A27AF8E1BA202D8015FC341C905C25 /* SDCycleScrollView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E31ABC3FC220CB286BD36808983A58C9 /* SDCycleScrollView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C0AD493AE4A8DC8FF960D753D6D971E3 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED2169A587A329F11F373D2C50FD832F /* IQKeyboardManagerSwift-dummy.m */; }; + C0E5BD34620B57EC98C5ADD30CD3D01E /* Trim.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E2020960628625BDC018E48BA326EB2 /* Trim.swift */; }; + C10B1478C4AB3693D886D94ADFAEFDFB /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98AD5468026B6327AC1AC789C55E2B66 /* KFImageOptions.swift */; }; + C11354C639B096969AAA9734F14D0836 /* _RX.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CB8C613628313363644BD09AD359103 /* _RX.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C11C67B63B259776A719E711DC1735E1 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = E14EB83C1DB19335E77096319A0E2693 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C1300DFF8872E46FD85689A4D06A5C2E /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D165A54C30392DFC0BBA605E58B93F /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C141940201901A38A684AB8A2426F099 /* YBImageBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6842A0E2A2DB80154F5F93850EF93F27 /* YBImageBrowser.bundle */; }; + C14E0151206B52F3D0D9F7812847F16A /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = F537EF39FAE967FAFFB3C95ADE5A3B62 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C14F10B663FE2898EACAB90C202B3F50 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17C72523B93134AD24AD27FCC1289EBD /* ConstraintMakerEditable.swift */; }; + C172FA436525F74E81209875947595E7 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 917B5AE204AB6A982EF8CB9D8A5555E1 /* Disposable.swift */; }; + C1860BBFD363FE0FDB416A80F004718F /* LayerTransformNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D8459D7FBE1CE367D86924BE49985C9 /* LayerTransformNode.swift */; }; + C19F5F3FD38FA35CAA4915D576E7761F /* Core+UIDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB49502221C6831562B6F3334074EEB2 /* Core+UIDevice.swift */; }; + C1A5F0FC8A3482F772329209BE755714 /* CoreAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7AF6E104842D1D774F95573E8ACDFC4 /* CoreAnimationLayer.swift */; }; + C2068AEACC2D9C7F1FFE41AA25B12A68 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A065AF90B68633BBEC46B5E72F9476B /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C20ECE96A97688090D5FE186DCF7B5D9 /* IQKeyboardManager+Resign_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57F61591FF5B1753F1EDA95DD7F1F221 /* IQKeyboardManager+Resign_Deprecated.swift */; }; + C22290501532385B349FA0DA58710DB9 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D56323B451627192BECC5104B3D81BC /* AnimationSubview.swift */; }; + C2369277810812BDB6306E99925587AE /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A932087ABB9A35400DD7C526A39F7CA /* SDImageCachesManagerOperation.m */; }; + C278A03B4975812C48A280BA391C23D9 /* Data+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F8B1507A4C52B30BD509386B591FD6 /* Data+Serialization.swift */; }; + C29048D82709E1E770DFE0EDE18A350D /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = E2B7730E3EDC09E9C27731F9211A03E2 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2A21354D5DB755E780A9ABC1752E74A /* PHPickerResultImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF2C24B67E5E17219B18B1D700847444 /* PHPickerResultImageDataProvider.swift */; }; + C2CD0223F067656A2FC851B7612916E2 /* YBIBImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = ACDBB4CB21A0172744F834F4091673B4 /* YBIBImageCell.m */; }; + C2D8DE91BD230A156FD26EF3E11CD2F0 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E63714E5163D46EAEF91865D01ECDC /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2DDA326B57E522D0CDF88CE69827F18 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D750F4A680320BE56EF1BDB092B3066 /* Platform.Linux.swift */; }; + C2FDEABCE0D089AF0E4EC0875D998E66 /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC69EBC09E79F4820A84FF0EE4B000E /* Concat.swift */; }; + C2FE60A10C792613E45031AE6E851ECB /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A3C23B1D72202683F00B447B922927D /* MASViewConstraint.m */; }; + C2FF0AFBB1853A8459AC0432E6AD85A0 /* URL+Moya.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CA7E77AA99A3B25E82ACB1C03DE1AFF /* URL+Moya.swift */; }; + C303A4E0C86C512F7DA7A841C5BC000A /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C7EEF7FD983ACD669C21EC0404713ED /* LottieAnimationView.swift */; }; + C324848DC9989E558C88F00CBF82C95C /* DecodingStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72766BC56FB33D493A0DA75B5189A566 /* DecodingStrategy.swift */; }; + C3297A7121B4CBEBBC8FDAD4279118AD /* LottieViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4538D166A896DAD1AB3BFE037F3EFE5C /* LottieViewType.swift */; }; + C36F0742777344AE9C9EC5B393E39A66 /* PhotoPickerViewController+SwipeSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5DA1CF8DC7F54C5F4F0B7DAC3650369 /* PhotoPickerViewController+SwipeSelect.swift */; }; + C387C8843E8133D38863C2B409539913 /* PhotoEditorMosaicToolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A58B86B87E69679760C7B7E8604BB766 /* PhotoEditorMosaicToolView.swift */; }; + C3A2D804B1EF219B56E7EA71585CB148 /* NSButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6290E5C0F32B2229537B63C8028A89CA /* NSButton+Rx.swift */; }; + C3DE4CA7617C9BC6EB538E0A23303DBC /* DDAbstractDatabaseLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0975E1214B64C5AE57633B4489CBE5F2 /* DDAbstractDatabaseLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C405A16EDD5CB5C1FC7EEA7856D73DAC /* PhotoEditorViewController+Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C94875BC7BE284051E55C4BDC8BA513 /* PhotoEditorViewController+Animation.swift */; }; + C41750A380D75A5B08EB714F5236FF0F /* BaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 677FF7B4A892D4EB3B2AD9BB1F6B7379 /* BaseViewController.swift */; }; + C437FA9AF753C87C55F0849F7E1E176E /* UploadRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9E6296C6B08253BA23FAA38899D184E /* UploadRequest.swift */; }; + C462F17EDE150EF6837F0524C632A64B /* YBIBImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = FC5AE789DAF559A15696D20E295016D5 /* YBIBImageCache.m */; }; + C46464010E864ECB7A1F16073A402380 /* Optional+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7255A222C9A1437D1F742C8CBFEF988B /* Optional+Extensions.swift */; }; + C48A9E2CABF2ABD7D954BC1FBB6D3C77 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 846DE591BA61F5776BFB4F91E09C69AE /* RedirectHandler.swift */; }; + C49CBA7D57BFBE1D3297A18813D1067C /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 69C94D551311BF96B246137BE18B4214 /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C4CF908B22439772FC5FA601B3C481B2 /* AssetManager+LivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C3E4424C9BB47614486B556FEF7AEA /* AssetManager+LivePhoto.swift */; }; + C4F42EBCA4302C49201476B324A8E679 /* TransformLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A821688C0C584B0F53FDAD23FCBF38E /* TransformLayer.swift */; }; + C51F243E04F7B1B1D8B6A0D8B5E5B940 /* EmptyViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28853C4F1F0BE8910FC831A9312857F8 /* EmptyViewConfiguration.swift */; }; + C565A821906F24C86701339A18D69D7B /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = D06FBFCACDB5DEA5E6A56C03EDB2CCFE /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C57B18D85E8D7A47D74E16B95F37C88B /* once.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B7F5FD6DA9BADA51B3252CFD995B944 /* once.swift */; }; + C59E3FD52D5408C08FDC0E6FE6266C3B /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD1A0DA62E38A2270776CBC8949C349 /* Source.swift */; }; + C5C81E89EA185839DE018B2C1FDBEF37 /* TimePeriod.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFF623CF9D4FF72AB1D21B2441FFEE76 /* TimePeriod.swift */; }; + C5D1719D9646B00FF98E064E46508BE8 /* HXPHPicker.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 59A8A113B244267F39733411FDBFD59D /* HXPHPicker.bundle */; }; + C5E9BCA28405371331555210EB371571 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDBE017ACEAAA8AB1BCF651DB668698 /* TakeLast.swift */; }; + C5F059E06474BFDCE4964679841A8484 /* CGPointExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C9D5E2A219C95745FAF204B1E3FC92A /* CGPointExtension.swift */; }; + C60DB44F719853DE3B7157960DAF9270 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = F1275B92920129B3ABF887C6F40F3504 /* MJRefreshComponent.m */; }; + C6728BEB2195DED53EF713DB08BF8166 /* PhotoEditorCropToolModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BC960EB9A445C244712AC3B35F7B71F /* PhotoEditorCropToolModel.swift */; }; + C687C1E3C0B426A37D557A2C863E7EE9 /* RxRelay-RxRelay_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 0B06FE4EB869890001614655A886414E /* RxRelay-RxRelay_Privacy */; }; + C6A4302ACE006C4E2CDD481287E2916B /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EA07675D341B40B3A11C882628547EF /* Typealiases.swift */; }; + C6CEDE25513EE580A409D2FE1EBB14BD /* SDImageFramePool.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9598965144DCAD57DA3C09E9D9DF65 /* SDImageFramePool.h */; settings = {ATTRIBUTES = (Private, ); }; }; + C6E542DE6D61F7CD41340049F2D8FFDE /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EBE8A67D212304EE2620BF3E7B9160A /* AuthenticationInterceptor.swift */; }; + C6E75AF470A88DCA0D63040F5F34879A /* UITableView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCD7BCD9C08B7D6A5BDF7D7B7E93E2C4 /* UITableView+Rx.swift */; }; + C6F35BEA16F9EEEA1297311E01100AF2 /* Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE77A4C4BB20BB9E98756314B59D7425 /* Signal.swift */; }; + C6F45595676957ADBEC18EB3F23EAEC4 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 187CD970712B0851A9470D28D04986D3 /* LayoutConstraintItem.swift */; }; + C6FBF1708A9597C929A9848E48F3EF26 /* TextAnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2506741F9F50189A7DD54A4F356E1C0B /* TextAnimatorNode.swift */; }; + C72F37CACEC780E304BA0B9D1077EFCC /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F7C4E38E4607F8008E79A6434ADB1C0 /* Response.swift */; }; + C73BBC138DDA380D3E412D48E86E24C9 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 376332B7BB7B62B68F0FF48144147A45 /* CFNetwork.framework */; }; + C75A276978CD42CE5FB7F99244E07808 /* ISO8601DateTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2D6B492452344FA1B760EFFD9DC1E5 /* ISO8601DateTransform.swift */; }; + C75C0D0545CF6B8B2A4B51DB97C57561 /* SwiftDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A3BD5869D2B1C7A4FBF323D773D9E1C /* SwiftDate.swift */; }; + C7715123861E25EAB3E44E72397CECE5 /* CallbackProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 55A50E8CBFB62149F0DCE7D564030662 /* CallbackProxy.m */; }; + C7C6F1AD0C44C79C4A3416FCB32B0233 /* IQKeyboardResignHandler+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03E67A6EC39FF472B83B7840AF78E292 /* IQKeyboardResignHandler+Internal.swift */; }; + C7D693676710714878F4633AE77C881B /* OIMUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C56F7B90029A72DEC58CF844484D77F5 /* OIMUserInfo.m */; }; + C7EFB87F8415D2B0D1654745230578AA /* URLMatchResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52A20B3BF7B48A758BC8D999EB4539AE /* URLMatchResult.swift */; }; + C801C2CF68F147169189E69F641D7F76 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + C81A012F3A85BC343EC5C412F8D68834 /* YYImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A115E0B3FC9B65949A9542E9CDB7BDF /* YYImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C81D645A697C6B9782CABFD8F06A93BF /* RectNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E2140737C3E93134F8FDB59AB754F8E /* RectNode.swift */; }; + C833FA17344A15EA1969FD585E7F4970 /* RxTableViewSectionedAnimatedDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47FF8124BAC952F35B2E4461CF41D102 /* RxTableViewSectionedAnimatedDataSource.swift */; }; + C85231B99C1BE80767753C368304A730 /* DateInRegion+Compare.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADDB1F578A79A46460968775A7A8BB7C /* DateInRegion+Compare.swift */; }; + C857B8D2D0BAA5A8A764F9E1C4B85807 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 004B8301B59E0532FC74ADD360B1B420 /* ViewController+MASAdditions.m */; }; + C87EEEAF062456D346356447B16867FF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + C8BE034A357A252B055FA0C4A9E4C978 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9EE62403F3E6512DC6CF16E7A5F5C68E /* CoreFoundation.framework */; }; + C8EC35DFB0945DBE2F2FF9ECFE6D9711 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A49386E944B025DD42EE8A1F8EB38266 /* NSLayoutConstraint+MASDebugAdditions.m */; }; + C9262973FC4CB1CCC42F745E6778DE4C /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 32898454CB13100812704D30105A0D45 /* SDInternalMacros.m */; }; + C937AC5DC84D468EBAB678025048B400 /* OIMFileElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 70CEF74CF654DC40CAA98E45E03634BD /* OIMFileElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C945CB4EC42271D435BF23E7749BE6BF /* IQKeyboardConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D4805E9DDAB51282FCDDBEF197F3FFC /* IQKeyboardConstants.swift */; }; + C95C753AE30159950F8DB7308DDF77BD /* MoyaProvider+Defaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74EF885F453A96CCB8817B3E6A482055 /* MoyaProvider+Defaults.swift */; }; + C98EE67EF74B92C9AC9E23B9A1E74E74 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + C9B40ABBE5B695C9F9CCEC8658B796BC /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E154A22F7BFD213343B11EF0EF10A5C /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C9CE59309EABFDA10F864CDBB91465F1 /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEED446863E4D0E5C67019C24F146920 /* DefaultIfEmpty.swift */; }; + C9DC5FEA2934DB98043A547AAC973C97 /* CameraConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8705446677A2D4792E7CE527DD558989 /* CameraConfiguration.swift */; }; + C9E19D164C26414115CC969ED9A303C1 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 571BB5738ACB42F42C34CE19067238F4 /* MASLayoutConstraint.m */; }; + C9EBE0AD508E6B3A780A8FA0DBC68427 /* YBImageBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B4781B29919C35D2A949B67A8CA17D3F /* YBImageBrowser-dummy.m */; }; + CA05084D970F9A48B7EC4F8027D386AB /* SwiftKeychainWrapper-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DD1F18C6797FFFC1703236E67AD6096 /* SwiftKeychainWrapper-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA1E0D21860CFD2872029D5CF4E6DF29 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = F4C9870F922E4407BE5CF841338FA99E /* SDWebImageDefine.m */; }; + CA6BEF6E85FEBDD24B3845FF2252DDB7 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3393DA8B4838F6ACE600A7599089C08E /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA84D49AD6BC133A4CAC8238DC52E971 /* RxTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D829C1EF7480121F20D5D88502020A07 /* RxTarget.swift */; }; + CB1D9D0547B7C269B858D5741FFA24B5 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7A25DB02EE751E6D01D050A5E7B3A93 /* Observable+Bind.swift */; }; + CB25521BB6A401C4A6753F35624E179A /* mapAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A21A112A2FAD7228F3F968043407B52 /* mapAt.swift */; }; + CB556EC39E590FCB9AF7EE22F5877FF9 /* DropShadowEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = 879A2E2A67F78CCEFE0F10240CE24FF9 /* DropShadowEffect.swift */; }; + CB5CD16304F7DFDE9E0F86D62CD707F0 /* YYImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 26A79D15CF7E56AB1249C65515C36E4B /* YYImage.m */; }; + CBAA7237BD9FD30B79F84F6F0F29634C /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E15CCE57FB545DAC0D33E55EBB19B2A /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CBC2A9E2E812EE14E54C09D33409F5E2 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7594C627631107EC787B010DDB216F87 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CBFC7E7CC7AA70EC3A3635B0727979C9 /* SGSoundEffect.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E6F7400F823325A0BA8E1444E705B35 /* SGSoundEffect.m */; }; + CC2CEFEFB392E2AA75040A63D04B2400 /* Atomic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C469C15C143DCBCAD26D2F80E2A8BAD /* Atomic.swift */; }; + CC38F0303BE0BFBF1E573561D01FB082 /* YYSpriteSheetImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8697B4ED19909AFD6C7558CEE8615F /* YYSpriteSheetImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CC63E9DDAC7230E3EA8ECB73B9E0DA13 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50B69BB9C494FCADD9F52F68B4745C13 /* Filter.swift */; }; + CC705BAEC85C20B0CEA4A15B6BB39DFB /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F8C9DA82FCCA7DED58B4421BDDA21F /* CompactMap.swift */; }; + CC8416A27D23F24BCD2E857BE0F7D050 /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DE5DF902C1E8080C92964EA0B0C8D6E /* Vectors.swift */; }; + CC9CBC1F47B2FBA33DD0203ED7E1CF6C /* OIMMessageElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 368D0A9669610E6142622A7EBCBB1BEE /* OIMMessageElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CCBBDEEFB29B358197D273C27B2FE6EC /* PickerTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5CAB98E979ECCA2A09B427375C957B5 /* PickerTransition.swift */; }; + CCCFCDB26235AF88D2796246E5CF01E9 /* KeychainWrapperSubscript.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2287FFA8D1569A799C7199DEACC54A2A /* KeychainWrapperSubscript.swift */; }; + CCF13D8B4B07E8E4495DAB63FD02D402 /* Signal+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5B193016B16AF60E6FAC43E2C25F15B /* Signal+Subscription.swift */; }; + CD925EE71D8E482E486D2E5AEA77E0FD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + CD9E606578C993F9315256561691A76F /* Core+UIImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D4B40182162CD669ED8D1D713C1A108 /* Core+UIImageView.swift */; }; + CDBE2CF1ADA30DC0A71C28250D08EA42 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + CDDB6156405F579B06D7A801C664D48E /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = E57A882004E9DFAFD797700E1B5608FB /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CDF42ED6AF2C0252840DF2A724375380 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FED4232B22574120FFCBC78B2130061 /* SessionDelegate.swift */; }; + CE57985823A81264B942F51EF4771A86 /* URLMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69996CE0C975FE55FEB5941358F9A2D1 /* URLMatcher.swift */; }; + CE593943A9E7CF83822CF60304BCAD43 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE67D105FFA7A37148000E1CF35CB1A2 /* ConstraintConstantTarget.swift */; }; + CE7A7E5ED9E14B271B909410D101C483 /* Data+Compression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 909D62EF63BD78A83AC24163EEE78816 /* Data+Compression.swift */; }; + CE8BB3B50C1DDEFF60DD465EABC40A50 /* OIMManager+Message.m in Sources */ = {isa = PBXBuildFile; fileRef = EF3AAC0045F4635A4281CCE672E15EB1 /* OIMManager+Message.m */; }; + CE9060F0B56A20DCF8151A74C7EBA537 /* TextInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = E861069B4AB76BA0BDB1C06C5147DCB7 /* TextInput.swift */; }; + CEA2225A7837701061A40BBCB37BA5C3 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 09AB62F03517BF3D5AE88B4968C6DF90 /* SDAssociatedObject.m */; }; + CEC0AC2A77B3F8AE285DCF61F2F46E5D /* NodePropertyMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9D622A57312540E1D02274F0ACCE389 /* NodePropertyMap.swift */; }; + CECA8162BFE05143ECD1DE4225B82B9C /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = D337FF64DAB0EF1DCF5E657FD4FA25D3 /* CachedResponseHandler.swift */; }; + CEE64CF0F327167627F8CC70A982EEAE /* RxPickerViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 808561ABAB1F1D752523D18D433D1913 /* RxPickerViewDataSourceType.swift */; }; + CEFB8766F48BC037AECEC6A62560BD29 /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3541337BA25DD5A16B674D1ACD6A6DF1 /* Optional.swift */; }; + CF34C51C73AB57E0A296EB54D516C0E4 /* MqttDecodePubRel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F28E43923328EF261C416EB2E681B924 /* MqttDecodePubRel.swift */; }; + CF48E8DB6B85FEEBB58FB4AAD3F04D63 /* UIViewPropertyAnimator+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0992FBF15192FDE359109D457FACCB68 /* UIViewPropertyAnimator+Rx.swift */; }; + CF4F390AD14CD99E57253BE9D96DB274 /* OIMFaceElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3486E48D7F4ECF13A667832E910CCC60 /* OIMFaceElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CF5F437F7201F79D3CE3BDE9D879F3C5 /* Region.swift in Sources */ = {isa = PBXBuildFile; fileRef = 325E7C92D696471576D9735C82973FFD /* Region.swift */; }; + CF69896B8FC7C21E638CD5D730F91543 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 773F9B01882667DE86F6CA4CE8008AF1 /* SDWebImageDownloaderResponseModifier.m */; }; + CFB40BBCFE9C4381E5B367D25AB33B2A /* Cancellable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF3AD82EC39778DB621B9AC73985F627 /* Cancellable.swift */; }; + CFDB27ACA68B4C18C6DC1E51998D7623 /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABB48555987725F3F2DAF0B81D478F17 /* HTTPHeaders.swift */; }; + CFF0F29D9670B80E247CF63035F01759 /* PhotoPickerControllerProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B18F3A53A26839A8CEF0EACE96727E6B /* PhotoPickerControllerProtocol.swift */; }; + D033FF8E0AE3251DE943B341D59D756F /* ImageLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B096CB908090AF2DD4E15675A33FD06 /* ImageLayerModel.swift */; }; + D04A7B430798BB15521E4D2DBF41854E /* SGScanView.h in Headers */ = {isa = PBXBuildFile; fileRef = 429D673B66BF996BECCA85690BDC4240 /* SGScanView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D0BF696EF4334C8FBB5B80CA337FE3FA /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EF0D735372E69C9AC488BD364C4FBE3 /* AnimationImageProvider.swift */; }; + D0D8491DF011B4E4EADEA80B20229F69 /* PickerResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = D479E6B7E6471A3F32550F11B6329C0B /* PickerResult.swift */; }; + D0D8EAFBEAEE4B82131FD5FB9AE6D236 /* FramePublish.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43A35A16C9716924B97B9D53A78A0391 /* FramePublish.swift */; }; + D0F33C234F469FDC4BB67C6651759826 /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41A4DBD37D4C7EDFBB298F5BFE487E1C /* Endpoint.swift */; }; + D0F6FDC7286BCC69C228CD0FBB45B2A9 /* RenderNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D185FE7B7678520832236B38A00E369 /* RenderNode.swift */; }; + D0FDD0434090177CD308ED76602AE455 /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF48C90544457D818A3293740E7D49D8 /* Rx.swift */; }; + D10EDF998CDA6852F82760E28E8F091A /* IQTextView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57E3B3CB9A7E71E3C41DDC8AC8973B74 /* IQTextView-dummy.m */; }; + D11C5FB6E97D1D93FEB7C07241BCC721 /* EditorImageResizerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52D1166499BF80F225745AF3A61670DD /* EditorImageResizerView.swift */; }; + D13238323C808103383280B48D9FF833 /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = C066FC22BEEDC8272BC2A1BB6454B72F /* Materialize.swift */; }; + D1B32297F53DAC71DC34649E3A48CF32 /* BlendMode+Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 423CB5BAFBC5B1B7B8867FCF7091EAFD /* BlendMode+Filter.swift */; }; + D1BAD9273AE3CBA8BE215DD234ED0641 /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30CCA1EB71E8556A17A5DB3D0EF72902 /* AsMaybe.swift */; }; + D1C08C6ABA5A78800C160E54BA22FA50 /* UITabBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A73D10EE0B3B95755803C56234B8C194 /* UITabBar+Rx.swift */; }; + D1D3D33D88845292F2024C488E0D6A73 /* ControlProperty+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DBBD891BF6C368D4AE331AD41909336 /* ControlProperty+Driver.swift */; }; + D1E29D4E3A8F4E6EA0802C90B0729BDE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6658B8DF65726B2667DA2082D95CDE2C /* PrivacyInfo.xcprivacy */; }; + D232B04D611FA4C1975092C04E45C9D0 /* IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC7B8DCEBB0FD4064FFEAB1E9BA967D1 /* IQKeyboardToolbar.swift */; }; + D23A8B089BE2FEAACF5AFFA9451E7139 /* AssetLibrary.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC9713B9525A20943182AB6D5E22A57F /* AssetLibrary.swift */; }; + D25CE6003CD20B30B691ED7372087613 /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = D88363A45076A8089140ABB4169C44BE /* RxPickerViewAdapter.swift */; }; + D2854184492AB0652C029448967FE129 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3BAA05F975BDBFD9DB5397876D7BA25 /* ServerTrustEvaluation.swift */; }; + D28C6561309CE8EFCE535410C20898DC /* LegacyGradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3538D5D07C7C1EEA48969493103616C5 /* LegacyGradientFillRenderer.swift */; }; + D298D386913468C9712081456C60D77C /* GradientRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 406F8443BD9B36DA3D96980140325A1D /* GradientRenderLayer.swift */; }; + D2A5F87B90C178639FECC0A3CB42978D /* RxDataSources-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CDE862D7BF7002E18408BEC71411A53 /* RxDataSources-dummy.m */; }; + D2AF9A7FD73B95960FDA4FD06C4BED08 /* NSObject+MJKeyValue.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0EB9FA6D0C021B52847CA29ACE00CF /* NSObject+MJKeyValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2C6284381E6492284EBABC8369CF5AF /* Core+String.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C08D86D054AFDEF0A223CD7A4B5015B /* Core+String.swift */; }; + D2D20DB2826B591D39A66F05E59AC05D /* FloatValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F52C3A02F01324899BC12175E83B1E /* FloatValueProvider.swift */; }; + D2F694ED8F2C032D38470A9A2EF24969 /* apply.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB524C0849E4B0FDC0EC4D3FBADF657 /* apply.swift */; }; + D2F85BB681E8EF92A4CCB24E4DF6A99C /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = A05278B9761105500CD055B4C550BDC2 /* CombineLatest+Collection.swift */; }; + D32B9186272E22BE3BD2B51CFC481173 /* LottieAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 073E1802D9E834D19ABCCBDA089E92AB /* LottieAnimationLayer.swift */; }; + D349A9DB4770091311275B3791EDF129 /* Differentiator-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F2C087558ADE98640782FDA625F779D /* Differentiator-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D37E5FCE8CD9E5458533FF847C6CE6FF /* RxSearchBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9338849C2BBC91DD9D38114527BD13B0 /* RxSearchBarDelegateProxy.swift */; }; + D39ADDADBD9EBD47CC36026EA6F1633E /* YBIBCellProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8BEC335BBBFC53C5753059CA075FB3 /* YBIBCellProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3C863454612C752A1A4133C64972A5D /* DDContextFilterLogFormatter+Deprecated.h in Headers */ = {isa = PBXBuildFile; fileRef = 768284F94C04D4AA181C44C6DABE481C /* DDContextFilterLogFormatter+Deprecated.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D4218DA55B2BA45937589200CC0DF1FB /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 652AFE78F8E551FC43A6A45DC83A3681 /* ConstraintMakerExtendable.swift */; }; + D4B981D7F517394A1CBA2BCDE4B01A01 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + D4F312B997FAF67C930BE4A29CF47CB7 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CC6AA20493473721AA86C0A1A50A8DD /* ShareReplayScope.swift */; }; + D4F5C37FC3D64648FEC360903AF1FDF4 /* RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6092F696CF83DAF2A79FEC33407A7B6D /* RxCocoa.swift */; }; + D524921E7AE9C9CF9326E7DA8F80A034 /* EpoxySwiftUILayoutMargins.swift in Sources */ = {isa = PBXBuildFile; fileRef = C490335440F75C578775EFDF160BC241 /* EpoxySwiftUILayoutMargins.swift */; }; + D52966A0BA4ADF8470C6E99A4A2D2D8E /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F648C5A78D49866F4428026C3DBC0FF /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D548E4E0D9121E18DA31F2150791F9AA /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82C0724C0421CBE94F5889AF088B58AD /* Image.swift */; }; + D5A2B190C4A0490CAACAD3C4FC76531D /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FC3E4E3FE9B243927547B8B3D39931C /* Concurrency.swift */; }; + D5BC75187BC76C9D39D22066FE4E2A83 /* YBIBVideoCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E70EBF8D3A2110BAE7AB2F5C0FCE6B7 /* YBIBVideoCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D5D2B4102317BFE08EDDC3EA2E5C187F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 103B0BA9D30353B2A3AE6A3E4D345958 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D5DBCB44CC01B3265CB5691D80FB1CE2 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 165FE2BA9D7A569098A2DD6DEB322A92 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D5E8C734FD5A89DE65990747FB71E3D4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + D622FEEF75BE9D0AE9655CD5BB644E74 /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC0DEEF56E149FD1D1F4844450CEFA30 /* DashPattern.swift */; }; + D62E8EBC82FE2A4110091499EB72C052 /* TAPageControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEC0659E54BABA5CEDC5C8D6F2B82C0 /* TAPageControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D63AACB28313CEB9B9465C50A5A23892 /* OIMLocationElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CEFA599307C4B7B9E0ADBD31EC1E745 /* OIMLocationElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D63D5497A20087AF148E0E16581A8572 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + D655E5D2240DAD66E04E1EEC16BC6EBB /* RxCollectionViewSectionedAnimatedDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFC9B638004387C6C5A45619A8A5B2E6 /* RxCollectionViewSectionedAnimatedDataSource.swift */; }; + D663837F4347AF58660EE6F7FD426ECE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + D6748A967D1B41C6C74B8987F21CE201 /* OIMCallbacker+Closure.m in Sources */ = {isa = PBXBuildFile; fileRef = CD723E5D168E0DB8A0F018B2A3F37D7A /* OIMCallbacker+Closure.m */; }; + D6B15F2F110BC58F7635A9FD7A985C79 /* IQKeyboardManager+ActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FCC1C19DDE1E49C438978C0B7E9C33E /* IQKeyboardManager+ActiveConfiguration.swift */; }; + D6C50646DF1E6DFE90F59F1DD2EF6104 /* SGPermissionCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 27AAEC8EEACDCAE86C246C18B522A943 /* SGPermissionCamera.m */; }; + D6EDEA4B0E659AFF6E7077B418A69EA3 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = A21AF33BAC1856A8747F2733F50DB38C /* encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D6EFA9EAA562143F338EB164836B7837 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + D7047855F58ADD6E380310E6715EE862 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C946A52BE769027A887483647665E8F7 /* PrivacyInfo.xcprivacy */; }; + D78090BCD2C27C2F0755E5F2075AD714 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 482D2B3E2E595AC7494A2C02FBBBF93E /* HistoricalSchedulerTimeConverter.swift */; }; + D78511BCB71209310E67BFD758101868 /* VideoCroppingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88F9C67E13D04AECC7D6EF209630A8E3 /* VideoCroppingConfiguration.swift */; }; + D788BA4B9E8186271BA75CA52B30502C /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BE6176D5BCDA6C689675AD9CC5D2E6B /* View+MASAdditions.m */; }; + D82846F53EF89ECC62238779ED046B72 /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = E667E711991991D7861A26A9AAD09227 /* Decode.swift */; }; + D82A0ABF3F863CDDE336FA92E16862D7 /* DefaultsObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6671E4DAF2E9CAB55C735355A9FEACF /* DefaultsObserver.swift */; }; + D868C392BDB9CFABF97973A998C5AA56 /* SectionModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69233A166022F4FAA2349D49017EE68A /* SectionModel.swift */; }; + D8B1F69BCF2B8262D5E9E576E59ECBE9 /* NetworkLoggerPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B46A5D19E97AE6984F675B88762077E /* NetworkLoggerPlugin.swift */; }; + D8C1C36499AAE21BC329AC0313715AB3 /* AnimatorNodeDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 312BAA0DB116CC685C2FA70D3B0E3B3C /* AnimatorNodeDebugging.swift */; }; + D8C5939E07C5F477891D6DB0FF2016EF /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B22FE5811BBCC2B3F4C41290E2AA14F9 /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D8EDAE77B19B3E8930DCFF4E9EDBF136 /* Mask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99527D922C5842B63773D4E636CAF2A6 /* Mask.swift */; }; + D8FBC2059AFC33C299D3ADAE97C9A431 /* PreviewLivePhotoViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 925963B6762F7EDD3F4B025942C781DD /* PreviewLivePhotoViewCell.swift */; }; + D8FE4883BF58160CC625580FE1FF2D8B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0A34DFF17E01BF9AA5F87F3E3FADCC7B /* PrivacyInfo.xcprivacy */; }; + D90607B4E56247B19B14462E487BA86E /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 145E202321E3781E1B84D6204FD9B9E0 /* MJRefreshNormalTrailer.m */; }; + D90DED0F5638B1C44F4B6C62D600D240 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B80E9AC9A0222E9274AA651470F3F4 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D90DF1376DF5E2EA644313BCD2E03058 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7307E2DAAF66A2DA284CCE8C33EB8980 /* MJRefresh.bundle */; }; + D912BAA92B710E431466F00CFD74B839 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A60F1CDF890259E3C6967417E873B4 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D96A36BA5D4435B9B249FDA8358A0BFD /* Archive+Progress.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6DF2C5453F49CAFE051B8FD6D17FCA4 /* Archive+Progress.swift */; }; + D96E2F7DFB6141B690667AFEC61FA224 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B0CEDCECE8F6A5932A40B0EE599F5F8 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D97455C3D7C4CEDBE2EA90B79277BB72 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = 721C8DFB2C522F383CCF147731D6C8CE /* Take.swift */; }; + D99628FF1D127B3AAE385EDC25AA3BD7 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BD6854C4461EA80B767FF2182ED6EF2 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D9D0A2F87519BD84F4B2B2D5732B0AB2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + D9F3D624752DB3F5F2736076F8F1B116 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + DA04AE61AF2464F87B87303CB25A8E8F /* Core+DispatchQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F13ADE691A62AB1DF886EA4F7FD67E96 /* Core+DispatchQueue.swift */; }; + DA07A5D6764940E785E70EDD08C5E1B0 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92EFF684FDFA11D0956B96DD55C639A3 /* Plugin.swift */; }; + DA2EA670260D4E9CCFC579A878E5B4ED /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 904B48D203DDC37F7BD33F40FE034271 /* PrivacyInfo.xcprivacy */; }; + DA70ABA313645BADFB5BC13FB995DCBA /* DDLog.h in Headers */ = {isa = PBXBuildFile; fileRef = C34E1FC5A28BDD54E39AB0B3CD4FE159 /* DDLog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DA77D72DA1A4D08A1241EE9DA11D4F12 /* SGQRCode-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A02BEE14F8A62CDC43C3565AB0E2869 /* SGQRCode-dummy.m */; }; + DAACB6C433D86B6C98D2F66375D35A79 /* YBIBImageData+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 147AA59E39E9EAB2C4AB74196F84BF4E /* YBIBImageData+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DAB03D435BA487BD030524A9F9312864 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = F51E7DE30BC2B5251F76EC0B770D2D23 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DAE3C50192F194E9C9261FE8E2D6747B /* IQKeyboardReturnManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8120E1B44E61CCB3091659BA9A096D /* IQKeyboardReturnManager.swift */; }; + DAEC2E2F152FAB589719CC460085DB00 /* RxPickerViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEEC9F1860BDB5691ECDE33AB473E52E /* RxPickerViewDataSourceProxy.swift */; }; + DB17C9319D2226DB80AFB60844D61209 /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E286D9023E96E911902F5ADE064F52 /* MemoryStorage.swift */; }; + DB19161ADD3C766572D982E840738225 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 532E9030A15F6711B544C8BEAAB3529F /* LottieAnimation.swift */; }; + DB269D8700C7F90AFF5D0BAB45B0F8C4 /* Data+CompressionDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 461F530A1AE9AF2A8B01A2FA5A394E06 /* Data+CompressionDeprecated.swift */; }; + DB8A9051CC18A860342CA0B573718EC8 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BE8955A2F8AA0C1F76F5B85C29BB9B /* RxTableViewDataSourcePrefetchingProxy.swift */; }; + DB9FAD58D5D5101F31C30C8373E21F2E /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = B01841AD7F4C16405F1596D4FC42C0B7 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DBA4803F4765E1650B8C6841157F5D73 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59D37D7B8A54CCECB3D3FF11BA59989C /* ConstraintPriorityTarget.swift */; }; + DBA9500CBBA5FF6FCBBA115AE4D12152 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E30CE0389A560241FCA8FE83FE0B440 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DBC215E63518692C01829C43DE30730B /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 33F3EFA42D26365BF6A13F0710A58980 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DBE151E83EF0795D63B966BA72493B35 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FCDFD3479752F715448F3E88166C942 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC116AC0C3BC808A198B9C1704FA8C84 /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 682DF2A9B09E750ABE7655327548340F /* RequestInterceptor.swift */; }; + DC1380F89C13E6AD588136A434F3A572 /* OIMFriendApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = D7B97434434069C9B201866FE0542B05 /* OIMFriendApplication.m */; }; + DC173178DA7CC9561947B30F462745C4 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 385A5B781881CF05DA0885623E2F500E /* libwebp-dummy.m */; }; + DC23ABA9F3B310276C216C3FC92817BA /* WKWebView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFDC09EB16E3515D1F2F66533C832822 /* WKWebView+Rx.swift */; }; + DC2A18D6757FC43108332EBAF1A08533 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = B710990BD7BFF0A6D6E01A535C8AA8D1 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DC3EF9ED530ACDBAD56AC2C72449546D /* SGGenerateQRCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 40BC21F8CF8714BDE827D23C7C0AA1FF /* SGGenerateQRCode.m */; }; + DC50C14598B1CF4EE405912D086A2058 /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 153DDDE8AAB0748444FFC4BC506F42BB /* LottieAnimationHelpers.swift */; }; + DC74FE4A54ABC1014D4F43EE30D080B9 /* AlbumView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2065605DBD09C2F4550B75E77F9B778F /* AlbumView.swift */; }; + DC88CAC3EBDC2E67DA5975EF610F3BB1 /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761EDCF2FCF03DCA3D4AAE68F1AFF4F6 /* GroupBy.swift */; }; + DC8A5E54801009B75FAF7209FC87940D /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E9B43B55164D16B6F6795C9CB4ABD4 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC9E902FCFE39F70AEBDCE8442F7CB4E /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = EC770E47AC11ACA4E82F3988F665DAE0 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DCBCF1B3F76B2B74EAA05867FF15DE3A /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 869279DCDFEC7F94D90F59FA986A08DE /* PriorityQueue.swift */; }; + DCC91EE07AF8DA97BEB7C13435F86DCA /* AnimationTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77F14C85DC9D13A5DDC84E594EEA8EA7 /* AnimationTime.swift */; }; + DCDF1EE1680BD843F511BF67F227FAE9 /* PhotoEditorViewController+Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 745F624AA53CEDAE08D3E89BB5C6DBED /* PhotoEditorViewController+Request.swift */; }; + DCE4CD952E671E4FD854F1F6699CFAFD /* DefaultsBridges.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDFC757F93436D274F31BEDE5022C7AD /* DefaultsBridges.swift */; }; + DD086708752F472B0AB078F335BC4F69 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 40AD8D7E0434ABAC40ADD7301AF66559 /* SDImageCachesManager.m */; }; + DD19644625120193D3829CD28947BD5D /* sharpyuv_cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC1E692C3BCF796EC57061986DABEAB /* sharpyuv_cpu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD46BA20B478F77DA75007964216F86F /* SGScanViewConfigure.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D40C7E7A6B409DD2DD2897EE900996D /* SGScanViewConfigure.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DD576D4E4F1144C2D1429D071DF11D32 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57F68566C1D13B6EF1FE82022B5A1E98 /* LottieColor.swift */; }; + DD7D38B1D11219F1882E3E9DD5FA2E0E /* YBIBCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = BEBE1953B540829D2FA2A81822E200CA /* YBIBCollectionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DD953C7254A2F9DCCF3758D6AD00F29E /* Rectangle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A1FA30BD56F8630D1EBC9B27C1B166D /* Rectangle.swift */; }; + DD95B3D71392B724B2ABC3911B276D8F /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF4F8D8EEF753E757F917C580AE90AF6 /* Observable.swift */; }; + DDAB12CDEEF1489E148C427B847F103A /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B1A2F0EC904214E6975457AE08127B3 /* SDDiskCache.m */; }; + DDC0F60F4D6F186EF6DEA97F2B84107D /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1B69283210E0A01B746270E17822A67 /* RefCountDisposable.swift */; }; + DDC1718E80C5A12699A652A0EA10CACC /* PhotoEditorMosaicView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF35938B724A76703B2E4A3A763CF031 /* PhotoEditorMosaicView.swift */; }; + DDEDEE8B19E94E46A2D70C78127236E5 /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ED7FC1A30A3ECB192352380A7A874A3 /* Kingfisher.swift */; }; + DDF61BEA9AFF4E1CFD53D4B84D119DF4 /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCE67E867E7D87D4BB2761D5775A1CB2 /* AuthenticationChallengeResponsable.swift */; }; + DE3C8D3A427873A89B34556C4A2A0729 /* sharpyuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 41E3FAAD2234BC50D877D8712F227C53 /* sharpyuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DE50BB83890C5693CFF24F29B5FAF6DF /* VideoEditorPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C25F665BB457D3486FF8820D7DAEFAD /* VideoEditorPlayerView.swift */; }; + DE553B8C80DF65038D90C24727ED63AA /* UIApplication+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 843DE0B172D56D4DE04CED8FE9C2717D /* UIApplication+Rx.swift */; }; + DE61A14BAFA5A642937ED99AED8A3BF0 /* SDWebImage-SDWebImage in Resources */ = {isa = PBXBuildFile; fileRef = CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */; }; + DE98ECCCA7106A4EA575EF34830D41FF /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B80BF427EA0435A2D0917C4A28181F7 /* MJRefresh-dummy.m */; }; + DED29495981A4879132B212D29F011E0 /* SDCallbackQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8B5C0110F4223411274CE6A011F364 /* SDCallbackQueue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DED9ADFC8CC65243FC54E008A853742C /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = C1B656B97F0E6F92AF27F46991440302 /* MJPropertyKey.m */; }; + DEE9768C736DE29A649C5EB71C4869C3 /* CollectionViewSectionedDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F1DC11660BCCAEE4264510FD65F5749 /* CollectionViewSectionedDataSource.swift */; }; + DF041B324D1AED0B879B8F3101A5A590 /* PhotoEditorBrushColorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C4E81CAF61B893EC5CDB1338F44D9DA /* PhotoEditorBrushColorView.swift */; }; + DF09A95BFB1D9368C68F9395315F65F7 /* UIScrollView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDCD962236713536EFF122F0B8A174DF /* UIScrollView+Rx.swift */; }; + DF207BC23177F7FAF26DFAB9168B6216 /* MeasuringViewRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 480FA25861EA5315A0609447A82AA5C2 /* MeasuringViewRepresentable.swift */; }; + DF28F9B66D46D3CE0A315A19E135C16A /* PhotoPreviewViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BDCDDE834F17A8AC6D94875DF09C0F2 /* PhotoPreviewViewCell.swift */; }; + DF2B15402CE105F5A8CE48BBDCFFD5DD /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B3260A1DE9EA63DA5199E6744363682 /* MASConstraint.m */; }; + DF2DA245F12E9DE9D36D5C96CBA0A0EC /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = E103C1EB95D05A5113B2717FBA2379A3 /* Timeout.swift */; }; + DF7DC58EB9217CBF2B6DA9EB3B4F5F6C /* OIMFullUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B15C26343D5A8DE9B5A7A36BA7145FD /* OIMFullUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DF8AE419C1126BF0783268F549EEBF29 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC8CC7E34BF7AAB97DB81ECFAE7D3BA4 /* Bag.swift */; }; + DFAE5F0CFCD5B6A5DB0E2F66A9E0B64C /* NavigatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAC22EE2D24B29FFE5B322BDA4188153 /* NavigatorProtocol.swift */; }; + DFB334203FED63EDC52845F9A5914BB0 /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAFFEE4F2543B08BDE4F5A2D9D9F9D6F /* Just.swift */; }; + DFE529F0C85C10EF361F62017D722E76 /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = B29D086F596B924BFC34C5571585AB8B /* MainScheduler.swift */; }; + E024308BE172CDD2B5057109BC5A5F5D /* EditorImageResizerMaskView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 422984CB36725E3CF2CFC36BC69EC1FE /* EditorImageResizerMaskView.swift */; }; + E03D4CB7A199F25F35C98875B44AD563 /* distinct+RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = B10E608E3748FA5D17E35C221637F5CB /* distinct+RxCocoa.swift */; }; + E080E4E10F9EE84CF6A4EF650744131C /* OIMGroupInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A45C3161BC7648F62303036FF3B350C5 /* OIMGroupInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E08450720F1754962C0C0528ABDAFE7C /* EllipseAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CCA2FE51D5FD515273072EB283E8F5D /* EllipseAnimation.swift */; }; + E0C9E5D8EE254CF424930A41843A57AD /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E4DF96474119089881BF2A330AB1728 /* Timer.swift */; }; + E121B3FC7EB8A408935C0B5472538F7A /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED390F269F79FD6E16BA0CEEC761596E /* Infallible+Concurrency.swift */; }; + E122F98E77B93BE2E6D39CC3A0816028 /* GIFImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D7719DE8DCBAF91163BE806ED694652 /* GIFImageView.swift */; }; + E133D5294A2132BE10DD88FDA067DFEC /* SwiftyUserDefaults-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 410BD1B04CE17FB86D3C4FB7427E2E8A /* SwiftyUserDefaults-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E143494B69E3B18FE61C76A73A5EE775 /* DotLottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = A166E25A3C3451C37A3AB8D76235D632 /* DotLottieConfiguration.swift */; }; + E1734E56DB48E6F238408C9A232C7051 /* UIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C71DAEAD1ACD3A2CF92620FB0B243ED /* UIView+Hierarchy.swift */; }; + E18541685B292228D035343813E12E12 /* LayerFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06C8EC9CBE5189937E85D41906662CC4 /* LayerFontProvider.swift */; }; + E1D5E750D0967821FCC5E697AAA2CDE1 /* PickerTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E579505C72B45CC000E8E91927E7A5B /* PickerTypes.swift */; }; + E1DE69F6BB6235A6EDB6C99A184BEDB4 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C4FA82069B6C1E054035B43140BE929 /* UIScrollView+MJExtension.m */; }; + E24632DE716A10A6D99CFA1A4F3E2FE3 /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF1E1A17DAD75DE28EC1283BB21F7AD9 /* Binder.swift */; }; + E24730B2A18DC39C2BE4997ADD4A7598 /* PhotoPreviewContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 682EED78D7F63416FF9CFDCA15743DCD /* PhotoPreviewContentView.swift */; }; + E270921E974E7D5ACD5BCCF42936AFD6 /* DidDisplayProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D3412FCB9DBC857F8F90239397E20ED /* DidDisplayProviding.swift */; }; + E274BA92F9C6AA938EF04CE7EA38CEAD /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9DE6D779E74364FC3F954FDE24695C3 /* RequestModifier.swift */; }; + E2D61561302F31F37F4AC7010B4C665B /* ViewProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = C86BA257469B7EDB7C543D6521539A53 /* ViewProviding.swift */; }; + E2EA5D15C15D16580E4A7FCC41694567 /* FramePubRel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17D15555C12B0AD21FDDB995C7FF080C /* FramePubRel.swift */; }; + E31EEFA075313CAF17BE7EB83C92FA41 /* BehaviorRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4D82C83902BC9F0FB3834FA90DDF005 /* BehaviorRelay.swift */; }; + E35F47135B73F9286B07B267CB98513B /* NSTextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83BABF10DDCA2F56F8F22F97844ED531 /* NSTextView+Rx.swift */; }; + E37671A03B4C17A1CF3766A6125833BB /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55A85B8F88C0FFFDA82F7292E474114A /* ConstraintDirectionalInsetTarget.swift */; }; + E39D20554396F3279704BFC67A045D86 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A5E30809D431C734969D9A65F160C87 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E3D779DEE753C0B0D33BA8E73A980265 /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73A9AFEB67D867F54621A8B038E14078 /* ConstraintLayoutGuide+Extensions.swift */; }; + E4300B4836DC8B47F8D09A90DBD71587 /* YBImage.m in Sources */ = {isa = PBXBuildFile; fileRef = A10CD0E8D82FD587766DE98C4C52DA77 /* YBImage.m */; }; + E4A29F8C3ED424A7BC912DB796D03AFB /* UIView+ParentObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1347E158DD6325436FEA7A90CCD478A6 /* UIView+ParentObjc.swift */; }; + E4BEE8283802F8F8B17F1A1BBBD3CDE4 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2E98E412F65A94B34FCD32839C494DA /* Session.swift */; }; + E4DE6EEDF2754E430385AC1CF42D8413 /* RoundedCorners.swift in Sources */ = {isa = PBXBuildFile; fileRef = D15EDFC11F19BC7A78A242A7BC5BB452 /* RoundedCorners.swift */; }; + E51A276849B087A22887CEF931F178C0 /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC356DA22FF4E1FD88BD44E203B78566 /* ReplaySubject.swift */; }; + E51D1D6DB3179622992C91A1DFE90D5F /* GradientStrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6586E0831A482865F4AE976D099C02EB /* GradientStrokeNode.swift */; }; + E52156D72B247DB3D747B122553BFB69 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D0DE2E7445B1ACF99F6851237BF43962 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E54BF0D07C2708D631DC6EC9D9A6F752 /* NSSlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11C1ACD4FF2DDE99653570E86A791A22 /* NSSlider+Rx.swift */; }; + E5B057BC87284367918B2DB9CA084B4E /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = BA6D541DD91BB83D988956E0E46B9C27 /* MJRefreshAutoGifFooter.m */; }; + E5BD9E38260CFB54191D2F4DE6C993B6 /* DateInRegion.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA082DF76C288109730ABA3263B7E26D /* DateInRegion.swift */; }; + E5C456FCAC3DA10DC08919AAF20A3626 /* IQKeyboardReturnManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D50006193AC7916C53011FD30B6B91F /* IQKeyboardReturnManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E620832870D38BCB4241125AC2500F7D /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 815A9A68FC8F5D4B8295C60201EA3607 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E650CA91216B98D166FDDA405561CEF1 /* CocoaLumberjack-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B82EBD3E153DBD61BEBCBDBDA0605C7 /* CocoaLumberjack-dummy.m */; }; + E6531A60CC8B48F320DDD76C480102BF /* PhotoPreviewSelectedView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAC6175EFA83D8732500292A8A30189C /* PhotoPreviewSelectedView.swift */; }; + E68D8B20567D40A88FD6D438E2DEC82A /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CEA18D25AEC926DA2658E42254B462 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E69689D02F65E151584D4699213E0763 /* SDCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 33B78742EEB2B26C6433B045E4C130E7 /* SDCollectionViewCell.m */; }; + E6A94ADADA07E8F62C0671EDE148188D /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B419226841037EB005DD3984345CE25 /* LockOwnerType.swift */; }; + E6A94F529B95809112533914EC89CF36 /* OIMAttachedInfoElem.m in Sources */ = {isa = PBXBuildFile; fileRef = ED2816CD352689684AAEE79226E49047 /* OIMAttachedInfoElem.m */; }; + E6AC3AF0CBAA1843B13F34AB5CA491E7 /* OIMManager+Friend.h in Headers */ = {isa = PBXBuildFile; fileRef = 610421EA2DB40C1997A6697143D26FCD /* OIMManager+Friend.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E6F716B03ECC7EF34A1D0584DCDC6C0A /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D1007188695E58DB2F07BDFDF18D71 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Public, ); }; }; E6FE2596512201193E95FC356C6E3351 /* IQKeyboardManagerSwift-IQKeyboardManagerSwift in Resources */ = {isa = PBXBuildFile; fileRef = 8D8069D3964814114ACEC3084C010B59 /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */; }; - E774F03CFBB7FF4A59157E694D930A02 /* EllipseNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAE7582B7C4BC8106041A1A832420987 /* EllipseNode.swift */; }; - E7AD71845468E1609A0CAED1C60085D5 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C77D66DCCBD20AA11966F53C867FF4FB /* Accelerate.framework */; }; - E7D06F2DBFA16E219746D0E11E60A501 /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 185E9EEEEA7B324631291ABE87B55BF9 /* KFOptionsSetter.swift */; }; - E7DC25B399D700EFCA1E2F1E9715AF1F /* Core+UIFont.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C262EC7FE9B7C5853A9BF656E7B4C31 /* Core+UIFont.swift */; }; - E8012394A10B6AC7DA2195984F9504E9 /* Defaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3959E727B7E6D436C58E8154A7EBB3E0 /* Defaults.swift */; }; - E84C30FA4A382D9C330E87FB32C009AE /* IQKeyboardAppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DC4BD17942F389D44EB543440F08338 /* IQKeyboardAppearanceManager.swift */; }; - E86106435DADBB30165472A7953A739C /* BuiltIns.swift in Sources */ = {isa = PBXBuildFile; fileRef = A66DF04928172288AAF39431F1258403 /* BuiltIns.swift */; }; - E875CFFB88DBBA0D72C4B7FC7A4C100D /* ViewDifferentiatorProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3189E69539A5AFB420AA7887844BAD4F /* ViewDifferentiatorProviding.swift */; }; - E895F57BB625331252C6901B201B3192 /* UIViewConfiguringSwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC3798F5D6C9EBC45E8AABCABA094C90 /* UIViewConfiguringSwiftUIView.swift */; }; - E8BD9A6BB79FF25464A9330F76C98A16 /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0141EC31CE079520632B9192FA59C41 /* Decode.swift */; }; - E8C960787E7B8DE1A914786EC04E8917 /* PhotoCroppingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ED6C4C1077B91FD00A25B4E57EA4C75 /* PhotoCroppingConfiguration.swift */; }; - E9043D5B49AF869589B1850CF8795EBA /* EpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF7D4D50D65E9D4198254BB3BEA4CA0 /* EpoxyModeled.swift */; }; - E930A5612DC6D120BE040AD17C6D1BCD /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BFD69CA959D1A9B459B375E711D2513 /* MASViewAttribute.m */; }; - E95FE85B929E24CD0B18BB521969C9B8 /* YBIBTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99DE9108716840253E3172EC905024FC /* YBIBTopView.m */; }; - E97E56E8F38113E2CFB63B3A66953903 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7410C1DF2145BEBE0C7CD5DAAE9F1ADB /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E98C3D7A8430639438912254DF730791 /* ColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B1D5C56726F64AE0476C0C1DE058EC /* ColorExtension.swift */; }; - E9AEBBA488E8832DA6CBE9881DF9DE95 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3359376B97F44EDE8A748CC630F6B455 /* ImageProcessor.swift */; }; - E9D8AE39CEE9529B164E3516235BEE4C /* UIControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4F73FE9E51AC36245FC54A1CFE8E872 /* UIControl+Rx.swift */; }; - E9E2076097D04B8389FA7FB9FB975527 /* MathKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4F177FBFF8775FCFBEBEB5746A1F62D /* MathKit.swift */; }; - E9EF657E848E7B326050E0C9540BE483 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 2707006BD41B87DF0C15833B3D8A4253 /* UIImage+MemoryCacheCost.m */; }; - E9F1CF2BE311C33A9629B0EC6D019F3A /* OIMManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5393BC5A87C5F37D204A620A3F1979BA /* OIMManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E9F8F68A964586D21DD22030F1D85BF2 /* SwiftUIMeasurementContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12AC14DB654B07B92FC565359BB24729 /* SwiftUIMeasurementContainer.swift */; }; - EA4323194CD798F0B5146EFF75556E5C /* YBIBWebImageMediator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AA9CF87A7F0EBCDA4F896271A17A3F8 /* YBIBWebImageMediator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EA4EB4A44D9B8DC03032A43AB3CF7EFC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - EAAA0041F6A0DB1039D328B35FF5EA09 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4183C044A4BC7762B0A05245AEA4D915 /* SessionDelegate.swift */; }; - EB108AC1D4E177FFF0A53ED3DEA2E6C9 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64475ACC13391CED0E8F1895DFDB3F0E /* Sample.swift */; }; - EB742B4A25F7E5F707BBEDCD8546D01F /* SolidLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F23207FD91B4D58996E1529198654DB /* SolidLayer.swift */; }; - EBB7D34FFA666C9BCF2FE1D049FB225B /* lottie-ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CDFE58BD47F6BD0FC9FB7D6FB1471943 /* lottie-ios-dummy.m */; }; - EBC4FC6407FF65199FF804F8076DE315 /* OIMCustomElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 030E7B5E65DD005483DE4FC112390EBA /* OIMCustomElem.m */; }; - EBF34312A1F64FE81987440230E5BC49 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF44BFBC7F4569C26187AEBF6FB9202E /* IQKeyboardManager+Internal.swift */; }; - EC03F99E8ADF9C5EC34E14CA4F994B6F /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B68EA6BB85F8C760488A50BDCC241910 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EC36C29D705F45E956A16F0E3C8A0D2E /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B20090C59B33E3BAD85392BE2A2BF9 /* LockOwnerType.swift */; }; - EC8693D888647A7076ED1322373E8C39 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - EC8E84A8FFADDCA562A8608D141D9027 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E97AC31A9AC2AFCB0774AC162D89D243 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EC9B34262AED632D7EFB49804337648E /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C0385510E7B13F5AF7511624C9E5C9F /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ECB3F9C6F6386AF7AB07525F6151CF73 /* CropConfirmViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C008E791217FF7AE2284DE4ED33D82DC /* CropConfirmViewConfiguration.swift */; }; - ECBB9D041E2943036EFF0AD5B7E63B4C /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8763DABE5287013A3C662DD1707CD9F1 /* Response.swift */; }; - ECC5C2ADC2682F9171FEA22AF10DCE53 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89FDADBEBF7D7F7E8ED56EA6D6D96604 /* ConstraintRelation.swift */; }; - ECC6B16E1B855C98636470D0151AEB0B /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 937D966D88196EC775BA025C4832B900 /* MultipartFormData.swift */; }; - ECCA7267997F18C0714C7632CC54AA1B /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97A7803B1238FF4874E59DBF1A7ADE7E /* Map.swift */; }; - ECCB9573EE1FC50A834CE1A38B186FCD /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA1B465FAF1DF8179501C93F8925EAA1 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ECE1AFD4546BB60DCDB4FC88549B68C5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - ECFE5E33B83F4CB59ADF421AE0876459 /* KingfisherWebP-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F49EBA828878A7FD53EFD3EC52DF8DB4 /* KingfisherWebP-dummy.m */; }; - ED09C58E7663659728CE656A647A65E8 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 1724A41AA97890D9CB0895E2B99DCD9E /* SDImageFrame.m */; }; - ED1AB9A592D2AE39400348BF0D201B45 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = D3FAE393EA0CB065CF13EBD52B25C74E /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED28820C4CB92D994FB43DF2E56B2720 /* DateTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DA8B2B1E25EA9FC5AD2833490B8F5C4 /* DateTransform.swift */; }; - ED6162890A51E74E00C4D1D258D8E8DC /* ObjectMapper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 49CE288F45AE14A8ACBCB47C4E6EF706 /* ObjectMapper-dummy.m */; }; - ED737F7F6498DD3542CD014AB696A02E /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7943889E640D6E0573612C76BC2D55C7 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED9DC266977F10C47FC18E466C231ADD /* SDCycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9167B3FF06763D714F9660F54885ECEF /* SDCycleScrollView.m */; }; - EDB55972F32B55877DEB79D38082A844 /* DDLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 5481AA91905207DFC89661643C0EFD89 /* DDLog.m */; }; - EDD1F4A31BC9F0816F25B14E0B4B89B5 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D67CAECC94DDFB066BCA8DF4BF753DB3 /* NetworkReachabilityManager.swift */; }; - EDD523987A60EECB6464615EA4734277 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F4D184BC6A2082CDEBDF50A9810B022A /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EE0F999042684CCF35B4C33A38F954F2 /* SGPermissionPhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 35375E5ADCE5DCF4EBBD0DD0B80966E4 /* SGPermissionPhoto.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EE1368EC3C3660565A82A9842E57124F /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 598A7AAC951814B1308789BB200D8911 /* Box.swift */; }; - EE2CDA0384DB3DCB746E7BD58B7DF517 /* IQTextView-IQTextView in Resources */ = {isa = PBXBuildFile; fileRef = 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */; }; - EE2E54869CCD4BBDE50899BFD5C9E204 /* GradientStroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CE84950E22DD459CF2C5DB2783BAFFB /* GradientStroke.swift */; }; - EE6463A560321E0751B1BC18C23E2567 /* NSTextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 160A8AF75E876201D8C20CE7C39BEC82 /* NSTextField+Rx.swift */; }; - EE6E8FE636D2C02E3D2FC1E8555B4612 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 09772666C0AEFD8BB25B0463F2F3934F /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EED016DE8173CD38CC01D88CD2628984 /* NSString+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA8FC41EA3473140B417F7087C0C8B5 /* NSString+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EEFDF1A3CEFCFA7C742DD8C5FE7B1408 /* SGWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = E517A2C282848FD3AE6C7353C8CFAEEA /* SGWeakProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EF04A170A4D1D4E6CEC857B6D8043644 /* sharpyuv_csp.c in Sources */ = {isa = PBXBuildFile; fileRef = 98C65967D7AEF74EAC5A85711A296395 /* sharpyuv_csp.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EF2A6FD79AD6DCAE8D9C7A85DE3C9395 /* SolidLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3901977A60BEA76544CA1152762821E1 /* SolidLayerModel.swift */; }; - EF7B5F7D016F12532A3256D820AC1F34 /* Moya-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 86886A733B89F9C049C049AF30166EE7 /* Moya-dummy.m */; }; - EF9E5345DC68B0E0FC147DF15276541A /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC62DE620BE171E4861A660B5110C9F4 /* Infallible+Zip+arity.swift */; }; - EFD5C4FC5F7B416762B66D92200A2306 /* PhotoError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D82AA88B834BBF20D1151E382DE67AF /* PhotoError.swift */; }; - EFE0C664AF402C2E9E6F0848F6ECA24A /* TransformType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26EE58E648FD163D54D97151C69A93BA /* TransformType.swift */; }; - F02357F709F4F3A9BB4E1E6C8E88A3B4 /* OpacityAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD766BEEA3CB87371EF37EDE094330B4 /* OpacityAnimation.swift */; }; - F048EF890D150B5108DD1A531D2D9BCE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - F04EDB481BB918A84D0C80C837A9A7BC /* TextDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = B37C4EA7F5ED5F46E43C8DB7203FFA1E /* TextDocument.swift */; }; - F073660D3D3650AB86BAE8C65ACC1849 /* AlbumViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 725E391E4DD80A683204D50692D49254 /* AlbumViewController.swift */; }; - F0796F08298C7D26732760C0D6F839DF /* SectionedViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38CA5BA20DA63D05E0C03D744AEB70E8 /* SectionedViewDataSourceType.swift */; }; - F08FB6404C03C32B6797A313FCFA26E8 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F63ADBEB6601A1586154D53C923B5D4 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0957C2AA649E01C0FF1FF23272DBF2E /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2F9EE6399F9C70D28AB93C2F3695D3 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; - F0A7FE48B84BEF9C4CA3A1C6CC832197 /* LottieButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD07A6AA3A8ACBCE80E15C6F1BEF8D8B /* LottieButton.swift */; }; - F0B0B551A13101A1F5906D38E5863E8A /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9923D74C7DCC4CC752F4502C4B9F4AB3 /* Resource.swift */; }; - F0C52CA4E23A1BDEC554BD572DDD1100 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - F1108DE1AB588C74E8AFAABC92E9B90C /* YBImageBrowserVideo.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CB4260D2F04BDE7B69E9332D05E23C54 /* YBImageBrowserVideo.bundle */; }; - F1305B8EDA84194160EE0DEF96C34D71 /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4B4AB0B79C4A577880AC965914ABDBB /* Event.swift */; }; - F1877221CDD8FC3A3015CE7DC3A5D6F0 /* Array+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F12FF728132D421A61C2C6BF2D0F056D /* Array+Extensions.swift */; }; - F1A18E7F3EF61BD0A0921B810FAEDAF3 /* Picker+UIImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 445052D7B6C3849EF4DC935731E697FC /* Picker+UIImageView.swift */; }; - F1AD95BA0DBDE87A562B836694A21410 /* IQKeyboardToolbar-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEFF4F4EB8D45BF83AE2F386D71FE70 /* IQKeyboardToolbar-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F221720C4421A60C3DEF3A92BF089996 /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE89B0E952C22E11B64A894D84F8DB83 /* Scan.swift */; }; - F24E4DA6659061237424A876461039FC /* YBIBSheetView.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5ED48D1C2FEE6F9B6572BC3DC8D105 /* YBIBSheetView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F298ABA2514CA9C0132231985603A5D8 /* sharpyuv_gamma.h in Headers */ = {isa = PBXBuildFile; fileRef = 62C76DB7DA654E7AD9D4B3B2FB18032C /* sharpyuv_gamma.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2FCD6AEA1E8BEE9FA3150109F3FD2CB /* AlbumViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9245CE764CFC8D2EE878F9982D8D7E40 /* AlbumViewCell.swift */; }; - F322F2E9248769F09DC4FBB29ACCE614 /* SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5437C08DBD79B497818F7354E847A2DD /* SharedSequence.swift */; }; - F325BEE3115C5BE3907B073DDC9F5852 /* OIMGroupMemberInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = E18772AEBB906F18A2BFD0E99C107C5B /* OIMGroupMemberInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3263D294D688533EB974E37C61F1E24 /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C8BC587C73189ADA5510B1B9B628F89 /* MJExtensionConst.m */; }; - F37BF721CA0B9907AE50BE06D750C31A /* DDFileLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = CB04A3F038AB5357DF6579E119AC574D /* DDFileLogger.m */; }; - F38ECDACE09F8DEBBDFDCB9897795E54 /* YBIBImageLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 0264AC943656AA3FA9C6B88AC02C1E97 /* YBIBImageLayout.m */; }; - F3A6D79E6A1E8864E47940113881901C /* YBIBOrientationReceiveProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 98CB8DA217C5930EC3944F99F5D655D7 /* YBIBOrientationReceiveProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3AECEF6D3BB919B3E7392942E1BC58B /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B194370CEEC58191F152D61913EAED0 /* MJRefreshBackFooter.m */; }; - F3B50A140EA5062ADD0D17F76B4FC149 /* YBIBCopywriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E591ECDB169F1C1FEA1146E243A7C90 /* YBIBCopywriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3D9CAED623B54CC85DD99EB7B18C4B3 /* URLRequest+Encoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA7E8D0376529DEF59A4B52463226CE /* URLRequest+Encoding.swift */; }; - F446E12C0CBAA5E3B9AB03F1AD36EA38 /* OIMManager+User.h in Headers */ = {isa = PBXBuildFile; fileRef = 89EFF37CC53F11B002498B5B55AB037F /* OIMManager+User.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F447BD855B81CC593E8582E6562D9442 /* YBIBGetBaseInfoProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CA00F3ED3A39266FD0485E6A9A52E8 /* YBIBGetBaseInfoProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F45734F7E1F36E0D03240B925550CBBF /* RectangleAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B6F61BE674A89311CDDD88E71D4B831 /* RectangleAnimation.swift */; }; - F45CC0AF8CE901E60F1F0EAB98BFF9EC /* YBImageBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 4658669320F17E4FF1069C73ED9C3838 /* YBImageBrowser.m */; }; - F469D3446C362E18EF1F7D714E2E64E0 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6C43FEBD18CE9598FA1A74938867514 /* KingfisherManager.swift */; }; - F4D52CB490769C890ECA0A2CE3CFEE55 /* DotLottieUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AE453074B44CE425E74E7005ECD4AE8 /* DotLottieUtils.swift */; }; - F4F179A948F1A7BA84BD8ED92E695A1C /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2AC64CAFEB6D49E57D7FAA016865BC3 /* Dematerialize.swift */; }; - F510058AE05060128BA765E991B787E2 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54B4A854479D2A862E4A10285D168D0F /* ImageTransition.swift */; }; - F5194E7C5178D14021699602C11C9B16 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 707AC05913DB1E5066C5D4A3117A8D94 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F56129C8AD3AF30E6318F2C788D30570 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 637A7313065D5EFD2C26D2F8C370607D /* Entry.swift */; }; - F565B4504B8C8973E4601219F9ADF461 /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23B24E42476EAEB449B42C368E04FEBE /* Debounce.swift */; }; - F5695140D67045D5A1716FA7724E7A3F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 29C1F94D4278A162A285C44FE14DB4F6 /* PrivacyInfo.xcprivacy */; }; - F57662901DFE32CF41A632EAE684DC81 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = CACB3BCA3DB641C9B591E625330BA336 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F5C0714450EF9ED4B85044A0C6642F89 /* RxCollectionViewSectionedReloadDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71D2F825E8CB5F153CB1129FD6C30A14 /* RxCollectionViewSectionedReloadDataSource.swift */; }; - F5E62DAD60E5C311FE1EC1333D44F194 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01B81C446E6D0311D5E6B347C63082D5 /* FormatIndicatedCacheSerializer.swift */; }; - F60F90EAF35CFF40DF1C33557965787D /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 647F3A21C303D1F7A42AF9434D203869 /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F652E53724373209F47D3B4A7D2A6556 /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22B0FE7857A3947DF75F30B19BA05CBD /* SynchronizedDisposeType.swift */; }; - F66042CD85DF9049060403EF0627FEC6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; + E713EB139B0B6B2F9BB463A2E13B583F /* IQKeyboardInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BB38AD055FDA8B028F1CFCB6AC51C95 /* IQKeyboardInfo.swift */; }; + E774F03CFBB7FF4A59157E694D930A02 /* EllipseNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B8C00943FF7F8CFAD73B6BE0A6D3985 /* EllipseNode.swift */; }; + E7AD71845468E1609A0CAED1C60085D5 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0CD73578573AF5AD46B0F08EBEDF1A5 /* Accelerate.framework */; }; + E7D06F2DBFA16E219746D0E11E60A501 /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64C07CCD1BCB6C218B9CBFD402FD0BF6 /* KFOptionsSetter.swift */; }; + E7DC25B399D700EFCA1E2F1E9715AF1F /* Core+UIFont.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DC2D7AD3B62E3A2D0D88CB42FAE50CB /* Core+UIFont.swift */; }; + E8012394A10B6AC7DA2195984F9504E9 /* Defaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12936157E06A9BD2BBAC1822B010AE60 /* Defaults.swift */; }; + E82B4F97BB52300AF382AC4E2E2A3A1E /* FrameUnsubAck.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E4E9F77E3B93C448A645B6A373107EF /* FrameUnsubAck.swift */; }; + E84C30FA4A382D9C330E87FB32C009AE /* IQKeyboardAppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C068E1B38BFB93E75CB74A95D3FAC3A4 /* IQKeyboardAppearanceManager.swift */; }; + E86106435DADBB30165472A7953A739C /* BuiltIns.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ACCAE49580830784049EDF24569F21B /* BuiltIns.swift */; }; + E875CFFB88DBBA0D72C4B7FC7A4C100D /* ViewDifferentiatorProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22E6C6B2624EC3C4CEDDDE1149B64473 /* ViewDifferentiatorProviding.swift */; }; + E895F57BB625331252C6901B201B3192 /* UIViewConfiguringSwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 825816BFA5ED9EA8E09C4414305D084D /* UIViewConfiguringSwiftUIView.swift */; }; + E8C960787E7B8DE1A914786EC04E8917 /* PhotoCroppingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7111115F1C55B2A19B14616B49223065 /* PhotoCroppingConfiguration.swift */; }; + E9043D5B49AF869589B1850CF8795EBA /* EpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB591B97E8E5DE9272DB70B726C9919E /* EpoxyModeled.swift */; }; + E90C1EC062107478A1ED904273F0D170 /* YYImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C38CCEC48E7F25EFD8909A52CAA8602B /* YYImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E930A5612DC6D120BE040AD17C6D1BCD /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 586CAB7528D3A6B6645EDB5A9397E2FB /* MASViewAttribute.m */; }; + E9470E64737A023126AFD77E10DE3E41 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FB09B2B5E42E2CEDD4C919D77689C08 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E95FE85B929E24CD0B18BB521969C9B8 /* YBIBTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 13CA3F82CB4C95C5C30C09CEFF326F75 /* YBIBTopView.m */; }; + E98C3D7A8430639438912254DF730791 /* ColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = B50D229B975056B637CE2A13B0263B07 /* ColorExtension.swift */; }; + E9AEBBA488E8832DA6CBE9881DF9DE95 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4076244D29A019001FE69F99345FC805 /* ImageProcessor.swift */; }; + E9D8AE39CEE9529B164E3516235BEE4C /* UIControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 671AC6BBB7E983A9C3A434F31B12481D /* UIControl+Rx.swift */; }; + E9E2076097D04B8389FA7FB9FB975527 /* MathKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9668DF6256ACD7532AE815424C1276DB /* MathKit.swift */; }; + E9F1CF2BE311C33A9629B0EC6D019F3A /* OIMManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAB292AFEE428D9B577D74F07D5A0EF /* OIMManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E9F8F68A964586D21DD22030F1D85BF2 /* SwiftUIMeasurementContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F58B1158B39BF41DE17B2D193BD0E0F5 /* SwiftUIMeasurementContainer.swift */; }; + EA0EC730ECD108B415C89082EC38F80A /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = DAB300A21E292F64E0091E1CB70BE27E /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA4323194CD798F0B5146EFF75556E5C /* YBIBWebImageMediator.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7DEF12C876C557DDFF6CC3B95D863F /* YBIBWebImageMediator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EAAA0041F6A0DB1039D328B35FF5EA09 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 725BEA8CF189D4B0B923DC15BD501A1C /* SessionDelegate.swift */; }; + EAACC631D5814C48D008FBBD53E8D0DA /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E431C8A3F91F378151064C20F5B3FED /* Lock.swift */; }; + EAF7893AAEF99828D21EAC0593AC879B /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E006EB6628D9D7013460BEDD4583E8D /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EB61F13974AEAAE5ACB6CC669D8F6D2A /* UIView+Responders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84AF2338B277983050F3CAFD5B36E2D8 /* UIView+Responders.swift */; }; + EB742B4A25F7E5F707BBEDCD8546D01F /* SolidLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E09E8D0DDB0127275867B6DB66EAC96 /* SolidLayer.swift */; }; + EBB7D34FFA666C9BCF2FE1D049FB225B /* lottie-ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E4A78CC3124C5516228374A8AB619AB /* lottie-ios-dummy.m */; }; + EBC4FC6407FF65199FF804F8076DE315 /* OIMCustomElem.m in Sources */ = {isa = PBXBuildFile; fileRef = 58D60D2BC095F0CBD500F458C40B265D /* OIMCustomElem.m */; }; + EBF34312A1F64FE81987440230E5BC49 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAED09A3FF9F11B572D266C4C9AF76E7 /* IQKeyboardManager+Internal.swift */; }; + EC0833ABBB33BA7F6160B0BF17F11097 /* Pods-QuickLocation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B3FEC1DFBF7036B761FB944F2B9F817 /* Pods-QuickLocation-dummy.m */; }; + EC8693D888647A7076ED1322373E8C39 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + EC8E84A8FFADDCA562A8608D141D9027 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = C7AD74FA213A3FFDCA24D48ABA00E8F0 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC9B34262AED632D7EFB49804337648E /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 00627804BDA43380564B83E1DE3D49C2 /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ECB3F9C6F6386AF7AB07525F6151CF73 /* CropConfirmViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D5338B11E142296D30DC453C617E8F4 /* CropConfirmViewConfiguration.swift */; }; + ECBB9D041E2943036EFF0AD5B7E63B4C /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80618672C78CE395D2916A8BD993BDAE /* Response.swift */; }; + ECC5C2ADC2682F9171FEA22AF10DCE53 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A15C785772B2FB9827145D163C5E770 /* ConstraintRelation.swift */; }; + ECC6B16E1B855C98636470D0151AEB0B /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D5E0EC291F4571118276A49CD3A886D /* MultipartFormData.swift */; }; + ECFE5E33B83F4CB59ADF421AE0876459 /* KingfisherWebP-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 807E9A40B51599207F28141B41ACF379 /* KingfisherWebP-dummy.m */; }; + ED28820C4CB92D994FB43DF2E56B2720 /* DateTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A58F10CA935A050138ADEC85D511540 /* DateTransform.swift */; }; + ED3C727C9AAF04C05ADFF6ABAEFFEA8D /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FE80D4284F880557EC33949896271E /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + ED6162890A51E74E00C4D1D258D8E8DC /* ObjectMapper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B47605C4EF7FD85950E34EA826F013 /* ObjectMapper-dummy.m */; }; + ED83D98E4E3641FBF4262E1B02B459E7 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93AC70A2D46A8E4C52484F59DCF920FD /* ImageIO.framework */; }; + ED9DC266977F10C47FC18E466C231ADD /* SDCycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 335488488BA5012989636955BBCB8F05 /* SDCycleScrollView.m */; }; + EDB55972F32B55877DEB79D38082A844 /* DDLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 8929295E55D3A7956A8FBB2AF64C3CEA /* DDLog.m */; }; + EDBFC4DEE1C21470926DF2EF13131904 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AEA36BD7A79BEA1F5BD73E718BEE2E /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDD1F4A31BC9F0816F25B14E0B4B89B5 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E1B70895E7D4B191C6A7482FF45BC2E /* NetworkReachabilityManager.swift */; }; + EE0F999042684CCF35B4C33A38F954F2 /* SGPermissionPhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7204C6CC49121008516C4035FC5C9F /* SGPermissionPhoto.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EE1368EC3C3660565A82A9842E57124F /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 185DAF49A8E1175A987F04CE022957BE /* Box.swift */; }; + EE2E54869CCD4BBDE50899BFD5C9E204 /* GradientStroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2960647473749EA8AEED48FB2BE7C79A /* GradientStroke.swift */; }; + EE6463A560321E0751B1BC18C23E2567 /* NSTextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CFF889EB81CC40894452F644825AF71 /* NSTextField+Rx.swift */; }; + EE6E8FE636D2C02E3D2FC1E8555B4612 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = B9825E98E044B068EC2375D6E98CF2F9 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EE802C27C64F90E925967D78FF074AE4 /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E2DC49BDFE9EC35541E7552286CEF5E /* AsyncSubject.swift */; }; + EED016DE8173CD38CC01D88CD2628984 /* NSString+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 0531C9A5E841EDBCD66B6F621E48F634 /* NSString+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EEFDF1A3CEFCFA7C742DD8C5FE7B1408 /* SGWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = A91A77B1FDA08F75874435E05D67FD40 /* SGWeakProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EF2A6FD79AD6DCAE8D9C7A85DE3C9395 /* SolidLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60FB2512EBA67C9E19A06A26644E2821 /* SolidLayerModel.swift */; }; + EF7B5F7D016F12532A3256D820AC1F34 /* Moya-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94057504769A3A6E724B5B40972FC141 /* Moya-dummy.m */; }; + EFD5C4FC5F7B416762B66D92200A2306 /* PhotoError.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6FCB776FDC1A9889154E2C982013701 /* PhotoError.swift */; }; + EFE0C664AF402C2E9E6F0848F6ECA24A /* TransformType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 087AC616BCEA82E356A02B7EFD0EF5EF /* TransformType.swift */; }; + F02357F709F4F3A9BB4E1E6C8E88A3B4 /* OpacityAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1196353082FE78E3F0236610EBD8703E /* OpacityAnimation.swift */; }; + F02729146154EF6B9187305230290CD4 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 651C41DEE47E984B8359AB6405881E02 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F0411B25B1DBAF9E1D5F5442D6A98F20 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DE36367B42A69FD745A52FC145EF3CE /* UIImage+GIF.m */; }; + F048EF890D150B5108DD1A531D2D9BCE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + F04EDB481BB918A84D0C80C837A9A7BC /* TextDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18C57118977326E3AB3594BF47E4D50F /* TextDocument.swift */; }; + F05192CEB06CD70D1D3E8ED9E4B7C15F /* CocoaMQTT.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCE8FAF2BD0D9BBF46A9D702C7C1CC5 /* CocoaMQTT.swift */; }; + F073660D3D3650AB86BAE8C65ACC1849 /* AlbumViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00D38F293A306ED40E9E30F10E5A2943 /* AlbumViewController.swift */; }; + F0796F08298C7D26732760C0D6F839DF /* SectionedViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C12787613C350ACAA6E34E28788B71EF /* SectionedViewDataSourceType.swift */; }; + F0A7FE48B84BEF9C4CA3A1C6CC832197 /* LottieButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEE5C71E2AA2ED3E55F45F94737D8BF6 /* LottieButton.swift */; }; + F0B0B551A13101A1F5906D38E5863E8A /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4A6881CF86D0AD130F065B392BA79E6 /* Resource.swift */; }; + F0C52CA4E23A1BDEC554BD572DDD1100 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + F1108DE1AB588C74E8AFAABC92E9B90C /* YBImageBrowserVideo.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6F49859D2EBDF3619C22E8A959FF01BD /* YBImageBrowserVideo.bundle */; }; + F1877221CDD8FC3A3015CE7DC3A5D6F0 /* Array+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D6583A9D6FFB57A60DDCC8A22078841 /* Array+Extensions.swift */; }; + F1A18E7F3EF61BD0A0921B810FAEDAF3 /* Picker+UIImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3712FB2901390F9631B6F18D49E764B1 /* Picker+UIImageView.swift */; }; + F1C6A9649B5FDCB480FD7D7774FFF8B3 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = D094492C3C9C70F3767ABB9EF6D63919 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F1ED7598E0D75E704B52BFCF77193A27 /* MGCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F10350695B3DDE24FB29DF4C930600 /* MGCDAsyncSocket.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F24E4DA6659061237424A876461039FC /* YBIBSheetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F6C0AAEA5D49B14D1E594B55985BB8 /* YBIBSheetView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2BCFFCCFDC0882E51E5CD3B1FC700C6 /* RxRelay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A27A11E0906C1DEC75B5B18E610C9434 /* RxRelay-dummy.m */; }; + F2CAB82F6922D2E31AE4AB1EA47D78D4 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = A826013E455DCB77EA899538B69425BF /* cpu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2E5A6404AB84C1417F31C076A0EA8F6 /* ConcurrentAtomic.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4A3C63C58D795A774EE240C747B81E6 /* ConcurrentAtomic.swift */; }; + F2FCD6AEA1E8BEE9FA3150109F3FD2CB /* AlbumViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB40994AE1C02F08D2B55602420DAB57 /* AlbumViewCell.swift */; }; + F322F2E9248769F09DC4FBB29ACCE614 /* SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66E59E81DC8FF48EDF585F8556EBF878 /* SharedSequence.swift */; }; + F32563E5603EC6D414A5E77F4271074E /* IQKeyboardNotification-IQKeyboardNotification in Resources */ = {isa = PBXBuildFile; fileRef = 120BD4C670EF00F4D5A40AA4B863A7AE /* IQKeyboardNotification-IQKeyboardNotification */; }; + F325BEE3115C5BE3907B073DDC9F5852 /* OIMGroupMemberInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 957C981964A435BDF75AB5CB24C17F0B /* OIMGroupMemberInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3263D294D688533EB974E37C61F1E24 /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 637305295B526B7C505220CE2A7893E8 /* MJExtensionConst.m */; }; + F3580439D38601B6DECF01C92685C9D0 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 242D474AEFBC6106539C37EB2710B154 /* Merge.swift */; }; + F37BF721CA0B9907AE50BE06D750C31A /* DDFileLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A8E8C8881849C416468CDD1543F786A /* DDFileLogger.m */; }; + F38ECDACE09F8DEBBDFDCB9897795E54 /* YBIBImageLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A6B3A99BDAED7755D8CFCE9C0F42B18 /* YBIBImageLayout.m */; }; + F39AB662CDC4C299D4B1737519E106C7 /* FramePubAck.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0E50899C0C21D11C1827375725D6F78 /* FramePubAck.swift */; }; + F3A6D79E6A1E8864E47940113881901C /* YBIBOrientationReceiveProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C94D912ED11FB929D163DE90CA7CBF58 /* YBIBOrientationReceiveProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3AECEF6D3BB919B3E7392942E1BC58B /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B32687B49E8C118D10964F8D6250E1 /* MJRefreshBackFooter.m */; }; + F3B50A140EA5062ADD0D17F76B4FC149 /* YBIBCopywriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 469BBA85B3B01F0A015C20C5026AC171 /* YBIBCopywriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3D9CAED623B54CC85DD99EB7B18C4B3 /* URLRequest+Encoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 392F545C5B87288F9B4FD5543E7ED91D /* URLRequest+Encoding.swift */; }; + F446E12C0CBAA5E3B9AB03F1AD36EA38 /* OIMManager+User.h in Headers */ = {isa = PBXBuildFile; fileRef = BF86B2932209BF72B21D027CCB3D5BE2 /* OIMManager+User.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F447BD855B81CC593E8582E6562D9442 /* YBIBGetBaseInfoProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F146679E95977A174286ABF268952FF7 /* YBIBGetBaseInfoProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F45734F7E1F36E0D03240B925550CBBF /* RectangleAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E3BA316C2E40426CD457CC367902F1F /* RectangleAnimation.swift */; }; + F45CC0AF8CE901E60F1F0EAB98BFF9EC /* YBImageBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = B772F4D6E7B2CD1919ABFF268D1694BE /* YBImageBrowser.m */; }; + F4603A718448B8BED2AAE202277C275D /* sharpyuv.c in Sources */ = {isa = PBXBuildFile; fileRef = AE5E8976ED0958D0E88CF4130425A677 /* sharpyuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F469D3446C362E18EF1F7D714E2E64E0 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E92D4FF772347A353FB627EFF684DD /* KingfisherManager.swift */; }; + F4A703B0312FA076FEFFA31444B8FEE6 /* FrameSubAck.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A29D87B1DD0597A8C888EE5B31EB730 /* FrameSubAck.swift */; }; + F4D52CB490769C890ECA0A2CE3CFEE55 /* DotLottieUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5D91DB00869FD3D156C8E656E0146BE /* DotLottieUtils.swift */; }; + F510058AE05060128BA765E991B787E2 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56C4621AA9773E450944A7A00C7F17A1 /* ImageTransition.swift */; }; + F56129C8AD3AF30E6318F2C788D30570 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50A7A193651AB0CFCF223595CA19AA95 /* Entry.swift */; }; + F5BCEAF07494B8EE4407A4048C70170B /* CocoaMQTTReader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 010FD8BA73DAC958194818B68AFCF699 /* CocoaMQTTReader.swift */; }; + F5C0714450EF9ED4B85044A0C6642F89 /* RxCollectionViewSectionedReloadDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56C132AB3EA4F392D2A8DD774E65EFEE /* RxCollectionViewSectionedReloadDataSource.swift */; }; + F5E62DAD60E5C311FE1EC1333D44F194 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D21C7C434B3F4BDFF04AA060D589C0E /* FormatIndicatedCacheSerializer.swift */; }; + F5EF1E2426930587F2F1AD8D2B7B1A25 /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A1F2D48A891A026C113A34ED4483E3 /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F60F90EAF35CFF40DF1C33557965787D /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFFBA599610B03A82906A883745C95A /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F66042CD85DF9049060403EF0627FEC6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; F66F8B4111FD65028BB94F7D1EB32589 /* MarqueeLabel-MarqueeLabel in Resources */ = {isa = PBXBuildFile; fileRef = FD694DB3E09A81036691F823E3211D44 /* MarqueeLabel-MarqueeLabel */; }; - F678BF8CC9D07C54964AEE5CE05DD8F9 /* RxTextStorageDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = A28212BF67021DCC567895F90F42F3B3 /* RxTextStorageDelegateProxy.swift */; }; - F6A36E290DE040FDBFEC708F4C06237F /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0484F6BC5E5083AA0A3493E6A7E299 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Private, ); }; }; - F6ABE1AC5C79A71A8073883EE9E176C9 /* CGFloatExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD53BA557DF4BC4953A4AB9EC6A4FF57 /* CGFloatExtensions.swift */; }; - F6D1C960368EB1E067ABD0BFF707FC56 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6261B6AFF7CE8B3C5FCA2DA3C060B8CA /* MASConstraintMaker.m */; }; - F6DF025C22FF018660D118246782C306 /* Infallible+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B96C38EC76CED40A0CD2DDF5B1DB12A /* Infallible+Debug.swift */; }; - F6E6D2D449ACFC271BDC91C923ED7FBC /* BezierPathRoundExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2001A2C582FBBA94AF91ADD4B9931C5 /* BezierPathRoundExtension.swift */; }; - F6EC957FA3B14E78A2DFB9ABA93D820F /* pausableBuffered.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09BF0462A5A73BDAD46E8893D422BE0F /* pausableBuffered.swift */; }; - F6F33E8B268F3D41075374D95B8088DC /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0B615FCCC02CD636E8D81ADC0F6C65A /* UILayoutSupport+Extensions.swift */; }; - F73E48637EB56E6E57A7CBC9B997FBA6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - F7A8FE8CEE61F44B4CDFE0BE245642B6 /* YBIBImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5453B61652D70959B356E49D87F13FA2 /* YBIBImageCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7E50993F8A838F860941A1B9DA6BEC0 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B13292BD10906E86B88551C19BEBC246 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7ED5E8C81EAD309CD59C56C8D880D70 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 3702CCA67B68183FAC858084EE553452 /* PrivacyInfo.xcprivacy */; }; - F819B1541A0195B89BEBAB3CCC51DCC6 /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A758E01A5342DD85FC47B3EE4BABF79 /* RetryStrategy.swift */; }; - F8307D435C630DB434B2E8A74111B948 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3439F956E2BEC0F71B3AC96FAE151B38 /* DispatchQueue+Extensions.swift */; }; - F86242472CE53B6C0808307C77A2CEC9 /* HXPHPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9949D2F039C26335E06B4DEDB869C47F /* HXPHPicker.swift */; }; - F8C3D698F829A6F10872C99EB6ADE46B /* YYImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 816BB0C72A261BD1EB7BD6894E8AA38F /* YYImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F8C9B997F8DEA590BA10FE3C3A3167F5 /* YBImageBrowserDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E4510CDCA226DCE0E5A193FC8910CA58 /* YBImageBrowserDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F8E8E69B9793E023EE993E71643F6071 /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 748290F58F89C4842B47E1474CAA8B3D /* ImmediateSchedulerType.swift */; }; - F8E9FB240CED709C4C4EB667E788FF6B /* NSObject+Rx+RawRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF9583AFB17055B420C08DE15E843EE4 /* NSObject+Rx+RawRepresentable.swift */; }; - F94434836BDCB67E50B82B9C0650D230 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76B335F9C1074A16DC6C649D6F834E5F /* SwitchIfEmpty.swift */; }; - F972DCBE61D6C3B274C555F2D983F67B /* YBIBImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C67847AA0011E797287DE347F30612 /* YBIBImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F979D099A0090D58B7946B47E0D52E91 /* YBIBTopView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB390B0E40E89FDDE554F21ECB7CCF1 /* YBIBTopView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F9C42D93CBEBD19B0D1707ED6D81BF05 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = D6710808298E8357BEF9DEDA21E199CF /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F9EBA65892D78A31C068D727D84BCB88 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F2A1EB79C2BE2EA918A66FEF777D04D /* ConstraintConfig.swift */; }; - F9EC9C0879D29B10D5532E7DC268B304 /* PhotoPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01CFD68B658BAD15EF824BA4028CA1A2 /* PhotoPickerViewController.swift */; }; - FA190258BD504A02FD26844DF48C5FAF /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5267B7BCFE0BDC27381D9A3718337CFC /* Result.swift */; }; - FA466A93791A0CD6AEC3AE1E9E570FD6 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = F3B96086AC8BC0098AE6EDCDE92ED2BD /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA6B361DA50A4CB2863B7262DDF2DE89 /* URLTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBD1A131E0B3DB38642A84F2E5057152 /* URLTransform.swift */; }; - FA8CA71BBFEF04905D02013578E02DE5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */; }; - FA923FB0492E22E87E728F69AA94188F /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65CFE3481B5AC8650B206B3A373CA75D /* ImageIO.framework */; }; - FAB169480639A185A5D86CA50D382BA4 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A47D8BBE8F670AEE1597E694E9299C /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAB703884AC7E3E527AB50FB9001276B /* WebSocketRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = FACD7E533AA338FFEC18D2833425475F /* WebSocketRequest.swift */; }; - FAF20FAA54FDB2A58583DB576B034301 /* PreviewViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13D413FA74ACD184F48EEECDAF835AF /* PreviewViewConfiguration.swift */; }; - FB0003B2A4B996A99C9116360F2BEE27 /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAAF2B1865A817D3B34BE0FED63702E8 /* ReplaySubject.swift */; }; - FB0B119AB62A4D90C16825F73CD53419 /* SGScanCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EFEC4792E6AE843B581D17FC92072A0 /* SGScanCode.m */; }; - FB3BE9AF5DDC6474C6BAB9234C0DB9B0 /* YBIBImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = D20A56560F315942F27C111F2B851792 /* YBIBImageScrollView.m */; }; - FB986DAF20B451EED7FE77BD26E08DF4 /* distinct.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A695E041567399C0A6E1B8B2BB5790E /* distinct.swift */; }; - FBA9AB5511104BC83BBAB557D47B8B2D /* GradientStrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51F373DF5148C21C78733AFACF8E29F0 /* GradientStrokeRenderer.swift */; }; - FBBDF31BD5CA23C47E4C18BCA47A4194 /* OIMCustomElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 39FED66228C9465702293375314C454F /* OIMCustomElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FC09C6960BE94A9DC9C2252058104D13 /* PhotoEditorViewController+Export.swift in Sources */ = {isa = PBXBuildFile; fileRef = A66D9F8A28B2D8B918FF71CBEC6E5BC5 /* PhotoEditorViewController+Export.swift */; }; - FC2E74989B954AF9D2AAE1ABC03156D6 /* LayerStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 882FA463C133D41CD8499FE6FB7A999F /* LayerStyle.swift */; }; - FC644FFD4CEFABD31D114D385B3FDD19 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = FE4FB396B3AD5E4CCCF7D904075E382A /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FCA8946A40BE52876F991CF772C26AB3 /* YBIBLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 568B09274F880366B93DA437F7833148 /* YBIBLoadingView.m */; }; - FCDF1D9CD5C6902938D25B1E6FFF761C /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E9018049D3891D6B8326E4C1A96B726 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FD08990C503D242E5A70B010B704C755 /* KingfisherManager+LivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16FC8EC2290249207E00023113CA596 /* KingfisherManager+LivePhoto.swift */; }; - FD31D6875DC774E1C134CD580735FD64 /* UIDatePicker+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6ADFC7217C94A6A33AADBE2C889E258A /* UIDatePicker+Rx.swift */; }; - FD3904804913DEE21108083EEF8CE4EC /* AnyNodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5BE10E514BD8C3BBDC238C222A00125 /* AnyNodeProperty.swift */; }; - FD552610731EB624F8A47C3ACA927A15 /* UIView+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C7772A4DD34FF5F3A20C6153B961319 /* UIView+Resign.swift */; }; - FD6A4D15488DF30A0CEA0373B9DE595A /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FBB552DBF10EEAB3DC15F5C4727EF3D /* Switch.swift */; }; - FD71872BD2972EF642FFF461F16B2BBD /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3934EA26369C7ED8AC99BDB4DF11A6E2 /* SDWebImageIndicator.m */; }; - FDABBA4C9C58FB24BE28FFE81C55658A /* Collection+Diff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EC2049C823875676B5A5A9A7CF7CCCA /* Collection+Diff.swift */; }; - FE0D3260BF27D388B0200F1AC8151619 /* IQKeyboardCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8F1BE5271921E4112CB6A96BB1E636 /* IQKeyboardCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FE104235E87599AA0A971D024286E855 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 32FEFE432FBEFC662E16C8BDE4DA9817 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FE106B8B51187E9B8A8E6A258749A21F /* RxCollectionViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E030B9BDBBA82F74D1F392D96C6B1A31 /* RxCollectionViewReactiveArrayDataSource.swift */; }; - FE26082B37D32FCCC7AF3B02DF050AE2 /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76F5FB9F41D1AC5CB74A20A5F1BCAB11 /* SingleAsync.swift */; }; - FE49F3F733B669138D1CF38BCD45AD15 /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47F4417E91DBF2662F9F10B3EE2F3C18 /* AsyncLock.swift */; }; - FE4F12DF6E4DDA7B5681A48C6F86FB97 /* RxTableViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C78AE96DEEB3AE3D220D176418FF4438 /* RxTableViewDataSourceProxy.swift */; }; - FE65FB5982AE1A8238A0AF5B96EB844E /* VideoEditorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FC8B0D7C9DF7F1E28698FF3993A1672 /* VideoEditorViewController.swift */; }; - FE9BA3316B14AC042881E3601745E44A /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4298E753B82537A2B8C44313CCC2E168 /* GIFAnimatedImage.swift */; }; - FEA10484BCDCE23F63CDABE169AC7398 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = A34655F0A811AB3A87F04E2474CB58B5 /* PrivacyInfo.xcprivacy */; }; - FEC6D41D15BA321D44135C433579B85F /* DictionaryTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78E82B74D1377FBBEC130E8053016A10 /* DictionaryTransform.swift */; }; - FED25CF5DD8551A499C04624ABF5E7F7 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8F2242BE854DD9C19EF4B71CA79AE6F2 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FEE883575278D5BE8F185437AB5DB3BB /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E168DF5E47CB8A301BCB3993A623844 /* MJRefreshGifHeader.m */; }; - FF020D50D3B0742EFED9C172269D9D83 /* IQKeyboardAppearanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B48EB763FE80E2BD8D9862A3C005F9FC /* IQKeyboardAppearanceConfiguration.swift */; }; - FF13DFF525578FD22F7F4A077888317D /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 576B79FED5EC1392CFDE58BFFB2CC4A0 /* BinaryDisposable.swift */; }; - FF1AC5DF8F714F01BBB4D4375D17B1DC /* AssetManager+Authorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51F0C1F7C00691BEF0CFA4F31C54FF3A /* AssetManager+Authorization.swift */; }; - FF2F4C8A0736554E74D67A727B7D7671 /* RxRelay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 95F037BC936089687A0571DF3857C90B /* RxRelay-dummy.m */; }; - FF46177786D9397F4E4E65F116F734FF /* UITextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30EC231840F6732A56ACD926EEC9A53D /* UITextField+Rx.swift */; }; - FFAE08E506C1E1F5FDFE534380A206AE /* Core+Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B622AEF7B6E9C360D0C962D5A346AF5 /* Core+Data.swift */; }; - FFD327CC50C276F2151DE9D9A16FF2A8 /* AnyEpoxyModelProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35D0028F706E6F2DD1BBA09C9DD8E405 /* AnyEpoxyModelProperty.swift */; }; + F678BF8CC9D07C54964AEE5CE05DD8F9 /* RxTextStorageDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 224EE27EF8A4CB6DE2A2994B3B4BA865 /* RxTextStorageDelegateProxy.swift */; }; + F6841A1B6D6884FF2D41FFDBD7703ADF /* sharpyuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 74B3D2B854D0C4E61AE93E1D37D28752 /* sharpyuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F6ABE1AC5C79A71A8073883EE9E176C9 /* CGFloatExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44EA28130A47103E346AEA431BD8AB23 /* CGFloatExtensions.swift */; }; + F6D1C960368EB1E067ABD0BFF707FC56 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 913C06E86762583AA08FA9981CC07752 /* MASConstraintMaker.m */; }; + F6E6D2D449ACFC271BDC91C923ED7FBC /* BezierPathRoundExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9A58617E989FFAC2B9D2EB8ED1B25C4 /* BezierPathRoundExtension.swift */; }; + F6EC957FA3B14E78A2DFB9ABA93D820F /* pausableBuffered.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E68A3533F3C2D4D73D3AA397B395563 /* pausableBuffered.swift */; }; + F6F33E8B268F3D41075374D95B8088DC /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F087BB3235520C3C84B06484C182445 /* UILayoutSupport+Extensions.swift */; }; + F71350F6F7159EB8B0DF0ECD7F059A05 /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD55A47F1AAA88609AC883AD677F608 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F73E48637EB56E6E57A7CBC9B997FBA6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + F79A182CDB1C80A234555BE9A45C22E4 /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B63F73A0E96CFFC29D7CA1F042FF88 /* WithUnretained.swift */; }; + F7A8FE8CEE61F44B4CDFE0BE245642B6 /* YBIBImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE309F25629521A4C37547AB03DD967 /* YBIBImageCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F810AE3623A69FCCC158A5C1ACBF6439 /* IQKeyboardToolbarManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C39880C40AAAAD747B9A62379A5A895B /* IQKeyboardToolbarManager+Deprecated.swift */; }; + F819B1541A0195B89BEBAB3CCC51DCC6 /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0F45767D09215F572F8D80F01EB8628 /* RetryStrategy.swift */; }; + F829965604C3B309269C43945D01AE6F /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = C73C04647C0D259054E566EDEDB52C13 /* AtomicInt.swift */; }; + F86242472CE53B6C0808307C77A2CEC9 /* HXPHPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 228A5909B168591161C6BFFF967721A4 /* HXPHPicker.swift */; }; + F8C9B997F8DEA590BA10FE3C3A3167F5 /* YBImageBrowserDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D89F076C7EB0BF35FCEAEE0CADD189 /* YBImageBrowserDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F8DBD575BC5B5A87EEF5F7A4E79EC285 /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = BA028C6C6E1A7001499331E6B38C01F9 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F8E6EAF5CAD39A590A6080E2458B7B7B /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 01140C390F9C1A5A0B1FA345EDB25D8A /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8E9FB240CED709C4C4EB667E788FF6B /* NSObject+Rx+RawRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7675A584D15BA63139E519FD2CB2457A /* NSObject+Rx+RawRepresentable.swift */; }; + F972DCBE61D6C3B274C555F2D983F67B /* YBIBImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B2ED4E571D3FD0B525785E5C9317CE6D /* YBIBImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F979D099A0090D58B7946B47E0D52E91 /* YBIBTopView.h in Headers */ = {isa = PBXBuildFile; fileRef = 779B2359143D01352428D637B66ABB03 /* YBIBTopView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F9A4C2F20661D4648A77FE2017B331AC /* palette.c in Sources */ = {isa = PBXBuildFile; fileRef = 1005FE0354AFFB68DC5891504FCA9BCC /* palette.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F9AA73F3AE4A7D5CAC163509F5AE5363 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E8D0DAD81814DB92CFEE73A78339252 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F9CD0CE99E62359BD1197482B1B252AE /* sharpyuv_csp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC62A822F138AAB14F1F2BBD4FE0620 /* sharpyuv_csp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9EBA65892D78A31C068D727D84BCB88 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31F9C25C7025E7B07803B95DD09EB95F /* ConstraintConfig.swift */; }; + F9EC9C0879D29B10D5532E7DC268B304 /* PhotoPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF437331E3175752D0F2C1F3736BACA /* PhotoPickerViewController.swift */; }; + FA00D4B3C909624A6332E038A6DB41FF /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C53CB62B4F7435CB3C693234CE5505 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FA190258BD504A02FD26844DF48C5FAF /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = E69CF3409B5E7DD09C934B8760D26B18 /* Result.swift */; }; + FA6B361DA50A4CB2863B7262DDF2DE89 /* URLTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 732C3D046DA1DDAADB427A51CFA8D702 /* URLTransform.swift */; }; + FA8CA71BBFEF04905D02013578E02DE5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */; }; + FA912288DF25A87FEE76249BA2035A07 /* YYAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 72580C48B12D84C13CB91FB803B3250C /* YYAnimatedImageView.m */; }; + FAB703884AC7E3E527AB50FB9001276B /* WebSocketRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97D8DC7E7FCCA6B36A398A4130916FF5 /* WebSocketRequest.swift */; }; + FAF20FAA54FDB2A58583DB576B034301 /* PreviewViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AF7B1545843C9BBED27626503F185E9 /* PreviewViewConfiguration.swift */; }; + FAF3BC700D71378A541CE1492F3EC355 /* IQTextInputViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = B58670AC2A6C221479AB2BFF0856B066 /* IQTextInputViewNotification.swift */; }; + FB0B119AB62A4D90C16825F73CD53419 /* SGScanCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 35129EBA9B173E46DF2F6DFB335E986C /* SGScanCode.m */; }; + FB3BE9AF5DDC6474C6BAB9234C0DB9B0 /* YBIBImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 893433AAE0EC3F67963A11E6F861691E /* YBIBImageScrollView.m */; }; + FB4D9D000306DEEF1D458A163B5F2158 /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5965A14C526A41781295A6BBD345813C /* CurrentThreadScheduler.swift */; }; + FB986DAF20B451EED7FE77BD26E08DF4 /* distinct.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99239440EF284973039A0999DC626537 /* distinct.swift */; }; + FBA9AB5511104BC83BBAB557D47B8B2D /* GradientStrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0AC41EA6D004745BAE6C7B3339BADDD /* GradientStrokeRenderer.swift */; }; + FBBDF31BD5CA23C47E4C18BCA47A4194 /* OIMCustomElem.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A8A43AAF8C972D6B0CCEFB283A10B4 /* OIMCustomElem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC09C6960BE94A9DC9C2252058104D13 /* PhotoEditorViewController+Export.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16FDF7DD49FB5D341120E3EC5AC1D5C /* PhotoEditorViewController+Export.swift */; }; + FC2E74989B954AF9D2AAE1ABC03156D6 /* LayerStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE2ABF42C1496614D3DDD6544E992F73 /* LayerStyle.swift */; }; + FC9A8A198E8D0DC593197CD949B7B722 /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBD2DB39097CEEE8679B416972A73C59 /* SchedulerType.swift */; }; + FCA8946A40BE52876F991CF772C26AB3 /* YBIBLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 28BE9C4C4FD97745A47638677BEF26C1 /* YBIBLoadingView.m */; }; + FD08990C503D242E5A70B010B704C755 /* KingfisherManager+LivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = 503405F11788ADB88FD0ED81209159EE /* KingfisherManager+LivePhoto.swift */; }; + FD31D6875DC774E1C134CD580735FD64 /* UIDatePicker+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D813A5AF071FD0BD4182C8B22E365A01 /* UIDatePicker+Rx.swift */; }; + FD3904804913DEE21108083EEF8CE4EC /* AnyNodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F8D5B1A459FAE61EDF4337A132BB5AF /* AnyNodeProperty.swift */; }; + FD552610731EB624F8A47C3ACA927A15 /* UIView+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6B15A87F23CED5AFFB3908396D1AD38 /* UIView+Resign.swift */; }; + FDABBA4C9C58FB24BE28FFE81C55658A /* Collection+Diff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CF9B4F936F9017EE6FE6902E94AAAEC /* Collection+Diff.swift */; }; + FDD025445312AFB33EA31D1EADAEDBF1 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC43983EFD3D5D2F45DD8A897943511 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE0D3260BF27D388B0200F1AC8151619 /* IQKeyboardCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F33078ADCADC74D51595069A4B4F27 /* IQKeyboardCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE106B8B51187E9B8A8E6A258749A21F /* RxCollectionViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 410138B7DB73A37EA3B12FDE47EC6909 /* RxCollectionViewReactiveArrayDataSource.swift */; }; + FE410F461D895A1284A9BBB6A13A65AF /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */; }; + FE4F12DF6E4DDA7B5681A48C6F86FB97 /* RxTableViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBA1509DD9D34552546037937DF23074 /* RxTableViewDataSourceProxy.swift */; }; + FE65FB5982AE1A8238A0AF5B96EB844E /* VideoEditorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18A527F6E05456C08754EC86F74615F4 /* VideoEditorViewController.swift */; }; + FE9BA3316B14AC042881E3601745E44A /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E3E10F0E4E1EEB483B960CB8AB44788 /* GIFAnimatedImage.swift */; }; + FEBD6D063AA753708127F5CA20880175 /* IQKeyboardReturnManager-IQKeyboardReturnManager in Resources */ = {isa = PBXBuildFile; fileRef = 110BD425B6CAD6801539E2C6AB6E0662 /* IQKeyboardReturnManager-IQKeyboardReturnManager */; }; + FEC6D41D15BA321D44135C433579B85F /* DictionaryTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E36CFCF21F8FB81BAA8FBA2F261E949 /* DictionaryTransform.swift */; }; + FEE883575278D5BE8F185437AB5DB3BB /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 91B0431B844DD4BC6EA015F23F666DBB /* MJRefreshGifHeader.m */; }; + FF020D50D3B0742EFED9C172269D9D83 /* IQKeyboardAppearanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71A3AA46FA62EF3D23F05187F1EA1CD0 /* IQKeyboardAppearanceConfiguration.swift */; }; + FF1AC5DF8F714F01BBB4D4375D17B1DC /* AssetManager+Authorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FDCC95F21DE5E485AAE4A6AFC3ECDE3 /* AssetManager+Authorization.swift */; }; + FF46177786D9397F4E4E65F116F734FF /* UITextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45847A481163BB50EC86B3708DED15B7 /* UITextField+Rx.swift */; }; + FFAE08E506C1E1F5FDFE534380A206AE /* Core+Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B1594EBD0E078355AAC2E6368B21BDC /* Core+Data.swift */; }; + FFD327CC50C276F2151DE9D9A16FF2A8 /* AnyEpoxyModelProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAFFC72036DE0CBF86EEAC95FEBA863A /* AnyEpoxyModelProperty.swift */; }; + FFEDCD03350E9C1FE968B273493B1375 /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75F21B2AAF7305696C0A8091C93874D /* RetryWhen.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 01A6350127486356A1C2E85210A9D9F7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; - remoteInfo = Alamofire; - }; - 06463C8289753D95DDDF907052B88759 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; - remoteInfo = IQKeyboardNotification; - }; - 09F00EF127F628393D4A26B1A7AB21A7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 39082CE2CA8065D786A75F5C09CFF2C0; - remoteInfo = AMapFoundation; - }; - 0B8DB26A8EDC383CE89F82E2A73C1EA5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; - remoteInfo = IQKeyboardReturnManager; - }; - 137C56D61C9FFBF4B78C31122C39A264 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; - }; - 1C8EE194FACDF5C3033FD7F2B2AFE0E3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 997E783A70C18DC9BA830488608C03AA; - remoteInfo = GTCommonSDK; - }; - 1CB9B8C07A8A9891C031B68836854138 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EEE261386011CDF271BE289F73FF5959; - remoteInfo = "IQKeyboardCore-IQKeyboardCore"; - }; - 1D808FF63478B530FFE6E3EEFF043D66 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 976126A1CE06DC6E162563800E1BDF14; - remoteInfo = "Alamofire-Alamofire"; - }; - 1FF5B535B3940EB099FBFFE6BAC72168 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0028E46539689892CC926BB8D811EF54; - remoteInfo = OpenIMSDK; - }; - 21B48BBB7EABFF2A496C879EB5D4C009 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6968C202A297A606D5EACC3679AAA627; - remoteInfo = HXPHPicker; - }; - 22335D1F8C7B94C537A5259BA4C371FC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 212F79CE462FC723AF42979B57FBB8A6; - remoteInfo = Differentiator; - }; - 23490CF8E52973EEBB2545881DA768EF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C92E047D2B317BFB31393F449A9EA0D; - remoteInfo = "RxCocoa-RxCocoa_Privacy"; - }; - 244DDC304A1C3FE446ABB68C2F8E47AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; - remoteInfo = MJExtension; - }; - 251185EBB34BA6D4BE416746A7A9B737 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0B967D7F8561D42493EE289EC8D450D1; - remoteInfo = "lottie-ios"; - }; - 25E379AE25F5D44AF3A160CFBCEC6DE4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; - remoteInfo = Alamofire; - }; - 2736CAD34BEA107334B3081DDB656F20 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - 291AB26A08BE59A9CF84C48A9280A9D1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9828BBC09E9FB1238624113D7456E59E; - remoteInfo = "Kingfisher-Kingfisher"; - }; - 2990B8F4BC142DDF29DD421FC13B3B30 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B32AF3F43989CBA171BB1FB3957A4509; - remoteInfo = "MJExtension-MJExtension"; - }; - 2AC7556419A170F98BBE91C1B4CEDCB9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3AEB4A97CEAE5A782BA5E5D6A468A913; - remoteInfo = URLNavigator; - }; - 2CAEE310D3B97BAA4B4540B2F5BCD32E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A049F3164EBC335A7982A4E1FB3A5EAA; - remoteInfo = SwiftyUserDefaults; - }; - 2CB1EE1F7FF3714527E0172E800FE0AB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; - remoteInfo = MJRefresh; - }; - 2DE397E5C1AB94922E974FED0D5E7E32 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; - remoteInfo = IQTextInputViewNotification; - }; - 346A27623BAC9A07E38D677AA3C8EAB8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 39082CE2CA8065D786A75F5C09CFF2C0; - remoteInfo = AMapFoundation; - }; - 351468779D2EAAD8A4E07915599C7551 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; - remoteInfo = RxCocoa; - }; - 3828D56BFE94CBD1850681EFA642F14A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 3A542A89DBC278D6D53B97A0397FA913 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; - remoteInfo = IQTextInputViewNotification; - }; - 3B0B8661A87BC63E7130D76B921302DF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 401909D4FB2014BF539896BF0CCA48C2; - remoteInfo = RxDataSources; - }; - 4010404738D37E89EA60E90F78D27031 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - 4052A9D51559EEE02D2F445E659D02B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - 44977C8C515E8BC32C6EBEB2C8BD7D12 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0E87F100EFC3B44F5BB5AF12375D07F1; - remoteInfo = OpenIMSDKCore; - }; - 44F685DF3ECED9770EBF196548A52EFF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B26054DF1DEA11585A231AF6D1D80D5E; - remoteInfo = "MJRefresh-MJRefresh.Privacy"; - }; - 4D5B7CBCEA667224D25C228EAFC38883 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6038CE6006EFBE9D905454CF01909C42; - remoteInfo = SwiftDate; - }; - 4E799023B611D10F37D971171776FAF3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; - remoteInfo = IQKeyboardToolbar; - }; - 4F55F321DF9C2250018DD25606C55A69 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; - remoteInfo = IQKeyboardManagerSwift; - }; - 550F076493239FB30A4EE33B88AF9F5F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; - }; - 58A3D1F04069798EE10AA0BD302A0D43 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4847ACB1E2799345AA74D9E317048D58; - remoteInfo = "AlipaySDK-iOS"; - }; - 5AB7291B64E5815D31A12FF8566204DC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 677650A76A720691B88A6959EFED6418; - remoteInfo = "SwiftyJSON-SwiftyJSON"; - }; - 5AE3B621B1CA9B1AA9EF9401040C162D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E68E71E462C154107C49C379E539826E; - remoteInfo = "ObjectMapper-Privacy"; - }; - 5E8B6A6FEC9A5EACF8141B1EA858ACC8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 39082CE2CA8065D786A75F5C09CFF2C0; - remoteInfo = AMapFoundation; - }; - 5FEA73E15104EF1E4A1B9DD6C99111EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8A8DB685241263AFDF5E6B20FE67B93A; - remoteInfo = "SnapKit-SnapKit_Privacy"; - }; - 6095D2B81CA66FE208380E49962E701B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 17D542296AD0C26B1C5815268E5C6BF6; - remoteInfo = GYSDK; - }; - 617BD99068746066474E219AB7DCDDD2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; - remoteInfo = RxCocoa; - }; - 619CEF8B1A643617590B0E88D79290B1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 88810798DA63A2F6611B0970EA276DEC; - remoteInfo = "IQKeyboardReturnManager-IQKeyboardReturnManager"; - }; - 6417F0F16845441ED9CAAE8D86804FFA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; - remoteInfo = SnapKit; - }; - 65E50FFCCC371775D923800BABEFB3B2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7C5613175BBC4BF67E36DB4FBEBC01D0; - remoteInfo = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; - }; - 6698AE69906FE54347F76FE5A09F9744 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 212F79CE462FC723AF42979B57FBB8A6; - remoteInfo = Differentiator; - }; - 687188A6DD7DBEBCC96D7A5F07767DE7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 971676D1C9A11C105647D995975ACE4F; - remoteInfo = AMapLocation; - }; - 6A5E8AD821DE5186B7E4B0DB322E54FC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0E87F100EFC3B44F5BB5AF12375D07F1; - remoteInfo = OpenIMSDKCore; - }; - 6E073E598E3EA99076172DA844BD3E66 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; - remoteInfo = IQKeyboardToolbar; - }; - 758012FD9D7EB54361C1B62A5B44C08B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 997E783A70C18DC9BA830488608C03AA; - remoteInfo = GTCommonSDK; - }; - 7779A1506585323E855CF257360A560F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; - remoteInfo = IQKeyboardNotification; - }; - 7CA119DA3BAABAD24A6F78C73396D36D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F18C31A804695333763EEC303E265D7; - remoteInfo = "WechatOpenSDK-XCFramework"; - }; - 8234E433BA1E308467D0C0BB4CCD7092 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; - remoteInfo = IQTextView; - }; - 83502488CB49241E8DF30052D6327C6E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; - remoteInfo = IQKeyboardToolbarManager; - }; - 8421B4F40D1102DFCA7ABB75FA1D0379 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED7124602AA1B5C6A257912C7E8B793B; - remoteInfo = RxSwiftExt; - }; - 87FC6AABDB23D7FF2726CC40BAF15109 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; - remoteInfo = IQKeyboardReturnManager; - }; - 89B91581100671498BD94B302D6F17C9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8194323886ECAF7E912EFDAFC84017AA; - remoteInfo = ZXSDK; - }; - 89E0D584BA990913567091EC515D197E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 8E91AD5D12BB7EC4472712E9D734717E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 8F8EA086D17C871ECB9F011BB4399293 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 822E44240F2922DAB12018A6B649BD19; - remoteInfo = YYImage; - }; - 938DDA32C97451586FE0A98AD9C856EA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3AE57FC4CF27B0BC540B3112353377BF; - remoteInfo = "MBProgressHUD-MBProgressHUD"; - }; - 94827A004FD74C9C3120375525F6B18F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C23DB88E45B0ED14F0C8827BE9C46C95; - remoteInfo = MarqueeLabel; - }; - 957B3DDF554B4518F813C6CAC2B8A130 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2035A387A5D5D85BEF7F693731454A3D; - remoteInfo = SGQRCode; - }; - 9AB9C38E4DCCA37D29EC24EF2947CAE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8194323886ECAF7E912EFDAFC84017AA; - remoteInfo = ZXSDK; - }; - 9EA5F55EAE063424752D3D0C69BAE494 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - A59AD2460664BADA968DD6E7065D2D3F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BF2A15FEC3F3424BBC4B9AD5F86F2D54; - remoteInfo = "lottie-ios-LottiePrivacyInfo"; - }; - A68E61F850DBF2CE19F5C798AC2C4E9B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 276021C4482165D46E0CBBEFB822FE95; - remoteInfo = "CocoaLumberjack-CocoaLumberjackPrivacy"; - }; - A6E4A18D00B0A670BC012935EDC0AA0D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; - remoteInfo = RxRelay; - }; - A920C06099E87CF8D916443CD9A164EC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D118A6A04828FD3CDA8640CD2B6796D2; - remoteInfo = SwiftyJSON; - }; - AA24B487121696F2E622121056444F4D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11779BD43CF8155A53E2C00B1566A19F; - remoteInfo = "RxSwift-RxSwift_Privacy"; - }; - AD8A31902E3ABC2E470660E5AD02AA2B /* PBXContainerItemProxy */ = { + 005562AA15FFEA41AE71867F25E6C812 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B43A58FC22C898DE29F6E12FE9636507; remoteInfo = TagListView; }; - B4BDFA40DE5E6036BBECD2EB7B66B29E /* PBXContainerItemProxy */ = { + 011809F5F4008DF209C1D8504B7C00E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CBFB5A372F4DE9D4BC6B9ADA98B80BFE; - remoteInfo = "MarqueeLabel-MarqueeLabel"; + remoteGlobalIDString = C23DB88E45B0ED14F0C8827BE9C46C95; + remoteInfo = MarqueeLabel; }; - B705FB637F1BBFCB6579C23344956B53 /* PBXContainerItemProxy */ = { + 036E821D970EBBF9BDD56CF7C69E06B5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; + remoteInfo = IQKeyboardNotification; + }; + 0414BDF22C6CC276280BDBA72B08F65C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; remoteInfo = RxSwift; }; - B7B9C134FCD75F5BB59532E17B97C8CE /* PBXContainerItemProxy */ = { + 08CE2068C3A88451E5040A623F2EF8C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; + remoteGlobalIDString = 11779BD43CF8155A53E2C00B1566A19F; + remoteInfo = "RxSwift-RxSwift_Privacy"; }; - B81587444BF1FD0218E2208B3678FFB2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; - remoteInfo = IQKeyboardToolbarManager; - }; - BB06943732499A1F6F6BAAE1D30483CD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - BD8798429F2E1015908BBBE5513B1DEE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4502C7427440BEB17A50C0BF6E638A85; - remoteInfo = "IQTextInputViewNotification-IQTextInputViewNotification"; - }; - BDE639580A000A2BFE14DF3515BE586D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CBED833AAD6266F3AEFE9BE31C68E094; - remoteInfo = SDCycleScrollView; - }; - BEBCCE129C3FAE08885BCFD5BD9205E0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E95654B155D25890BE8E26081FCA8265; - remoteInfo = CocoaLumberjack; - }; - C4416B962E9529F40E5126CF117DFB3C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 17F9141D333DA1A7BE5937F227221070; - remoteInfo = Moya; - }; - CAEFA3ED1143385F67434B9DA8870286 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; - remoteInfo = RxRelay; - }; - CDCD2167117F43C93949FA68B3A394FB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; - remoteInfo = IQKeyboardToolbar; - }; - CE8BC8063D05ECAF125BF3FBADDD4219 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B97FC50FB8C4390DDCCA281E85E7AD84; - remoteInfo = YBImageBrowser; - }; - CE99528F856F7EFF6543E5AF17875326 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; - }; - D4FE30F91F5C24105C61589F44DF5C43 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 82B0A41D3031FF27D78E17B0A9A46FB0; - remoteInfo = MBProgressHUD; - }; - D51DDF55D7D77DC559217AD87DCCF030 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; - remoteInfo = IQTextInputViewNotification; - }; - DA23849F151292CAC144283C9731C6BC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 54F872FDE6669F86C58C8075211FE643; - remoteInfo = AMapSearch; - }; - DB6D8BDA071E9775836E8BBCAE676643 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3957A4F8F4B8823C2472883F7D067592; - remoteInfo = AMap3DMap; - }; - DDD515447CCA93F806AAAE776727CC46 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - E068344C6A7510CD60EE8C7E17238229 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; - remoteInfo = RxCocoa; - }; - E17026AEBA27086027457B5ADEDB753F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B8FF445A5162845FAB9EC00FC92B694; - remoteInfo = "IQKeyboardNotification-IQKeyboardNotification"; - }; - E2AEEDC1607FF9458AA1B4DB2E2A76EF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; - remoteInfo = MJExtension; - }; - E30502CDF95F0580DCCB4E0728339B4C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; - remoteInfo = IQTextView; - }; - E3612B3DD75B152847A2E4700FC7886B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D78006448081C29492BCBD9AE8ECC81; - remoteInfo = KingfisherWebP; - }; - E4DEA0D02B5FB226C50215DE5EEE890E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CF903DF43E111410ECA0C288D36FA21A; - remoteInfo = SwiftKeychainWrapper; - }; - E631D3C6283AF585E5A7E923F001EC85 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 162E649F50FEC62B61BDD87D1BD422B4; - remoteInfo = ObjectMapper; - }; - E68089470167F492A81316D2665D6A42 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 94CFBA7D633ECA58DF85C327B035E6A3; - remoteInfo = "SDWebImage-SDWebImage"; - }; - E9CC07909D25C012E9D227D1C083DA10 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E; - remoteInfo = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; - }; - EAB48EE6968E065C1D9DB63BA488C24C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; - remoteInfo = Masonry; - }; - EB7827ABAFB11B2C1C8ABA73D74FFDD6 /* PBXContainerItemProxy */ = { + 0A6EBF5BEBE66C578BD712891C566CDC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 39082CE2CA8065D786A75F5C09CFF2C0; remoteInfo = AMapFoundation; }; - EE474117261DF6BD7D27B58EF759E9F9 /* PBXContainerItemProxy */ = { + 0B078191623EB8D1BFC714D4938E6AA7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A6602BCAA6F4F932A586C41D0B7E019C; - remoteInfo = "IQTextView-IQTextView"; + remoteGlobalIDString = 88810798DA63A2F6611B0970EA276DEC; + remoteInfo = "IQKeyboardReturnManager-IQKeyboardReturnManager"; }; - F22C0B0D2654CE7D60475F4A0F317A4C /* PBXContainerItemProxy */ = { + 0E3A7827B06EC0665DD6957B0DAA7415 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89ADB0D61D0BE9648E9853F5F8BDA717; - remoteInfo = Popover; + remoteGlobalIDString = 39082CE2CA8065D786A75F5C09CFF2C0; + remoteInfo = AMapFoundation; }; - F55BBABB60E6185DE4DEF49F651C0513 /* PBXContainerItemProxy */ = { + 11D34C1D6EF7623D84CC8128C18D304B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 3957A4F8F4B8823C2472883F7D067592; + remoteInfo = AMap3DMap; }; - F733C729C72BE1DCD0D28268F2F49834 /* PBXContainerItemProxy */ = { + 130043C378BF97EED251A863945441F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 822E44240F2922DAB12018A6B649BD19; - remoteInfo = YYImage; + remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; + remoteInfo = Alamofire; }; - F90FA9F5EC9C9EDE48802C2296620F70 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B247F77A0CD5E19C8187A9BA1EB58C09; - remoteInfo = "IQKeyboardToolbar-IQKeyboardToolbar"; - }; - FBFD31B834AB5C365995BB83B4E10112 /* PBXContainerItemProxy */ = { + 15248462A6902916CD93734DD2D1B4D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; remoteInfo = IQKeyboardCore; }; - FE6ED4719C4114B1B47F408C5C504BE3 /* PBXContainerItemProxy */ = { + 1672C6BBECCECC637563353E01C11192 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B26054DF1DEA11585A231AF6D1D80D5E; + remoteInfo = "MJRefresh-MJRefresh.Privacy"; + }; + 1D943D61C4FC1EFCE5755ABD4F4D2B05 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9828BBC09E9FB1238624113D7456E59E; + remoteInfo = "Kingfisher-Kingfisher"; + }; + 1F0037CA940608843934DB210530C610 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + 21670DA1EB50FE0700045C6DEA84AB9D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 677650A76A720691B88A6959EFED6418; + remoteInfo = "SwiftyJSON-SwiftyJSON"; + }; + 21C92A000FA0417BEFCB4DCF5D5AD45C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; + remoteInfo = MJRefresh; + }; + 23D42DCB8C00CDFBB554522E6BD15F65 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 26CC8E64F4AD955ED447FD144ECF5694 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; + remoteInfo = IQKeyboardToolbarManager; + }; + 27D15A52F64802032F0130937948DD51 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 39101A2B1096DFB129FCDE5490875054; remoteInfo = "RxRelay-RxRelay_Privacy"; }; + 2DCE738315013DB5A0C9984AD87F34DC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; + remoteInfo = IQTextView; + }; + 30D675D8FB292BC97790B551F7391FFC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 94CFBA7D633ECA58DF85C327B035E6A3; + remoteInfo = "SDWebImage-SDWebImage"; + }; + 3515FA4C9101336553D8B459366C326A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B017CC75E2704C686AA0A2203247D9C7; + remoteInfo = MqttCocoaAsyncSocket; + }; + 361A745847E7D60EBF467B63CB36731F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BF2A15FEC3F3424BBC4B9AD5F86F2D54; + remoteInfo = "lottie-ios-LottiePrivacyInfo"; + }; + 3F5CC1B761456481613F5968A6E2F9B0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 401909D4FB2014BF539896BF0CCA48C2; + remoteInfo = RxDataSources; + }; + 42A5711AAE77808CC59250A7D42C86EF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; + remoteInfo = IQKeyboardCore; + }; + 4344B82D636C96D4013D67AEE644BA36 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 822E44240F2922DAB12018A6B649BD19; + remoteInfo = YYImage; + }; + 45B26FD291F5F9D8340966591898C70A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D118A6A04828FD3CDA8640CD2B6796D2; + remoteInfo = SwiftyJSON; + }; + 46247FCF2DAB5659B51A80E78B6C0ED6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E68E71E462C154107C49C379E539826E; + remoteInfo = "ObjectMapper-Privacy"; + }; + 48694D4FD0821ECF2A72A26E45A5707E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 162E649F50FEC62B61BDD87D1BD422B4; + remoteInfo = ObjectMapper; + }; + 496A278884CB9032040FEBB54F58C207 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 49A6EB9F227A89D488C8435C6E92C190 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EEE261386011CDF271BE289F73FF5959; + remoteInfo = "IQKeyboardCore-IQKeyboardCore"; + }; + 4CC59E2DAB42F874FD77E5D348407F1E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 54F872FDE6669F86C58C8075211FE643; + remoteInfo = AMapSearch; + }; + 53F50A050E96C7626FC86FF54C0E6588 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; + remoteInfo = RxCocoa; + }; + 56EDFF18E6A7EF62F9778F9D339BA6EF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0E87F100EFC3B44F5BB5AF12375D07F1; + remoteInfo = OpenIMSDKCore; + }; + 5BA101BE17462FBE5638E6027D59942A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3AEB4A97CEAE5A782BA5E5D6A468A913; + remoteInfo = URLNavigator; + }; + 5C18B6A1EEDBA0732591A28ECE5A889F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; + remoteInfo = Alamofire; + }; + 5CC296B0634082698430B8F8EF10B236 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E95654B155D25890BE8E26081FCA8265; + remoteInfo = CocoaLumberjack; + }; + 5F59C655DBC3973217A9541C1C6FA78F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 82B0A41D3031FF27D78E17B0A9A46FB0; + remoteInfo = MBProgressHUD; + }; + 61510A589B2AA984E10206B244AA35EC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 17F9141D333DA1A7BE5937F227221070; + remoteInfo = Moya; + }; + 65F950B2E8361CFF33A4B14607334F20 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + 661F360A55C36C733C8034D2EE462790 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; + remoteInfo = MJExtension; + }; + 6651E6377E743CA4FD3A4E95EFF1CD92 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B247F77A0CD5E19C8187A9BA1EB58C09; + remoteInfo = "IQKeyboardToolbar-IQKeyboardToolbar"; + }; + 68BF8CBF31EE5DFCFD3D38F3CCECF281 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; + remoteInfo = IQTextInputViewNotification; + }; + 6A522AD144F85728A937B841E4219A34 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6968C202A297A606D5EACC3679AAA627; + remoteInfo = HXPHPicker; + }; + 711580CB1E485FAD6858FE8BDFBCF41A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4847ACB1E2799345AA74D9E317048D58; + remoteInfo = "AlipaySDK-iOS"; + }; + 71DD00F116BAD0DFAC8EC511E3906D67 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B8FF445A5162845FAB9EC00FC92B694; + remoteInfo = "IQKeyboardNotification-IQKeyboardNotification"; + }; + 72793BEC4391CB8366125C3553B258DD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; + remoteInfo = IQKeyboardCore; + }; + 72C08720005281AE6206FAB73EFB2553 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C92E047D2B317BFB31393F449A9EA0D; + remoteInfo = "RxCocoa-RxCocoa_Privacy"; + }; + 738F3545E5329F8B74DF73017F82102E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; + remoteInfo = IQKeyboardCore; + }; + 73DCD6E414CE9A83C0943483E2B19CD7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 212F79CE462FC723AF42979B57FBB8A6; + remoteInfo = Differentiator; + }; + 75A41B01F44388B65DAFE9642A27098F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; + remoteInfo = IQKeyboardReturnManager; + }; + 7802C1334D1A4C1553F5AB6E79180E1B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 784AB6009C802DCDB077C8FDAE12A645 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8194323886ECAF7E912EFDAFC84017AA; + remoteInfo = ZXSDK; + }; + 7DA7C2D6F3BF93B0840403916210054F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E; + remoteInfo = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; + }; + 82061C8B1C74993546EF1E76F7EE7AAA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; + remoteInfo = Masonry; + }; + 82CF266E41767644FD6FDD6305E18060 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CF903DF43E111410ECA0C288D36FA21A; + remoteInfo = SwiftKeychainWrapper; + }; + 8537939584ADB402914C80BECBFCF361 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 39082CE2CA8065D786A75F5C09CFF2C0; + remoteInfo = AMapFoundation; + }; + 8875DBA31FC4A29EB1EBAF05D113AC5F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; + remoteInfo = IQTextView; + }; + 900A11A7156655DEE3677C298CD2C432 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; + remoteInfo = SnapKit; + }; + 9038E5B5FF55EF8D78069E4E04B077A6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0028E46539689892CC926BB8D811EF54; + remoteInfo = OpenIMSDK; + }; + 907A43C2D2CE2FF7D4D7A74C0B13DB98 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4EB168A830EFA6136FA93357D1F1511A; + remoteInfo = CocoaMQTT; + }; + 92A582F518E854FD733F266C5D4796E6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8A8DB685241263AFDF5E6B20FE67B93A; + remoteInfo = "SnapKit-SnapKit_Privacy"; + }; + 94CE7B4000DBC5A962E3F64FFC67AF62 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + 962A816AFE6552938E803DAC24B893E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; + }; + 9933D71F465BD1267CBE04881A644883 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8194323886ECAF7E912EFDAFC84017AA; + remoteInfo = ZXSDK; + }; + 9C23B6E671F3DDEF29CFD700ABB0A4F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; + remoteInfo = IQKeyboardReturnManager; + }; + 9DBD8D57BD934FE628357F1657ACBC0D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 39082CE2CA8065D786A75F5C09CFF2C0; + remoteInfo = AMapFoundation; + }; + 9E43213877E86A150CB3395AB1BD2520 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B32AF3F43989CBA171BB1FB3957A4509; + remoteInfo = "MJExtension-MJExtension"; + }; + A19C5EB2E87A2319EA469F7A6939880F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 17D542296AD0C26B1C5815268E5C6BF6; + remoteInfo = GYSDK; + }; + A5E788E6C131456A7332F4B7A799752D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 822E44240F2922DAB12018A6B649BD19; + remoteInfo = YYImage; + }; + A6527E49C34B922D5300F4DEA05B1C95 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + A835495F4170F147B9897D5BF2C7A8EC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A049F3164EBC335A7982A4E1FB3A5EAA; + remoteInfo = SwiftyUserDefaults; + }; + AA502341AA438B814AFF656BD10B937C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0E87F100EFC3B44F5BB5AF12375D07F1; + remoteInfo = OpenIMSDKCore; + }; + AAEAC1CB022C91946977932E2F36F554 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D78006448081C29492BCBD9AE8ECC81; + remoteInfo = KingfisherWebP; + }; + B0ACD0077EA75FA016730C75D87D54A7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 976126A1CE06DC6E162563800E1BDF14; + remoteInfo = "Alamofire-Alamofire"; + }; + B22045B680BC1B899817EED88D8D5A1D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + B87128D8A77E84948FCE5153887EC567 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CBED833AAD6266F3AEFE9BE31C68E094; + remoteInfo = SDCycleScrollView; + }; + B94D53E29BDC4FE85F14286CAC4E28A0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; + remoteInfo = IQKeyboardManagerSwift; + }; + B9C34D13AE158515EE54C897C01D3B2C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + BA14FB92C8EA947503B64896940026ED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B97FC50FB8C4390DDCCA281E85E7AD84; + remoteInfo = YBImageBrowser; + }; + BCC1D546C11697A4C2AAFDC6C624F200 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0B967D7F8561D42493EE289EC8D450D1; + remoteInfo = "lottie-ios"; + }; + BE315323C4C47FF428043111D60EAAD8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 971676D1C9A11C105647D995975ACE4F; + remoteInfo = AMapLocation; + }; + C008E60717A970F94F53D475F54BF551 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B017CC75E2704C686AA0A2203247D9C7; + remoteInfo = MqttCocoaAsyncSocket; + }; + C157198BB10755114C07BB7406C647DD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; + remoteInfo = IQKeyboardNotification; + }; + C47774166C67169A42A6BDE42E4F049B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2035A387A5D5D85BEF7F693731454A3D; + remoteInfo = SGQRCode; + }; + C4FF52F7A63CA146057AFEE8061A121E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 997E783A70C18DC9BA830488608C03AA; + remoteInfo = GTCommonSDK; + }; + C58769B388904CFBBFB74603F94C50D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; + remoteInfo = IQTextInputViewNotification; + }; + C6CC084AA4C491E404AEF31A9604EE5A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89ADB0D61D0BE9648E9853F5F8BDA717; + remoteInfo = Popover; + }; + CF1FD6D0A950736411D40E1771B30E1D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; + remoteInfo = IQKeyboardToolbar; + }; + D191F8298F89E8435A773EB0C46B6730 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; + remoteInfo = IQKeyboardToolbarManager; + }; + D4D375C3A48E507FEB7E84DDB2092278 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + D5FB8EBC028DC94ABD37F92E03BF65B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; + remoteInfo = IQTextInputViewNotification; + }; + D70CABEAD978481AC5C27E1BD3FB2251 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CBFB5A372F4DE9D4BC6B9ADA98B80BFE; + remoteInfo = "MarqueeLabel-MarqueeLabel"; + }; + D9CAB0682DC824983DD8C8336131DB73 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 276021C4482165D46E0CBBEFB822FE95; + remoteInfo = "CocoaLumberjack-CocoaLumberjackPrivacy"; + }; + DCD38EE22CEFFDC077E0BBA299A4D094 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + E0964E76E3BFDF3A8D89CD0F00020918 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7C5613175BBC4BF67E36DB4FBEBC01D0; + remoteInfo = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; + }; + E4D2BF6E5E676CBDFA10D95310C021CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; + remoteInfo = RxCocoa; + }; + E5D1EB384DCAB100A17AB2E792EA5EC1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F18C31A804695333763EEC303E265D7; + remoteInfo = "WechatOpenSDK-XCFramework"; + }; + E8AA5482A19C7D587D709CC72C114919 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A6602BCAA6F4F932A586C41D0B7E019C; + remoteInfo = "IQTextView-IQTextView"; + }; + E90ECBB4688323A3CEF17EA6815410D3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; + remoteInfo = MJExtension; + }; + EA60B9C6187F2AE83386DE333F9F4763 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; + remoteInfo = IQKeyboardToolbar; + }; + EACB696E9FAB7D18440A6DD836076FFD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 212F79CE462FC723AF42979B57FBB8A6; + remoteInfo = Differentiator; + }; + EC205F05694C8C333E9828545B2065F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED7124602AA1B5C6A257912C7E8B793B; + remoteInfo = RxSwiftExt; + }; + F10E34D9493224FFE4398C2892A264D0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; + remoteInfo = IQKeyboardToolbar; + }; + F3D1B8851F2A07DDC598C1CFC751EAFD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6038CE6006EFBE9D905454CF01909C42; + remoteInfo = SwiftDate; + }; + F56741E388B39D1A5A64905DF9B7D036 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; + remoteInfo = RxCocoa; + }; + F693C01CC808015A7A5BAD5468236061 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; + }; + F6973D2F8D6374A9876A0669AC83E21E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3AE57FC4CF27B0BC540B3112353377BF; + remoteInfo = "MBProgressHUD-MBProgressHUD"; + }; + FC1664C68B15803EBB10BBA3FAA914B8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 997E783A70C18DC9BA830488608C03AA; + remoteInfo = GTCommonSDK; + }; + FE7DB9C7D653C78FFFFC8152E5AD0095 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4502C7427440BEB17A50C0BF6E638A85; + remoteInfo = "IQTextInputViewNotification-IQTextInputViewNotification"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 001B292321BC5B049194157ACD963619 /* ReplayRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplayRelay.swift; path = RxRelay/ReplayRelay.swift; sourceTree = ""; }; - 003BC8561F8A2CDBE8792BA3D972D3B4 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = ""; }; - 005D4C8AF425EF161CADC4688A651EFA /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; - 0063BE2DFA2C0152F5DDEEF7CA4531B7 /* CALayer+setupLayerHierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+setupLayerHierarchy.swift"; path = "Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift"; sourceTree = ""; }; - 00666232685340897FBF612CDC76B348 /* Core+Dictionary.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+Dictionary.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+Dictionary.swift"; sourceTree = ""; }; - 006D228E2E6F8BAA07DB7CE17AB8A953 /* SharedSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Concurrency.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift"; sourceTree = ""; }; - 00A34944CB3A07DB54E4A187735E5EDB /* OIMManager+Login.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Login.h"; path = "OpenIMSDK/Interface/OIMManager+Login.h"; sourceTree = ""; }; - 00E1EE863C3A3C3630E7BBB6E807087B /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 00F55D2694BB24CBDD85533DCDB7FC2F /* UploadRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UploadRequest.swift; path = Source/Core/UploadRequest.swift; sourceTree = ""; }; - 01A81FDDCFBF4399353832963143DC0B /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; - 01AEFB1EB3A914C86593584A77C0FA77 /* RxCollectionViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift; sourceTree = ""; }; - 01B81C446E6D0311D5E6B347C63082D5 /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; - 01CFD68B658BAD15EF824BA4028CA1A2 /* PhotoPickerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerViewController.swift; path = Sources/HXPHPicker/Picker/Controller/PhotoPickerViewController.swift; sourceTree = ""; }; - 01D238240F648EA7EA5C6EBADC6F1FC9 /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = ""; }; - 01E5DBFAF8111481E00D7B8906879F31 /* UnitBezier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnitBezier.swift; path = Sources/Private/Utility/Primitives/UnitBezier.swift; sourceTree = ""; }; - 01F8EA59DEAAA738ECEF7D68FCD45C7E /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; - 020D6025AE9566485C60DFB72DEE5B18 /* GradientFillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift; sourceTree = ""; }; - 0211CECFDC73CE25407A46059C53DB42 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = ""; }; - 02295F2192B333D5143DEA4CAEEBEAEE /* DDFileLogger+Buffering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DDFileLogger+Buffering.h"; path = "Sources/CocoaLumberjack/include/CocoaLumberjack/DDFileLogger+Buffering.h"; sourceTree = ""; }; - 0233AD872EADB05DB729FC8EC5614314 /* AMapSearchAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchAPI.h; path = AMapSearchKit.framework/Headers/AMapSearchAPI.h; sourceTree = ""; }; - 02446533D9FB702A89B3DEA51B1A3BFE /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - 0264AC943656AA3FA9C6B88AC02C1E97 /* YBIBImageLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageLayout.m; path = YBImageBrowser/Image/YBIBImageLayout.m; sourceTree = ""; }; - 026F29BAA77629475C91162F66FF4839 /* DeniedAuthorizationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DeniedAuthorizationView.swift; path = Sources/HXPHPicker/Picker/View/DeniedAuthorizationView.swift; sourceTree = ""; }; - 02D106F8687416EA77319E7ADE562850 /* YBIBAnimatedTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBAnimatedTransition.h; path = YBImageBrowser/Base/YBIBAnimatedTransition.h; sourceTree = ""; }; - 02DBF5316B8E0D522ACE204CE91F2E5C /* HXPHPicker.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = HXPHPicker.bundle; path = Sources/HXPHPicker/Resources/HXPHPicker.bundle; sourceTree = ""; }; - 02F7F5006D4C83A6F5AEDE0548257A71 /* GYSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GYSDK.debug.xcconfig; sourceTree = ""; }; - 02FF9BD791E7E79B5F6D78F088939100 /* Archive+ZIP64.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+ZIP64.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+ZIP64.swift"; sourceTree = ""; }; - 030E7B5E65DD005483DE4FC112390EBA /* OIMCustomElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMCustomElem.m; path = OpenIMSDK/Model/OIMCustomElem.m; sourceTree = ""; }; - 035A29367C3694753943C9E78FE114DE /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 036352F214EB5A26251C99D81D7BF15C /* Date+Dispatch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Dispatch.swift"; path = "RxSwift/Date+Dispatch.swift"; sourceTree = ""; }; - 037D39577B12B91D443CB163F5B8C2BA /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; - 038D72D383929263E7180ACF0ED926FB /* TagListView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TagListView.release.xcconfig; sourceTree = ""; }; - 039025967C251ADD69ACE1553B51DDF0 /* OIMFriendApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMFriendApplication.h; path = OpenIMSDK/Model/OIMFriendApplication.h; sourceTree = ""; }; - 03AF9077A88CE3FDD85D74403482C1A5 /* mergeWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = mergeWith.swift; path = Source/RxSwift/mergeWith.swift; sourceTree = ""; }; - 03EBA45F8498DF53F666FD4E75823E8C /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = ""; }; - 0406D4904704EB518E43EE52B4F1D1AA /* DotLottieAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieAnimation.swift; path = Sources/Private/Model/DotLottie/DotLottieAnimation.swift; sourceTree = ""; }; - 04296A362C3407E0A85FD5DB9C3E1EDF /* palette.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = palette.h; path = src/utils/palette.h; sourceTree = ""; }; - 045476BD81F43A7E4D35CFDD204660D7 /* WebPSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebPSerializer.swift; path = Sources/WebPSerializer.swift; sourceTree = ""; }; - 045E796AEE22999EA4184E68E9B7F8E5 /* SGQRCodeLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGQRCodeLog.m; path = SGQRCode/SGQRCodeLog.m; sourceTree = ""; }; - 046756EDF821762DDB9FCB12B7D5EF28 /* DateFormatterTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateFormatterTransform.swift; path = Sources/DateFormatterTransform.swift; sourceTree = ""; }; - 04B7C5A25940963070651E91AD48A5B7 /* Differentiator-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Differentiator-Info.plist"; sourceTree = ""; }; - 04BB4A806B019AC1CFA3C776444FE07E /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 04D575F8A3ECAFDA90EBA0B26E34F657 /* IQTextView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-umbrella.h"; sourceTree = ""; }; - 04FC9167B623F82556D7A2A397717795 /* 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 = ""; }; - 050847A31B5BFFB8A95DC61D0BE1E3A8 /* Data+CompressionDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+CompressionDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+CompressionDeprecated.swift"; sourceTree = ""; }; - 054BFF3B2D649118B2DCBE549463B70B /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; - 059A00052A1FE8803E236797E5854769 /* RxTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTarget.swift; path = RxCocoa/Common/RxTarget.swift; sourceTree = ""; }; - 05B1D3E92EC969DE3979A664DD430938 /* ObservableConvertibleType+Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Infallible.swift"; path = "RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift"; sourceTree = ""; }; - 05CFBCB3BAF48A65126967EB66B83905 /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/Extensions/URLRequest+Alamofire.swift"; sourceTree = ""; }; - 05D4D13EF29C8F7DCE86020D32C8D588 /* ValidationType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValidationType.swift; path = Sources/Moya/ValidationType.swift; sourceTree = ""; }; - 05E906325386DD455125AD4ED4D148D2 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - 06030FFD43B3B128FC6ABE677BA4FE54 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Core/Notifications.swift; sourceTree = ""; }; - 060A177B76119368615F6C08CFBDC704 /* sharpyuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_sse2.c; path = sharpyuv/sharpyuv_sse2.c; sourceTree = ""; }; - 0654BFE0C715FB0CD2A72E89C361C633 /* MAHeatMapVectorGridOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlay.h; path = MAMapKit.framework/Headers/MAHeatMapVectorGridOverlay.h; sourceTree = ""; }; - 0654D9122788EE00CAED6C0FFEE73F77 /* IQTextInputViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewNotification.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewNotification.swift; sourceTree = ""; }; - 065D063BBA4E2E76DE8E4F0FC55DEC82 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 068B91926FB024A1E64377B345291684 /* MAOfflineItemNationWide.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemNationWide.h; path = MAMapKit.framework/Headers/MAOfflineItemNationWide.h; sourceTree = ""; }; - 06A671AD153C13287C7F5677F7728291 /* AlbumListConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumListConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/AlbumListConfiguration.swift; sourceTree = ""; }; - 06C10E4B12DDF191A13C6778B3161E65 /* AMapSearchObjV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchObjV1.h; path = AMapSearchKit.framework/Headers/AMapSearchObjV1.h; sourceTree = ""; }; - 06C6D818FF85158065EEB29C708DF89F /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - 06C9041561AE6E617D216D91DE531015 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; + 000906441E421AC44EFD2B17AF49ABEF /* MAPolygon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygon.h; path = MAMapKit.framework/Headers/MAPolygon.h; sourceTree = ""; }; + 001CAC5B0387F752F807373679700C1A /* Int+DateComponents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int+DateComponents.swift"; path = "Sources/SwiftDate/Foundation+Extras/Int+DateComponents.swift"; sourceTree = ""; }; + 00263D60A048A662D11503C81EB3E293 /* AMapFoundationConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationConst.h; path = AMapFoundationKit.framework/Headers/AMapFoundationConst.h; sourceTree = ""; }; + 004B8301B59E0532FC74ADD360B1B420 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = ""; }; + 00627804BDA43380564B83E1DE3D49C2 /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = ""; }; + 00BB87520D0D647F6D66C9FD25D56504 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; + 00CAC1B2D31769B3178F778D87E68816 /* OIMLocationElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMLocationElem.m; path = OpenIMSDK/Model/OIMLocationElem.m; sourceTree = ""; }; + 00D38F293A306ED40E9E30F10E5A2943 /* AlbumViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumViewController.swift; path = Sources/HXPHPicker/Picker/Controller/AlbumViewController.swift; sourceTree = ""; }; + 00D5B305DEE1ED75EE8C4354CC33DDCA /* mapTo+RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "mapTo+RxCocoa.swift"; path = "Source/RxCocoa/mapTo+RxCocoa.swift"; sourceTree = ""; }; + 010FD8BA73DAC958194818B68AFCF699 /* CocoaMQTTReader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTReader.swift; path = Source/CocoaMQTTReader.swift; sourceTree = ""; }; + 01140C390F9C1A5A0B1FA345EDB25D8A /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; + 011AFAA206FF4A0E965B6A9437F4A8E6 /* URLConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLConvertible.swift; path = Sources/URLMatcher/URLConvertible.swift; sourceTree = ""; }; + 011E89E515BB464178D2AD0A6CBDC760 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; + 015B5597E8B9F59CF0D5FAE133C17DEF /* EditorToolOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorToolOptions.swift; path = Sources/HXPHPicker/Editor/Model/EditorToolOptions.swift; sourceTree = ""; }; + 016496ABA78D6144AB7AD700001BE86A /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = ""; }; + 018A85E94FE9935E7AFCB8B153633334 /* MqttCocoaAsyncSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MqttCocoaAsyncSocket.release.xcconfig; sourceTree = ""; }; + 01A603880B3B6DF6C5D80FA552A3A479 /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; + 01E2CDB0E2DB23B7E2FDD6F56D617292 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; + 020B0D8611C73B031357E9E91365C77E /* OIMGroupMemberInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMGroupMemberInfo.m; path = OpenIMSDK/Model/OIMGroupMemberInfo.m; sourceTree = ""; }; + 02255245C8526288007AF001BD408955 /* WechatOpenSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = WechatOpenSDK.xcframework; sourceTree = ""; }; + 02840ACD5872409C5A15AF32A909BEC0 /* Core+UIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIView.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIView.swift"; sourceTree = ""; }; + 0296D5D6EFA25ABAAAA68D3CD8738A76 /* Archive+BackingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+BackingConfiguration.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+BackingConfiguration.swift"; sourceTree = ""; }; + 02A8A43AAF8C972D6B0CCEFB283A10B4 /* OIMCustomElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMCustomElem.h; path = OpenIMSDK/Model/OIMCustomElem.h; sourceTree = ""; }; + 02B1232ED02FD0082124D9CDF6969512 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; + 02D4D5D1D01BF0456AD4F21C830F01BD /* OIMSimpleRequstInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSimpleRequstInfo.h; path = OpenIMSDK/Model/OIMSimpleRequstInfo.h; sourceTree = ""; }; + 02E757561295961F2661E2AEDADB230A /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; + 034243C340888689E6CC333E4A5514C8 /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = ""; }; + 0371D4CC57FE2AD694BD3124D76F3700 /* YBIBToolViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBToolViewHandler.h; path = YBImageBrowser/ToolView/YBIBToolViewHandler.h; sourceTree = ""; }; + 03E3ADB34B67871F5272B69DD31BCF73 /* AMapLocationRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationRegionObj.h; path = AMapLocationKit.framework/Headers/AMapLocationRegionObj.h; sourceTree = ""; }; + 03E67A6EC39FF472B83B7840AF78E292 /* IQKeyboardResignHandler+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardResignHandler+Internal.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift"; sourceTree = ""; }; + 03EEA40526D078ECA2261B80DFC83B93 /* SendMessageCallbackProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SendMessageCallbackProxy.m; path = OpenIMSDK/CallbackProxy/SendMessageCallbackProxy.m; sourceTree = ""; }; + 03FE134A3FD2889614B4CC40FFEF3581 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; + 04165116172DB6943583A8C0448C2A3D /* MAHeatMapVectorOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlay.h; path = MAMapKit.framework/Headers/MAHeatMapVectorOverlay.h; sourceTree = ""; }; + 041BE6B75085B8D8F3F94945290C1279 /* mapMany.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = mapMany.swift; path = Source/RxSwift/mapMany.swift; sourceTree = ""; }; + 042A695EB5A0C54C275F88586AB33EF3 /* Keyframes+timeRemapping.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Keyframes+timeRemapping.swift"; path = "Sources/Private/CoreAnimation/Extensions/Keyframes+timeRemapping.swift"; sourceTree = ""; }; + 04337BCEE81935BE4FA6875EA79376EC /* MarqueeLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MarqueeLabel-prefix.pch"; sourceTree = ""; }; + 046A2C352C7F998A7D82B6A41E402562 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; + 0483E62BDF02CA0C3DE38D03FC2505C6 /* URL+ZIP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+ZIP.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/URL+ZIP.swift"; sourceTree = ""; }; + 04D5A1989D65FB214FF4699DF25DB42C /* Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Infallible.swift; path = RxSwift/Traits/Infallible/Infallible.swift; sourceTree = ""; }; + 051F14A8C5F58F79DCE1D93262767C25 /* KingfisherWebP.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = KingfisherWebP.modulemap; sourceTree = ""; }; + 0531C9A5E841EDBCD66B6F621E48F634 /* NSString+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+MJExtension.h"; path = "MJExtension/NSString+MJExtension.h"; sourceTree = ""; }; + 0547616BE46FF1E17F8F0D22C74EC2E2 /* DotLottieCacheProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieCacheProvider.swift; path = Sources/Public/DotLottie/Cache/DotLottieCacheProvider.swift; sourceTree = ""; }; + 055298DA034E8AA9E33D79D490271D2D /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; + 05546E827AAAE9F3BCFBD914821862CD /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Kingfisher-Kingfisher-Info.plist"; sourceTree = ""; }; + 05746202040C5E84F9997A84784DE29C /* DDFileLogger+Buffering.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DDFileLogger+Buffering.m"; path = "Sources/CocoaLumberjack/Extensions/DDFileLogger+Buffering.m"; sourceTree = ""; }; + 0592B4FDA541D739DA37618ECD3F548A /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + 0592F073094483AED9C6687373CD3E98 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; + 05B1B4DA4C8FF18FC71780D40B4D6E64 /* palette.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = palette.h; path = src/utils/palette.h; sourceTree = ""; }; + 05C843F98BE11FA841C4889FB5BE5773 /* MAOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlay.h; path = MAMapKit.framework/Headers/MAOverlay.h; sourceTree = ""; }; + 05E9CE5A83328C8F0A54F45B5A6C8051 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; + 060CD185D2422C4062E0B14A26CF6596 /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; + 061073267D9E7A4ABC1B4D3CA50443E7 /* Popover-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Popover-prefix.pch"; sourceTree = ""; }; + 06400FEC0E7815877B9FFAD947B38F12 /* AnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/AnimationLayer.swift; sourceTree = ""; }; + 06875FDB4D66D9C998AEF230FEF92724 /* VideoEditorCropView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorCropView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorCropView.swift; sourceTree = ""; }; + 06C8D5A6462C9B25ACD0B162347F8166 /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/Features/AlamofireExtended.swift; sourceTree = ""; }; + 06C8EC9CBE5189937E85D41906662CC4 /* LayerFontProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerFontProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift; sourceTree = ""; }; 06E5B413FEA5A600D76636DA132F8FB9 /* IQTextInputViewNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQTextInputViewNotification; path = IQTextInputViewNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 06EE3D85DB7CA93CAA94FA29AE45BFDF /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = ""; }; - 0702635284B749BA9176AECEF97B1171 /* MAMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapKit.h; path = MAMapKit.framework/Headers/MAMapKit.h; sourceTree = ""; }; - 07082B8A4C4290E5D4C81099E14B1045 /* NSSlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSSlider+Rx.swift"; path = "RxCocoa/macOS/NSSlider+Rx.swift"; sourceTree = ""; }; - 0719BA04D2F1F80681741FC01F6CCDDC /* IQTextView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.release.xcconfig; sourceTree = ""; }; - 0728A2587FDDC0AF78C982A4DC85EF61 /* MJExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.release.xcconfig; sourceTree = ""; }; - 075CAD90D4B9F0A4CD5758A057138771 /* EditorConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/EditorConfiguration.swift; sourceTree = ""; }; - 0778C2229489CA4092CFD36A8B0FEBC4 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; - 078588641DE48A9F8B942FE651C967F5 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - 0788BAC406F45A6FC2BF3C22638DAB6C /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = ""; }; - 0791E218AD38A3E5DB7DCC82469F2282 /* Popover.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Popover.debug.xcconfig; sourceTree = ""; }; - 08050C89BDBFDA62A3F6EF30F6743FD6 /* RxPickerViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift; sourceTree = ""; }; - 080BA283B9623B19CAC631DFF76437E6 /* IQTextInputViewNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextInputViewNotification-dummy.m"; sourceTree = ""; }; - 081D3FFF22883789F72BD87362697E6E /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 0846B8700232494BFCEC5F1561A0AD7C /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + 06E85A137AD401FDF67AF3F231FCBFD3 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = ""; }; + 06ED629B369D759C9255F2C1BD20473B /* EditorStickerItemView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerItemView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerItemView.swift; sourceTree = ""; }; + 06F77A9C4687FD3D84DFF005E7862759 /* OIMQuoteElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMQuoteElem.h; path = OpenIMSDK/Model/OIMQuoteElem.h; sourceTree = ""; }; + 07063D265D80CED41E96A7C82AE2DDDE /* SGPermissionPhoto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGPermissionPhoto.m; path = SGQRCode/Permission/SGPermissionPhoto.m; sourceTree = ""; }; + 071040A220C8B1B13643EADE3387CE25 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxCocoa/Common/Observable+Bind.swift"; sourceTree = ""; }; + 072418454C445A6F822370D323C70103 /* MAPointAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPointAnnotation.h; path = MAMapKit.framework/Headers/MAPointAnnotation.h; sourceTree = ""; }; + 0736A9464846A7FFD4CD0741B9E475AD /* YBIBInteractionProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBInteractionProfile.m; path = YBImageBrowser/Image/YBIBInteractionProfile.m; sourceTree = ""; }; + 073E1802D9E834D19ABCCBDA089E92AB /* LottieAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationLayer.swift; path = Sources/Public/Animation/LottieAnimationLayer.swift; sourceTree = ""; }; + 075882F6287E92089A2D5E849864B5EF /* _RXKVOObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXKVOObserver.m; path = RxCocoa/Runtime/_RXKVOObserver.m; sourceTree = ""; }; + 076D230EE2230FCE5631F7FF4CE38942 /* Zones.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zones.swift; path = Sources/SwiftDate/Supports/Zones.swift; sourceTree = ""; }; + 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; + 0796F5670CD11B847772FE42520CD128 /* Infallible+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Debug.swift"; path = "RxSwift/Traits/Infallible/Infallible+Debug.swift"; sourceTree = ""; }; + 07AEA36BD7A79BEA1F5BD73E718BEE2E /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + 07D0C4E9495B63B74FEB580EE16DBEC2 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; + 08261D3B2E86FA4702201DA370E21959 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; + 082BB2C211CC761AE7176E1C91AA3E68 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = ""; }; 085DBCE7DD98588B2ED103B1C1F36026 /* Alamofire-Alamofire */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Alamofire-Alamofire"; path = Alamofire.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 086F64A3B9E25E5506DF53C6A7398B30 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; - 087EB3E92C3CE9AEF4989DC32217260E /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = ""; }; - 088A84604336D5130B62B245D8D225F0 /* sharpyuv_gamma.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_gamma.c; path = sharpyuv/sharpyuv_gamma.c; sourceTree = ""; }; - 08B73798103120C7A3AF0D936520F1C0 /* UIBarButtonItem+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIBarButtonItem+Rx.swift"; path = "RxCocoa/iOS/UIBarButtonItem+Rx.swift"; sourceTree = ""; }; - 08E79F539A51EF5624368459D580FDA3 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 092167ED1CC47E4B4914B165AB241CA3 /* sharpyuv_csp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv_csp.h; path = sharpyuv/sharpyuv_csp.h; sourceTree = ""; }; - 094C71050294A146BB656949DAC3B8D6 /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = ""; }; - 09772666C0AEFD8BB25B0463F2F3934F /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; - 09A47D8BBE8F670AEE1597E694E9299C /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; - 09BF0462A5A73BDAD46E8893D422BE0F /* pausableBuffered.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = pausableBuffered.swift; path = Source/RxSwift/pausableBuffered.swift; sourceTree = ""; }; - 09C9FFCB4BFE694DCB6775DB83FA38FE /* DidDisplayProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidDisplayProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidDisplayProviding.swift; sourceTree = ""; }; - 09E8A3E05EC079477747443AD301E860 /* Rectangle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rectangle.swift; path = Sources/Private/Model/ShapeItems/Rectangle.swift; sourceTree = ""; }; - 0A010C711309127F26077A97DB9D8DE1 /* CALayer+fillBounds.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+fillBounds.swift"; path = "Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift"; sourceTree = ""; }; - 0A05F415EE7D3DB8D18478027CDCF3F2 /* MAOfflineItemCommonCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemCommonCity.h; path = MAMapKit.framework/Headers/MAOfflineItemCommonCity.h; sourceTree = ""; }; - 0A6039DC25796F9AE9A8B94A69984B37 /* GradientFill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFill.swift; path = Sources/Private/Model/ShapeItems/GradientFill.swift; sourceTree = ""; }; - 0A728065D0A8D6804B2901F182770F32 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; - 0A758E01A5342DD85FC47B3EE4BABF79 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; - 0A86E5B1317FA3F4A9D3EC10B4842235 /* UISegmentedControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISegmentedControl+Rx.swift"; path = "RxCocoa/iOS/UISegmentedControl+Rx.swift"; sourceTree = ""; }; - 0A8CCBE60DB666E1F9638503CEF4375A /* IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; + 08750421AE2FCC141D4D1F8E3C6C6789 /* MqttCocoaAsyncSocket-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MqttCocoaAsyncSocket-umbrella.h"; sourceTree = ""; }; + 087AC616BCEA82E356A02B7EFD0EF5EF /* TransformType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformType.swift; path = Sources/TransformType.swift; sourceTree = ""; }; + 088F69851DD20A7E2B4360E4B044A7EF /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/RxCocoa/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 08BF7E05FE4526682EBDA0F71476A16D /* SizeValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift; sourceTree = ""; }; + 08DE826BB58AC8456D39338C267DB337 /* MqttCocoaAsyncSocket */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MqttCocoaAsyncSocket; path = MqttCocoaAsyncSocket.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0905AA9AF1C83106FBB5946C32226A04 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; + 090A0F0AF4335239DE003FB4A5980412 /* AMap3DMap.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMap3DMap.debug.xcconfig; sourceTree = ""; }; + 0942915E855CACF30C7A5843464A23D4 /* PhotoTools+File.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoTools+File.swift"; path = "Sources/HXPHPicker/Core/Util/PhotoTools+File.swift"; sourceTree = ""; }; + 094C068E414026C8CB65CAC50AAE5C84 /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/PrimitiveSequence/Single.swift; sourceTree = ""; }; + 0951F87C6DE10E5CFAB72203270704EB /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = ""; }; + 0972D3FDA84177E303FB5119120A366C /* YBImageBrowser.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YBImageBrowser.modulemap; sourceTree = ""; }; + 0975E1214B64C5AE57633B4489CBE5F2 /* DDAbstractDatabaseLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDAbstractDatabaseLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDAbstractDatabaseLogger.h; sourceTree = ""; }; + 0992FBF15192FDE359109D457FACCB68 /* UIViewPropertyAnimator+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewPropertyAnimator+Rx.swift"; path = "Source/RxCocoa/UIViewPropertyAnimator+Rx.swift"; sourceTree = ""; }; + 09AB62F03517BF3D5AE88B4968C6DF90 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + 09D14340A7DE0DC69768143F4781EF5A /* CocoaLumberjack-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CocoaLumberjack-Info.plist"; sourceTree = ""; }; + 0A34DFF17E01BF9AA5F87F3E3FADCC7B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbar/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 0A53ED458B025D58C4FD11EC93FFAAA2 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; + 0A6B3A99BDAED7755D8CFCE9C0F42B18 /* YBIBImageLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageLayout.m; path = YBImageBrowser/Image/YBIBImageLayout.m; sourceTree = ""; }; + 0A8697B4ED19909AFD6C7558CEE8615F /* YYSpriteSheetImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYSpriteSheetImage.h; path = YYImage/YYSpriteSheetImage.h; sourceTree = ""; }; + 0A8E8C8881849C416468CDD1543F786A /* DDFileLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDFileLogger.m; path = Sources/CocoaLumberjack/DDFileLogger.m; sourceTree = ""; }; + 0A9E8211F029EBA42EEEE2CC2901AFBC /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; + 0AA02FA0E65676F5516119114719BAB8 /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = ""; }; + 0AA728D87B7F91C945463B669D4EAE5C /* OIMMergeElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMMergeElem.m; path = OpenIMSDK/Model/OIMMergeElem.m; sourceTree = ""; }; + 0AC56FB29A4BDFF4CF1349AF6A43D9F9 /* Vector1DEffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Vector1DEffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift; sourceTree = ""; }; + 0ACE6098C6600F130B1FBE95DA09FCB5 /* IQKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardNotification.swift; path = IQKeyboardNotification/Classes/IQKeyboardNotification.swift; sourceTree = ""; }; + 0AD55A47F1AAA88609AC883AD677F608 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; + 0AD6F8BAAAFF98186138E4A6113D787B /* ColorEffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorEffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift; sourceTree = ""; }; + 0AF5A4FEF1EBB57D68D4832ED9C4B8C2 /* ContentConfigurableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContentConfigurableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ContentConfigurableView.swift; sourceTree = ""; }; 0B06FE4EB869890001614655A886414E /* RxRelay-RxRelay_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "RxRelay-RxRelay_Privacy"; path = RxRelay_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0B237C461DD75E2FE67F4D105C480806 /* VideoPlayerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoPlayerView.swift; path = Sources/HXPHPicker/Core/View/VideoPlayerView.swift; sourceTree = ""; }; - 0B439671E325FDC797835D3E0BFF022C /* MALineDrawType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MALineDrawType.h; path = MAMapKit.framework/Headers/MALineDrawType.h; sourceTree = ""; }; - 0B4B93F368A61449309541689291E7CE /* UITabBarController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBarController+Rx.swift"; path = "RxCocoa/iOS/UITabBarController+Rx.swift"; sourceTree = ""; }; - 0B622AEF7B6E9C360D0C962D5A346AF5 /* Core+Data.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+Data.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+Data.swift"; sourceTree = ""; }; - 0B6E92282095998AE496E1CD388E290E /* lottie-ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "lottie-ios-Info.plist"; sourceTree = ""; }; - 0BA20785663BFF2D9EB5DA399BF39DB2 /* ShapeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift; sourceTree = ""; }; - 0BB2D04A41EC4109E190F3E4A1309236 /* _RXObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXObjCRuntime.h; path = RxCocoa/Runtime/include/_RXObjCRuntime.h; sourceTree = ""; }; - 0BBC5AF8C3A9691541305496A8731034 /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; - 0C32AEB37F418F32DD29DCF4F8431825 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; - 0C4A299CFB1CC50C15D414460381F776 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - 0C4A9542376C040D061E6FE28C2DB9B7 /* KeyframeData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeData.swift; path = Sources/Private/Model/Keyframes/KeyframeData.swift; sourceTree = ""; }; + 0B1594EBD0E078355AAC2E6368B21BDC /* Core+Data.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+Data.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+Data.swift"; sourceTree = ""; }; + 0B3260A1DE9EA63DA5199E6744363682 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = ""; }; + 0B419226841037EB005DD3984345CE25 /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = ""; }; + 0BDCDDE834F17A8AC6D94875DF09C0F2 /* PhotoPreviewViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPreviewViewCell.swift; sourceTree = ""; }; + 0C1C877790940F9BEC52E105E2345F63 /* StringExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringExtensions.swift; path = Sources/Private/Utility/Extensions/StringExtensions.swift; sourceTree = ""; }; + 0C2E42CF6F1C4002FCCDFCE682179B50 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; + 0C6A878365FAE3831D101B7448192821 /* EpoxyModelArrayBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelArrayBuilder.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift; sourceTree = ""; }; 0C6F4829D47D1826F47CDC4264F9F6A8 /* YYImage */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = YYImage; path = YYImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0CC8DF74CE848DD89C1543B98FF1568C /* NetworkLoggerPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkLoggerPlugin.swift; path = Sources/Moya/Plugins/NetworkLoggerPlugin.swift; sourceTree = ""; }; - 0CD26ACB38019F95EF4C9767072D150E /* Data+Serialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Serialization.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Serialization.swift"; sourceTree = ""; }; - 0CD8F90D2331966421E416907B75E2FB /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = ""; }; - 0CE84950E22DD459CF2C5DB2783BAFFB /* GradientStroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStroke.swift; path = Sources/Private/Model/ShapeItems/GradientStroke.swift; sourceTree = ""; }; - 0D09975AEB1A1FB56CECF90D58E0A2D9 /* AMapCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapCommonObj.h; path = AMapSearchKit.framework/Headers/AMapCommonObj.h; sourceTree = ""; }; - 0D09C384F5AC385694E5E067051A5F38 /* YBImageBrowser.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YBImageBrowser.modulemap; sourceTree = ""; }; - 0D117580563C690B3B6D37BB9C3A3CEE /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = ""; }; - 0D22A34E6D8A78B03A3878CC8F4A141A /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - 0D3E95B767FD6876A4F79F0E3E0A61F4 /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = Sources/Private/Model/ShapeItems/Merge.swift; sourceTree = ""; }; - 0D6CE6CF210C12D6787846819CB8D3B1 /* TransformOperators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformOperators.swift; path = Sources/TransformOperators.swift; sourceTree = ""; }; - 0D70F2602168F1347FB7D9F6E7603D10 /* CloseButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CloseButton.swift; path = TagListView/CloseButton.swift; sourceTree = ""; }; - 0D7269015D795415C30E6E7FDA887D10 /* ZXSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZXSDK.release.xcconfig; sourceTree = ""; }; - 0D84E9F9F6E555A1543E50A0B611DEE8 /* ignoreWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ignoreWhen.swift; path = Source/RxSwift/ignoreWhen.swift; sourceTree = ""; }; - 0DA807B3AA45AE66EB8FD6744357C386 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - 0DAE16684B183BA733C62C1A5D862E6B /* URLMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLMatcher.swift; path = Sources/URLMatcher/URLMatcher.swift; sourceTree = ""; }; - 0DAE279F4B34773AA505A877C76A03B1 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; - 0DBD93D288BF1971680AC0CBFA87CEC7 /* CocoaLumberjack.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaLumberjack.swift; path = Sources/CocoaLumberjackSwift/CocoaLumberjack.swift; sourceTree = ""; }; - 0DC1922990EE3C6470B7E270DD74209C /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 0DC7E49D8AEF596CCFD395189A1C41EC /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/Features/RetryPolicy.swift; sourceTree = ""; }; - 0DD5014CBC7EBE462FEFF1A0895E2A0D /* OIMSearchResultInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSearchResultInfo.h; path = OpenIMSDK/Model/OIMSearchResultInfo.h; sourceTree = ""; }; - 0DDF4C5CB57A76EED48FAB3C5DE0F648 /* AlbumTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleView.swift; path = Sources/HXPHPicker/Picker/View/AlbumTitleView.swift; sourceTree = ""; }; - 0DE933906B9742E508D8D788A1D9460B /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - 0DE992B84532B2F0319D59578C0E1B8A /* Int+DateComponents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int+DateComponents.swift"; path = "Sources/SwiftDate/Foundation+Extras/Int+DateComponents.swift"; sourceTree = ""; }; - 0DED4BA3B9B036CB4B02EB1ED05A82DB /* MBProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MBProgressHUD-Info.plist"; sourceTree = ""; }; + 0C72CD0DD87596086C9AF0B56109C312 /* MAConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAConfig.h; path = MAMapKit.framework/Headers/MAConfig.h; sourceTree = ""; }; + 0CCFB049C63FB80FE0F10ECBC2C8765F /* IQKeyboardReturnManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardReturnManager.modulemap; sourceTree = ""; }; + 0D35826F34C3A15406C7BCA0C286C17A /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; + 0D40A187A4C62181827B7D1C0CFFEFFD /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; + 0D43EFC784C9CB0EEC823043042F4F3E /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; + 0DB886261132DFF1F39AFB7A34AE0692 /* EditorStickerTextViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerTextViewController.swift; path = Sources/HXPHPicker/Editor/Controller/EditorStickerTextViewController.swift; sourceTree = ""; }; + 0DBBD891BF6C368D4AE331AD41909336 /* ControlProperty+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlProperty+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlProperty+Driver.swift"; sourceTree = ""; }; + 0DD2DE37E0D18D7C606ECD29F45A940A /* TagListView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = TagListView.modulemap; sourceTree = ""; }; + 0DE1E8395E47D386B6490E17E8F67252 /* ImmutableMappable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmutableMappable.swift; path = Sources/ImmutableMappable.swift; sourceTree = ""; }; + 0DE460D658E702CA2B530B22A735CDEE /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; + 0DE5DF902C1E8080C92964EA0B0C8D6E /* Vectors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Vectors.swift; path = Sources/Public/Primitives/Vectors.swift; sourceTree = ""; }; 0DFD4541FF9DAA31A2FC2A7F6D03ED22 /* IQTextView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQTextView; path = IQTextView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0E058257A7D0F02E7FB8985089EEC6E1 /* SDCycleScrollView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDCycleScrollView-umbrella.h"; sourceTree = ""; }; - 0E299BEB764B9A1DEC98EA66D620ACA5 /* _RXDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXDelegateProxy.m; path = RxCocoa/Runtime/_RXDelegateProxy.m; sourceTree = ""; }; - 0E4B32FB0EC76B01B592CD1A61C85164 /* MAOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayRenderer.h; path = MAMapKit.framework/Headers/MAOverlayRenderer.h; sourceTree = ""; }; - 0E4CE93B7DDACE16DD10B30BDEF700E4 /* MATraceLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceLocation.h; path = MAMapKit.framework/Headers/MATraceLocation.h; sourceTree = ""; }; - 0E521769293502BCC89258E2797104EC /* Defaults+Observing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Defaults+Observing.swift"; path = "Sources/Defaults+Observing.swift"; sourceTree = ""; }; - 0E8F9DC1785CD80E71ADCCAC6918470F /* EpoxyableView+SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EpoxyableView+SwiftUIView.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxyableView+SwiftUIView.swift"; sourceTree = ""; }; - 0E9018049D3891D6B8326E4C1A96B726 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - 0ED0D149F401AB63D52DF294E59B0FC1 /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJKeyValue.m"; path = "MJExtension/NSObject+MJKeyValue.m"; sourceTree = ""; }; - 0EDF22B2F7710B68BEF42DBD7960FFD2 /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Features/Concurrency.swift; sourceTree = ""; }; - 0EFE005BE578C2D2E402895822FD412B /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 0F0B7C25AA2F40A4E6FFD122B936E9B5 /* SGQRCode-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SGQRCode-dummy.m"; sourceTree = ""; }; - 0F326E73494C37B436B25DC1DD104CFE /* URLNavigator.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = URLNavigator.release.xcconfig; sourceTree = ""; }; - 0F5B82BDBCAA41F24AD4A6F7D6617A30 /* ObjectMapper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ObjectMapper.debug.xcconfig; sourceTree = ""; }; - 0F8918760B6BA08970F8004ED7AA6FE4 /* PhotoManager+Audio.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoManager+Audio.swift"; path = "Sources/HXPHPicker/Core/Util/PhotoManager+Audio.swift"; sourceTree = ""; }; - 0FA7A535E34304FEB795FCB634375C02 /* AssetManager+Asset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+Asset.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+Asset.swift"; sourceTree = ""; }; - 0FA833C33B5AC6E4CEC49F9D1321C982 /* YBIBToolViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBToolViewHandler.m; path = YBImageBrowser/ToolView/YBIBToolViewHandler.m; sourceTree = ""; }; - 0FAF4A2F2B4B2435A7BB4895AF2145CD /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = ""; }; - 0FCB1FD240155B644AD7582F70744DC4 /* NullCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NullCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.swift; sourceTree = ""; }; - 0FD8E3AD2D74BE680D34541310F348A2 /* NSView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSView+Rx.swift"; path = "RxCocoa/macOS/NSView+Rx.swift"; sourceTree = ""; }; - 0FDFCFAED54B1A668030FBB5DAA027B8 /* UIView+Responders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responders.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+Responders.swift"; sourceTree = ""; }; - 0FEC85C5E00BEEAFA0B609E7B5609E94 /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; - 100BB5555346B3CAD8AB3EEC096C649E /* MoyaProvider+Defaults.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MoyaProvider+Defaults.swift"; path = "Sources/Moya/MoyaProvider+Defaults.swift"; sourceTree = ""; }; - 10714B805F30205FBFC798B49F7ED8AA /* SwiftDate-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftDate-dummy.m"; sourceTree = ""; }; - 1089D62CEB1502272B582AC17278077E /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/Extensions/StringEncoding+Alamofire.swift"; sourceTree = ""; }; - 1098D704D51AA0E2DEDC327834F7740C /* AlipaySDK-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AlipaySDK-iOS.debug.xcconfig"; sourceTree = ""; }; - 109ACDAA5C60690C3C29F4D995BFF459 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; - 10B1ACF2AADB5AD04163F4674BFE07A0 /* SwiftyUserDefaults.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyUserDefaults.release.xcconfig; sourceTree = ""; }; - 10BDD4803F2D3B0D30C89BAB4D03D216 /* DotLottieManifest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieManifest.swift; path = Sources/Private/Model/DotLottie/DotLottieManifest.swift; sourceTree = ""; }; - 10EE3A5EAF25A1133FE1366F3E35BD6F /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 1106559DE680E75DE166E285D84655EC /* EditorImageResizerMaskView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorImageResizerMaskView.swift; path = Sources/HXPHPicker/Editor/View/Photo/EditorImageResizerMaskView.swift; sourceTree = ""; }; + 0E006EB6628D9D7013460BEDD4583E8D /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 0E1989088B503751B4F0FDA7441A4656 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 0E27C6104885875C65D924ABDA4E3D40 /* YYFrameImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYFrameImage.h; path = YYImage/YYFrameImage.h; sourceTree = ""; }; + 0E3E10F0E4E1EEB483B960CB8AB44788 /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; + 0E3F8640A2B68814B6E3049FE1466EB3 /* MoyaProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MoyaProvider.swift; path = Sources/Moya/MoyaProvider.swift; sourceTree = ""; }; + 0E4A78CC3124C5516228374A8AB619AB /* lottie-ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "lottie-ios-dummy.m"; sourceTree = ""; }; + 0E68A3533F3C2D4D73D3AA397B395563 /* pausableBuffered.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = pausableBuffered.swift; path = Source/RxSwift/pausableBuffered.swift; sourceTree = ""; }; + 0EA38E1760C227E8492F6B7419EBD670 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = ""; }; + 0EB177B7132DB39C91B6B2D930AA7F6B /* LivePhotoError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LivePhotoError.swift; path = Sources/HXPHPicker/Core/Model/LivePhotoError.swift; sourceTree = ""; }; + 0ED077EB75CE413B9DB3BDD2E67A5D33 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; + 0EE24F78A7AEEC8FF75CCB9FA0A47036 /* YBIBScreenRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBScreenRotationHandler.m; path = YBImageBrowser/Base/YBIBScreenRotationHandler.m; sourceTree = ""; }; + 0EE8AEF48758E3AF539B73FD6DD3891E /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; + 0F1E4C287F43603EC155ECECFDC59225 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; + 0F9F954A9051F47DF3AA5D6404469F27 /* OIMUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMUserInfo.h; path = OpenIMSDK/Model/OIMUserInfo.h; sourceTree = ""; }; + 0FAC0E0BC6370F8AC09DFB8E21DCDFCC /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift"; sourceTree = ""; }; + 0FAE7BDC15B4ECF9C5F5FD05C6AFD281 /* sharpyuv_gamma.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv_gamma.h; path = sharpyuv/sharpyuv_gamma.h; sourceTree = ""; }; + 0FC1EE43154306096568FB039E407BD3 /* NotAuthorizedConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotAuthorizedConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/NotAuthorizedConfiguration.swift; sourceTree = ""; }; + 1005FE0354AFFB68DC5891504FCA9BCC /* palette.c */ = {isa = PBXFileReference; includeInIndex = 1; name = palette.c; path = src/utils/palette.c; sourceTree = ""; }; + 1015C6C8D14DA8683A3381003A7C1EB0 /* Picker+PhotoTools.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+PhotoTools.swift"; path = "Sources/HXPHPicker/Picker/Util/Picker+PhotoTools.swift"; sourceTree = ""; }; + 102CF3B2B65C514D576D47BFFCF62BC0 /* lottie-ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "lottie-ios.modulemap"; sourceTree = ""; }; + 103B0BA9D30353B2A3AE6A3E4D345958 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; + 103BCD5D91A86629DA7A02BC546D632F /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; + 104AB2BBDAA118AB5B3EC43FCFB764A9 /* PickerConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PickerConfiguration.swift; sourceTree = ""; }; + 1059A598BA4F9CA60155BA8373D9F178 /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; + 106AF6327F7C20B1A3C440871893FEF9 /* DDMultiFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMultiFormatter.m; path = Sources/CocoaLumberjack/Extensions/DDMultiFormatter.m; sourceTree = ""; }; + 10BD7C6E2B9C3F8213C2009EA980608B /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; + 10E286D9023E96E911902F5ADE064F52 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; + 10ECE5FD969EBBA30C2ED7DA1AC66C7C /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; + 110065EE86084581A6832FFCF7A27380 /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = ""; }; + 110A4E7BE4EB9B92AD398EF75E3DF5AE /* MqttDecodePubRec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttDecodePubRec.swift; path = Source/MqttDecodePubRec.swift; sourceTree = ""; }; 110BD425B6CAD6801539E2C6AB6E0662 /* IQKeyboardReturnManager-IQKeyboardReturnManager */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardReturnManager-IQKeyboardReturnManager"; path = IQKeyboardReturnManager.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 111E59CE836AAFABF981BB302BED14EC /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = ""; }; - 112275B5F2DA020D1F5AAA0ADA2963C4 /* TAAnimatedDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TAAnimatedDotView.h; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAAnimatedDotView.h; sourceTree = ""; }; - 113A6CE4C212D09BCD02D88EBC5EACC6 /* Core+String.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+String.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+String.swift"; sourceTree = ""; }; - 11557BC158C05BFB9E2F996F3EEF9C99 /* VisibilityAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VisibilityAnimation.swift; path = Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift; sourceTree = ""; }; - 11BF0F782E6A624EBD13466CED287C49 /* AssetManager+AVAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+AVAsset.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+AVAsset.swift"; sourceTree = ""; }; - 11E4FA4C2B1EA9C47652450BD97F5DAC /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - 120ADFE75C0204A5F6266DF89EC4FAF2 /* VideoEditorPlayerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorPlayerView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorPlayerView.swift; sourceTree = ""; }; + 11335B714622306F91A1F2FB8E0B3186 /* DataIDProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataIDProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DataIDProviding.swift; sourceTree = ""; }; + 1159483893C79D787E89D45D687672E6 /* CodableTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CodableTransform.swift; path = Sources/CodableTransform.swift; sourceTree = ""; }; + 1196353082FE78E3F0236610EBD8703E /* OpacityAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OpacityAnimation.swift; path = Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift; sourceTree = ""; }; + 11A04BE5CE43A7F729E96EA4E6256922 /* IntegerType+IdentifiableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IntegerType+IdentifiableType.swift"; path = "Sources/RxDataSources/IntegerType+IdentifiableType.swift"; sourceTree = ""; }; + 11B4D2B58D8EC3CA214F9D4A0F71A59C /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = Sources/Private/Model/ShapeItems/Merge.swift; sourceTree = ""; }; + 11BA9E364F4512BB8B20BE4DE4BD9140 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/RxSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 11C1ACD4FF2DDE99653570E86A791A22 /* NSSlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSSlider+Rx.swift"; path = "RxCocoa/macOS/NSSlider+Rx.swift"; sourceTree = ""; }; + 12043476FB1F109D8DD030BF0DAF525F /* Popover-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Popover-umbrella.h"; sourceTree = ""; }; + 12044D27E9FC771C5C3AF8F57F2D37C1 /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = ""; }; 120BD4C670EF00F4D5A40AA4B863A7AE /* IQKeyboardNotification-IQKeyboardNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardNotification-IQKeyboardNotification"; path = IQKeyboardNotification.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1227C89CE60E2237AF4BD0EB74800DFD /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - 123A973422EBF191D93A314597DB7594 /* AMapSearchError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchError.h; path = AMapSearchKit.framework/Headers/AMapSearchError.h; sourceTree = ""; }; - 1294CE8A5F4523CADF3F15AD30A2FC36 /* PhotoListCellConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoListCellConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PhotoListCellConfiguration.swift; sourceTree = ""; }; - 1296678825E509F2A6EBEA9A83A60147 /* PhotosUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PhotosUI.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/PhotosUI.framework; sourceTree = DEVELOPER_DIR; }; - 12A7038866A941BC4F3263821D30DE6D /* Date+Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Math.swift"; path = "Sources/SwiftDate/Date/Date+Math.swift"; sourceTree = ""; }; - 12AC14DB654B07B92FC565359BB24729 /* SwiftUIMeasurementContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUIMeasurementContainer.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift; sourceTree = ""; }; - 12E98132350361407F1F060CAF282D79 /* PhotoPickerBaseViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerBaseViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPickerBaseViewCell.swift; sourceTree = ""; }; - 12EE9646A1EE8B5F4F5EABA208A9045D /* DDOSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDOSLogger.m; path = Sources/CocoaLumberjack/DDOSLogger.m; sourceTree = ""; }; - 130BE4B7F904DF2C8DB08317F844B561 /* UI+SectionedViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UI+SectionedViewType.swift"; path = "Sources/RxDataSources/UI+SectionedViewType.swift"; sourceTree = ""; }; - 13248AF2B1E920AB3B30184BB73FE587 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQTextView/Classes/IQTextView.swift; sourceTree = ""; }; - 137B6C5117E166291507375196C29E1B /* SDCycleScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCycleScrollView.h; path = SDCycleScrollView/Lib/SDCycleScrollView/SDCycleScrollView.h; sourceTree = ""; }; - 1390CC8E3CD88975425399A7BD6E60F3 /* RxSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.debug.xcconfig; sourceTree = ""; }; - 13B22DBEA0599B8AB9BBE81DB9E9144F /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/Core/AFError.swift; sourceTree = ""; }; - 13C32C8D313CE54C938117F79FB42909 /* PhotoPickerBottomView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerBottomView.swift; path = Sources/HXPHPicker/Picker/View/PhotoPickerBottomView.swift; sourceTree = ""; }; - 13CFBAC771749F005DCDC9210BE8D854 /* UploadFileCallbackProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UploadFileCallbackProxy.m; path = OpenIMSDK/CallbackProxy/UploadFileCallbackProxy.m; sourceTree = ""; }; - 13E5190A07461E9AA35ECDE444AE8025 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/CocoaLumberjack/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 1413AD37773953D3ABCC8A24322AAB02 /* IQKeyboardToolbarManager+Action.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Action.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Action.swift"; sourceTree = ""; }; - 142413141212B735369078BF6388CA5A /* TableViewSectionedDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TableViewSectionedDataSource.swift; path = Sources/RxDataSources/TableViewSectionedDataSource.swift; sourceTree = ""; }; - 146CAAD47B8060678F231FC28E0A3B60 /* RoundedCornersNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RoundedCornersNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/RoundedCornersNode.swift; sourceTree = ""; }; - 14BE66CC68FFD2AC6BD608924474D629 /* MAAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotation.h; path = MAMapKit.framework/Headers/MAAnnotation.h; sourceTree = ""; }; - 14ECA25FAC580BEAD24A7591921B4905 /* IQKeyboardNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-umbrella.h"; sourceTree = ""; }; - 155E20CA6BEFC121FE0CABBBC97155F2 /* SendMessageCallbackProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SendMessageCallbackProxy.m; path = OpenIMSDK/CallbackProxy/SendMessageCallbackProxy.m; sourceTree = ""; }; - 1563B3E3E781D1EA51EBC18F425BD5DA /* MARouteOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MARouteOverlay.h; path = MAMapKit.framework/Headers/MARouteOverlay.h; sourceTree = ""; }; - 1583E5EDD96C5DC700A9A7CB042E5C7D /* OIMAttachedInfoElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMAttachedInfoElem.h; path = OpenIMSDK/Model/OIMAttachedInfoElem.h; sourceTree = ""; }; + 1238DCD625C5D81AC5BBEBBA05973B84 /* DidSelectProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidSelectProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidSelectProviding.swift; sourceTree = ""; }; + 1264E6B84B65131BAEEAC3BA08283C42 /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = ""; }; + 1276FAED22369627709084038B6FF270 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; + 12936157E06A9BD2BBAC1822B010AE60 /* Defaults.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Defaults.swift; path = Sources/Defaults.swift; sourceTree = ""; }; + 12A797C3A031E57AFC7DDC1C885765D6 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; + 12AEC4022B4E74BA76823EDA45EF7B0E /* UIButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Rx.swift"; path = "RxCocoa/iOS/UIButton+Rx.swift"; sourceTree = ""; }; + 12B5B5DF9020B345D986EB097F6AD7BA /* IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextView-Info.plist"; sourceTree = ""; }; + 12C03BC1B83CC86160BD1E3A61E1D046 /* EnumOperators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnumOperators.swift; path = Sources/EnumOperators.swift; sourceTree = ""; }; + 12D2895B84AB9CF7B83ED11129E9C360 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; + 130A9347ACA3AD097CD3B70D8B774B49 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = ""; }; + 1322DF1CDD5A25B867ADD9873A4AC966 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + 13257E2CEB981F8DE0977FDCD119CA08 /* RxTextViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift; sourceTree = ""; }; + 1347E158DD6325436FEA7A90CCD478A6 /* UIView+ParentObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ParentObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift"; sourceTree = ""; }; + 1358D7123BAC8C0A76B45D29BF04C27E /* lottie-ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-umbrella.h"; sourceTree = ""; }; + 139EF672FB2BD571A5A740D822E68D86 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; + 13B32687B49E8C118D10964F8D6250E1 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; + 13CA3F82CB4C95C5C30C09CEFF326F75 /* YBIBTopView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBTopView.m; path = YBImageBrowser/ToolView/YBIBTopView.m; sourceTree = ""; }; + 13DD4EB9386FF12834E44BF449F92FC4 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; + 13E455DA64F34549C2DF36123E908D73 /* ISOParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISOParser.swift; path = Sources/SwiftDate/Formatters/ISOParser.swift; sourceTree = ""; }; + 140B90127F8284D9D202F085B0596ECE /* OpenIMSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenIMSDK.h; path = OpenIMSDK/OpenIMSDK.h; sourceTree = ""; }; + 1410AE1CD716A6B76D8C34B2C0718A1E /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; + 144656E3F5F7AE2576B871406A869F02 /* _RXKVOObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXKVOObserver.h; path = RxCocoa/Runtime/include/_RXKVOObserver.h; sourceTree = ""; }; + 145E202321E3781E1B84D6204FD9B9E0 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; + 147AA59E39E9EAB2C4AB74196F84BF4E /* YBIBImageData+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBImageData+Internal.h"; path = "YBImageBrowser/Image/YBIBImageData+Internal.h"; sourceTree = ""; }; + 147C5981170C19FD63555EC085839A12 /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = ""; }; + 1493C734914B1D5213D92AB9DC211BA6 /* UIView+WebCacheState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheState.h"; path = "SDWebImage/Core/UIView+WebCacheState.h"; sourceTree = ""; }; + 14A25801BE3681A6B246E467BD8305FE /* HXPHPicker.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = HXPHPicker.modulemap; sourceTree = ""; }; + 14A7D6A86A2083A77AE74C11D9E5B400 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; + 14D2737365898F5CAB68817BBFBF3E3A /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; + 14E16E30B25A8A248D95A482A7EB47AF /* GYSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GYSDK.debug.xcconfig; sourceTree = ""; }; + 14F04172F80298AFE5BE335BF76D4501 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + 150E76117B97BF8CC0F969C82D1F8200 /* Date+Dispatch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Dispatch.swift"; path = "RxSwift/Date+Dispatch.swift"; sourceTree = ""; }; + 153604802C3D5B8223956E5CB7AAA14F /* MARouteOverlayModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MARouteOverlayModel.h; path = MAMapKit.framework/Headers/MARouteOverlayModel.h; sourceTree = ""; }; + 153DDDE8AAB0748444FFC4BC506F42BB /* LottieAnimationHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationHelpers.swift; path = Sources/Public/Animation/LottieAnimationHelpers.swift; sourceTree = ""; }; + 154A80EEAD6466B904FDDB7938F4AB13 /* MoyaProvider+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MoyaProvider+Internal.swift"; path = "Sources/Moya/MoyaProvider+Internal.swift"; sourceTree = ""; }; + 155696EF7C4D692123629E939A4CFC88 /* EditorStickerContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerContentView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerContentView.swift; sourceTree = ""; }; + 1565C58CB6645EE5908226C8FA71D0F8 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + 1572295F624626F7E6A25BFFD705DE16 /* CocoaMQTT.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaMQTT.debug.xcconfig; sourceTree = ""; }; 15848DEC7727A809830E7F6FC1B6CE0F /* IQKeyboardReturnManager */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardReturnManager; path = IQKeyboardReturnManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 15D5EFF4E9FEA0C1A35B46E0B26B96DD /* EditorCropConfirmView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorCropConfirmView.swift; path = Sources/HXPHPicker/Editor/View/EditorCropConfirmView.swift; sourceTree = ""; }; - 160A8AF75E876201D8C20CE7C39BEC82 /* NSTextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextField+Rx.swift"; path = "RxCocoa/macOS/NSTextField+Rx.swift"; sourceTree = ""; }; - 16193DA5A0D7C1CE6F0645E191E3B728 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - 16355D6BA368A1364975051A8532358E /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - 1643B1405173B32A64A5AB78741EBA0B /* CustomDateFormatTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomDateFormatTransform.swift; path = Sources/CustomDateFormatTransform.swift; sourceTree = ""; }; - 164C4FECB95EA7C55B2E7FD4257F2960 /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = ""; }; - 165FC294BFD8A65FF438D6516CD19815 /* BaseAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseAnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift; sourceTree = ""; }; - 16CB11B23A5ACD2B188960D308AFB6DF /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 1724A41AA97890D9CB0895E2B99DCD9E /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - 1733D116F00BB7860C14898B3F57690C /* Endpoint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Endpoint.swift; path = Sources/Moya/Endpoint.swift; sourceTree = ""; }; - 173B97065E201D29718EA0986BBECA8C /* VideoEditorMusic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorMusic.swift; path = Sources/HXPHPicker/Editor/Model/VideoEditorMusic.swift; sourceTree = ""; }; - 17B31F06E373829C72507245A444656C /* Image+WebP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Image+WebP.swift"; path = "Sources/Image+WebP.swift"; sourceTree = ""; }; - 17C56352D67E8BCA827335C748E6BF1E /* IQKeyboardNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardNotification-dummy.m"; sourceTree = ""; }; - 17FF6580767902B4011A015F2B07A578 /* TADotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TADotView.m; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TADotView.m; sourceTree = ""; }; - 183127F3E86A45036E2C0AB7DEB18E1D /* WebP.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebP.framework; path = Vendor/WebP.framework; sourceTree = ""; }; - 1858DBC20C1ACE16F5BE62DD4C23AEDF /* MarqueeLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MarqueeLabel.debug.xcconfig; sourceTree = ""; }; - 185E9EEEEA7B324631291ABE87B55BF9 /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; - 18A15E6769049B4159AC23B4E203B59A /* AnimatedButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedButton.swift; path = Sources/Public/Controls/AnimatedButton.swift; sourceTree = ""; }; - 18A237F8AFB1DD864B2E065B762851FB /* Stroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stroke.swift; path = Sources/Private/Model/ShapeItems/Stroke.swift; sourceTree = ""; }; - 18BD4A98815CF19CEF256B8951CB1B21 /* AssetManager+LivePhotoURL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+LivePhotoURL.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+LivePhotoURL.swift"; sourceTree = ""; }; - 19008898D15EB1FBBCD1A15590CF8625 /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; - 1923C5F56BFC83403AE09CB6E7168D18 /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; - 193191BB278021F213BF3AEF417EBFFA /* URLNavigator-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "URLNavigator-umbrella.h"; sourceTree = ""; }; - 193C2F05AD905BA3B2BAA978950E4592 /* CocoaLumberjack-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CocoaLumberjack-Info.plist"; sourceTree = ""; }; - 196C119B4B99656411031B27E64A2D95 /* DefaultsObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsObserver.swift; path = Sources/DefaultsObserver.swift; sourceTree = ""; }; - 19D327EFE94ECB1A3205002302180EBC /* Repeater.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeater.swift; path = Sources/Private/Model/ShapeItems/Repeater.swift; sourceTree = ""; }; - 1A1F982C6186E1FDD481C50E8701D062 /* IQKeyboardResignHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardResignHandler.swift; path = IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift; sourceTree = ""; }; - 1A4EDC467901C4C5FD494CCC7C2C7D0C /* PhotoEditorView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorView.swift; sourceTree = ""; }; - 1A5AE75EBDE8DA870927704CD94AC0E1 /* RxTableViewSectionedReloadDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewSectionedReloadDataSource.swift; path = Sources/RxDataSources/RxTableViewSectionedReloadDataSource.swift; sourceTree = ""; }; - 1A84325CE3F960B48B1C19244D0063D0 /* Locales.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Locales.swift; path = Sources/SwiftDate/Supports/Locales.swift; sourceTree = ""; }; - 1AD3C64E24C009607CBD92AC885EF423 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - 1B3C11BF7CD9B3366062CA6E41292DCD /* Documentation.docc */ = {isa = PBXFileReference; includeInIndex = 1; name = Documentation.docc; path = Sources/Documentation.docc; sourceTree = ""; }; - 1B3F62938E971A0D73273E6ECF332744 /* MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJProperty.h; path = MJExtension/MJProperty.h; sourceTree = ""; }; - 1B493390BFB085C207195D0FFD8C73B3 /* sharpyuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv.c; path = sharpyuv/sharpyuv.c; sourceTree = ""; }; - 1B4EA8A05D522735104DD7E10130C37B /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = ""; }; - 1B63629946BAA0F141F5000D45DF5B53 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - 1B662DE861161878956C798A09AAFD3D /* MAParticleOverlayOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayOptions.h; path = MAMapKit.framework/Headers/MAParticleOverlayOptions.h; sourceTree = ""; }; - 1BCC4F82D2FB23B74FAFB19A6D5D21C1 /* OIMFaceElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMFaceElem.m; path = OpenIMSDK/Model/OIMFaceElem.m; sourceTree = ""; }; - 1C029410FACF307A2410FE68E0C0FBB4 /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = ""; }; - 1C1376FC7BB4470F53E0603A9A7FC1AC /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; - 1C1449F57688BEF3B9D5DCFB485E606C /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; - 1C1D99CE01FB6BB6346D7EBEF5BF9DFF /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; - 1C2073401AAF79A598AB6B0B912877B8 /* OIMPictureElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMPictureElem.m; path = OpenIMSDK/Model/OIMPictureElem.m; sourceTree = ""; }; - 1C4A3B8F09E406012F86745357A1CD7D /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - 1C50D5AF6E97AE83A91CBEDB011B783C /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - 1C537FE6F5932E4CC8555D24BCEFB66D /* YBImageBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YBImageBrowser-dummy.m"; sourceTree = ""; }; - 1C65529B177CF37DE07312C17C19A0D6 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 1C8B492C658E83648F36B13B1502DD29 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - 1C8FFE3A4542A54D17DEA4F0A0654EDE /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = ""; }; - 1CDA320D71347555289F21E5F48A66BE /* MACircleRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircleRenderer.h; path = MAMapKit.framework/Headers/MACircleRenderer.h; sourceTree = ""; }; - 1CF8E6F541077AC2F8784FCFDE14C12A /* ZXSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZXSDK.debug.xcconfig; sourceTree = ""; }; - 1CFB860E83288CAFEBE347A6D5C2A748 /* lottie-ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-umbrella.h"; sourceTree = ""; }; - 1D2FE9608AAFE10B6C532B177274353D /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; - 1D587347C55CFBF02E2405496E4C19F1 /* IQKeyboardToolbarConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConstants.swift; path = IQKeyboardToolbarManager/Classes/Constants/IQKeyboardToolbarConstants.swift; sourceTree = ""; }; + 158C77258A2351E9D3B6E93C28100672 /* TAAbstractDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TAAbstractDotView.h; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAAbstractDotView.h; sourceTree = ""; }; + 15B4330482D87D40C8FC65666CF75DD1 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = ""; }; + 15C41B1F75E0AE177414264D43A54B7D /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + 15C82964192FC0B4A30796ED44DCBAF0 /* AMapLocationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationVersion.h; path = AMapLocationKit.framework/Headers/AMapLocationVersion.h; sourceTree = ""; }; + 15CF4020595F378B3FBC56EF16E33756 /* TimeStructures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimeStructures.swift; path = Sources/SwiftDate/Supports/TimeStructures.swift; sourceTree = ""; }; + 15DB7F8C2DB86CE0AAF598E6C439B423 /* CombinedShapeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedShapeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift; sourceTree = ""; }; + 1613AA53EE5A2A7A0235668A464EBB18 /* SwiftyJSON-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftyJSON-Info.plist"; sourceTree = ""; }; + 165FE2BA9D7A569098A2DD6DEB322A92 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; + 1661F2067BAE2A0A0E5D6C5585A309D4 /* IQKeyboardAppearanceManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardAppearanceManager+Internal.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift"; sourceTree = ""; }; + 1692A7D7BE4DE1B7E024C490612EB31B /* DDContextFilterLogFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDContextFilterLogFormatter.m; path = Sources/CocoaLumberjack/Extensions/DDContextFilterLogFormatter.m; sourceTree = ""; }; + 16B62285E67238FCDFC2EE5E85A20C18 /* UIView+ResignObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ResignObjc.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+ResignObjc.swift"; sourceTree = ""; }; + 16C74F65B7443D250D37B4BC5DD2083A /* AMapLocationCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationCommonObj.h; path = AMapLocationKit.framework/Headers/AMapLocationCommonObj.h; sourceTree = ""; }; + 16DCBA13E1A91EBF16B2E98581173E18 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; + 17067DED77C9D2CFC9CF625FA24F832B /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; + 1716B1D0D70C770AC24EDDD4C69E194B /* CocoaLumberjack.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLumberjack.debug.xcconfig; sourceTree = ""; }; + 17213D82F9306746169202894B0EAD94 /* UISlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISlider+Rx.swift"; path = "RxCocoa/iOS/UISlider+Rx.swift"; sourceTree = ""; }; + 17272198BEED2330EBB2A866A7ABE400 /* OpenIMSDKCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenIMSDKCore.debug.xcconfig; sourceTree = ""; }; + 173E5A5AC9E0556461707258329978E9 /* VisibilityAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VisibilityAnimation.swift; path = Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift; sourceTree = ""; }; + 176B5986B4C5F9E607A7F9872F4E9DBC /* SGWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGWeakProxy.m; path = SGQRCode/WeakProxy/SGWeakProxy.m; sourceTree = ""; }; + 17C72523B93134AD24AD27FCC1289EBD /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; + 17D15555C12B0AD21FDDB995C7FF080C /* FramePubRel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FramePubRel.swift; path = Source/FramePubRel.swift; sourceTree = ""; }; + 17D7819D2675E74CD46EF495115299E5 /* AlbumListConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumListConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/AlbumListConfiguration.swift; sourceTree = ""; }; + 17F4024785CE7E20270CB82E7E759217 /* SDCallbackQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCallbackQueue.m; path = SDWebImage/Core/SDCallbackQueue.m; sourceTree = ""; }; + 1804279EFA58CB40CB913B6BA37A081A /* MAOfflineCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineCity.h; path = MAMapKit.framework/Headers/MAOfflineCity.h; sourceTree = ""; }; + 18091BE40C28018BF17A58A3B4E68CDA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 183ECF3CB3F9B9A28400DF0443F735D0 /* ignore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ignore.swift; path = Source/RxSwift/ignore.swift; sourceTree = ""; }; + 184F947CEF38F5F5A56AAC37D7C72109 /* IQTextInputViewInfoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfoModel.swift; path = IQKeyboardReturnManager/Classes/IQTextInputViewInfoModel.swift; sourceTree = ""; }; + 185DAF49A8E1175A987F04CE022957BE /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; + 187CD970712B0851A9470D28D04986D3 /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; + 188EA8631594375F44FE972823A25FAC /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; + 18A527F6E05456C08754EC86F74615F4 /* VideoEditorViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorViewController.swift; path = Sources/HXPHPicker/Editor/Controller/VideoEditorViewController.swift; sourceTree = ""; }; + 18C57118977326E3AB3594BF47E4D50F /* TextDocument.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextDocument.swift; path = Sources/Private/Model/Text/TextDocument.swift; sourceTree = ""; }; + 18CCEF9F4B1E514EE1C151BAFB108BB2 /* MAOfflineItemCommonCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemCommonCity.h; path = MAMapKit.framework/Headers/MAOfflineItemCommonCity.h; sourceTree = ""; }; + 18E56EA95B0B63455E9FD121268B2EAB /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Moya/Image.swift; sourceTree = ""; }; + 1900F12C0F59A2EE38FF64396E3A02DF /* OptionalType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalType.swift; path = Sources/OptionalType.swift; sourceTree = ""; }; + 193E7324AAD235E26ADFD7F5B3EEB6C7 /* YBIBVideoData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoData.m; path = Video/YBIBVideoData.m; sourceTree = ""; }; + 1970F255FBB8A6704AB7CFD5716435DC /* IQKeyboardToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarManager.swift; path = IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager.swift; sourceTree = ""; }; + 198CEFDEA8156A3D6EA872BE843B4316 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; + 1990DB1381D06FADDBC58B8DE86F05D6 /* TagListView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "TagListView-Info.plist"; sourceTree = ""; }; + 19AB346F664AF3BB68015BA96F15CA47 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + 19AC9477C2E6EE717E2515047C572475 /* YBImageBrowser-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YBImageBrowser-umbrella.h"; sourceTree = ""; }; + 19B267246ED5549EBC604DE7947CDE89 /* DDAssert.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAssert.swift; path = Sources/CocoaLumberjackSwift/DDAssert.swift; sourceTree = ""; }; + 19C4C26FFF512354F4D686A50594A869 /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = ""; }; + 19D41911253A4EA902F92DB8C0EC5822 /* RxTableViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift; sourceTree = ""; }; + 19E88545F1377810D5192228482A9C6B /* CocoaMQTTDeliver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTDeliver.swift; path = Source/CocoaMQTTDeliver.swift; sourceTree = ""; }; + 1A065AF90B68633BBEC46B5E72F9476B /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = ""; }; + 1A0AD4B77AA2B0C8F61E913F33E32B5D /* SwiftDate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDate.release.xcconfig; sourceTree = ""; }; + 1A1FA30BD56F8630D1EBC9B27C1B166D /* Rectangle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rectangle.swift; path = Sources/Private/Model/ShapeItems/Rectangle.swift; sourceTree = ""; }; + 1A25B8A9E6FDF0123372C7099D17C0C5 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; + 1A95E8634ABD3401F658163DA5877CED /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; + 1ACCAE49580830784049EDF24569F21B /* BuiltIns.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BuiltIns.swift; path = Sources/BuiltIns.swift; sourceTree = ""; }; + 1AF1F452F9623F8A1F1BC97F1971B9AB /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; + 1B096CB908090AF2DD4E15675A33FD06 /* ImageLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageLayerModel.swift; path = Sources/Private/Model/Layers/ImageLayerModel.swift; sourceTree = ""; }; + 1B0F792B49D07BDC668FEA0FEE1D35C1 /* CocoaLumberjack.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaLumberjack.swift; path = Sources/CocoaLumberjackSwift/CocoaLumberjack.swift; sourceTree = ""; }; + 1B15C26343D5A8DE9B5A7A36BA7145FD /* OIMFullUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMFullUserInfo.h; path = OpenIMSDK/Model/OIMFullUserInfo.h; sourceTree = ""; }; + 1B20E54E915DD05D6DC0A202B6A746A5 /* IQKeyboardCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardCore-dummy.m"; sourceTree = ""; }; + 1B3CE22D40D563D3716D2B637C30D428 /* NetworkActivityPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkActivityPlugin.swift; path = Sources/Moya/Plugins/NetworkActivityPlugin.swift; sourceTree = ""; }; + 1B4759B2362FE048A89613C7D13FBE31 /* YBIBUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBUtilities.h; path = YBImageBrowser/Helper/YBIBUtilities.h; sourceTree = ""; }; + 1B4B16CEF33050278A4A904EC75AD40C /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; + 1B549342902CF998B972113E3FFF6A2A /* EditorConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/EditorConfiguration.swift; sourceTree = ""; }; + 1B7EFA9029C4AA0F8E04C83D67306D6D /* RxCocoa.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxCocoa.modulemap; sourceTree = ""; }; + 1B7F5FD6DA9BADA51B3252CFD995B944 /* once.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = once.swift; path = Source/RxSwift/once.swift; sourceTree = ""; }; + 1B9BF634B186B10B3DEB036AF4CFC662 /* UIActivityIndicatorView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIActivityIndicatorView+Rx.swift"; path = "RxCocoa/iOS/UIActivityIndicatorView+Rx.swift"; sourceTree = ""; }; + 1BC19FD29586F1661E5FB91599DACA72 /* count.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = count.swift; path = Source/RxSwift/count.swift; sourceTree = ""; }; + 1BCC3CCFED5B0E4592E403671601ACEF /* RxDataSources-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxDataSources-umbrella.h"; sourceTree = ""; }; + 1BD6854C4461EA80B767FF2182ED6EF2 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + 1BDE57FD5D9733AD03237000523DFF20 /* YBIBDataMediator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBDataMediator.h; path = YBImageBrowser/Base/YBIBDataMediator.h; sourceTree = ""; }; + 1BE3ED2D55A51CE30D6B35A81EEDBF70 /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; + 1BEFFF17F16298B1DF23F0FD66D7EADA /* UIView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; + 1BF72D624C3A129C90AEC6EC4E3E5E41 /* RenderingEngineOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RenderingEngineOption.swift; path = Sources/Public/Configuration/RenderingEngineOption.swift; sourceTree = ""; }; + 1C112C980D7117A563F32576ED0A5757 /* EditorCropConfirmView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorCropConfirmView.swift; path = Sources/HXPHPicker/Editor/View/EditorCropConfirmView.swift; sourceTree = ""; }; + 1C1D9B69A7128BBCC29DD780202F2071 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; + 1C469C15C143DCBCAD26D2F80E2A8BAD /* Atomic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Atomic.swift; path = Sources/Moya/Atomic.swift; sourceTree = ""; }; + 1C7BAAB90591C5F80AC0B54E492DC5FE /* DefaultsSerializable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsSerializable.swift; path = Sources/DefaultsSerializable.swift; sourceTree = ""; }; + 1C88283412781FE32730568EB4E8A4BF /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = Sources/Map.swift; sourceTree = ""; }; + 1C8C4047820D21477920765A198889CD /* catchErrorJustComplete.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = catchErrorJustComplete.swift; path = Source/RxSwift/catchErrorJustComplete.swift; sourceTree = ""; }; + 1C91C661FD814F39CAB6325D8D4B7E37 /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = ""; }; + 1CAD8E36D5A47E8FC472AD76480C5F1E /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; + 1CE5CC4648FB6DF842BA008DD474C9D0 /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; + 1D0927FACAB8AFC0577E10CE3E51400C /* RxCollectionViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift; sourceTree = ""; }; + 1D623539744C92AC2DF81C3ABEF834DA /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; 1D6CFC15839ACA2CFFE42FF0D4017A07 /* OpenIMSDK */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = OpenIMSDK; path = OpenIMSDK.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1DB22D2FDDF12C37CFAA13FB3428AEAA /* Popover-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Popover-prefix.pch"; sourceTree = ""; }; - 1DB6B3A6190703C3CC0E2646340F58EC /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; - 1DEC4D97314748FED89C51384E90F8BB /* ControlTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlTarget.swift; path = RxCocoa/Common/ControlTarget.swift; sourceTree = ""; }; - 1DF1E44CD5D56F8194F2390A6116F36D /* IQKeyboardToolbar.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.release.xcconfig; sourceTree = ""; }; - 1E168DF5E47CB8A301BCB3993A623844 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; - 1E264ED86787D52D1A2FB9D1694D53EF /* MARouteOverlayModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MARouteOverlayModel.h; path = MAMapKit.framework/Headers/MARouteOverlayModel.h; sourceTree = ""; }; - 1E3A4D823011F833B4CE1C1AB3DC381E /* UIView+RespondersObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+RespondersObjc.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+RespondersObjc.swift"; sourceTree = ""; }; - 1E3D74F7DD766B0FCCC2830BEE031A12 /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = ""; }; - 1E5EAE84819EF1BA77DF74FCED0F3399 /* OIMManager+Group.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Group.m"; path = "OpenIMSDK/Interface/OIMManager+Group.m"; sourceTree = ""; }; - 1E76BF6D7E4423019EBAB88941DBFA91 /* 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 = ""; }; - 1E8354D6F5407F2DBB7BAE63AF881072 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - 1E93437C29905A7527D19EBEC710F418 /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainItemAccessibility.swift; path = SwiftKeychainWrapper/KeychainItemAccessibility.swift; sourceTree = ""; }; - 1EE98E60968603D5FA63AA72697BD268 /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; - 1EEA2A47DAF2DB781EBC24E6A1DCA2E5 /* RxSwiftExt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwiftExt.release.xcconfig; sourceTree = ""; }; - 1EFFF31201EE4BC724B9C92EB8A90677 /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = ""; }; - 1F0F417D668A29E1F52CC4DA14DE80D6 /* WechatOpenSDK-XCFramework.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "WechatOpenSDK-XCFramework.debug.xcconfig"; sourceTree = ""; }; - 1F58995D9C873B51C91694DA3DF853E2 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 1F5D6827AFB3166F91E146F96204DDFE /* MJExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJExtension.modulemap; sourceTree = ""; }; - 1F6B612D76BB12D1DD8A1C1714E48765 /* DotLottieFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieFile.swift; path = Sources/Public/DotLottie/DotLottieFile.swift; sourceTree = ""; }; - 1F6D81725FC20BBBDBDAE2433DCC141F /* Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Infallible.swift; path = RxSwift/Traits/Infallible/Infallible.swift; sourceTree = ""; }; - 1F7005538E0ADBFEE28935345444E9BE /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; + 1D750F4A680320BE56EF1BDB092B3066 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + 1D7719DE8DCBAF91163BE806ED694652 /* GIFImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFImageView.swift; path = Sources/HXPHPicker/Picker/View/GIFImageView.swift; sourceTree = ""; }; + 1D8B96BC951501B73B984B3E5E73D45D /* IQKeyboardToolbarManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-umbrella.h"; sourceTree = ""; }; + 1DBBED0980B464762473A6C89F1C172D /* CALayer+fillBounds.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+fillBounds.swift"; path = "Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift"; sourceTree = ""; }; + 1DBE5FAED8A096071298FA384ECCAB5D /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; + 1DC2D7AD3B62E3A2D0D88CB42FAE50CB /* Core+UIFont.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIFont.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIFont.swift"; sourceTree = ""; }; + 1DD2EEC1DF1BF388D4AF543887D09A83 /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/Features/MultipartUpload.swift; sourceTree = ""; }; + 1DD5BEDC44F138136A2BE5B82DDCB24F /* IQTextView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-prefix.pch"; sourceTree = ""; }; + 1DFBCAA5D961010443EE4E8BF7F440E3 /* GTCommonSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTCommonSDK.debug.xcconfig; sourceTree = ""; }; + 1E05D9021DDD8DE479F93C6DA29461F4 /* OIMSoundElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSoundElem.h; path = OpenIMSDK/Model/OIMSoundElem.h; sourceTree = ""; }; + 1E154A22F7BFD213343B11EF0EF10A5C /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; + 1E1B0A6502E32D023ACE68E9AAF41799 /* ControlEvent+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Signal.swift"; path = "RxCocoa/Traits/Signal/ControlEvent+Signal.swift"; sourceTree = ""; }; + 1E1CA4230DC2DBBA4DE46A15D56461F6 /* SGQRCode-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SGQRCode-umbrella.h"; sourceTree = ""; }; + 1E29117C308DA807E6BE6C9C78F377D1 /* lottie-ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "lottie-ios-Info.plist"; sourceTree = ""; }; + 1E34C4B78DD7F2261388D210C5CADD36 /* IQKeyboardNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.release.xcconfig; sourceTree = ""; }; + 1E3BA316C2E40426CD457CC367902F1F /* RectangleAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RectangleAnimation.swift; path = Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift; sourceTree = ""; }; + 1E591870392035106E96512F65102385 /* MAPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolylineRenderer.h; path = MAMapKit.framework/Headers/MAPolylineRenderer.h; sourceTree = ""; }; + 1E60C88006022308DBE83289F5CB1A46 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; + 1E644A02D107EFCE505936D2C494F0D2 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; + 1E667A962419E1AC1223896870D663EF /* YBIBImageData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageData.h; path = YBImageBrowser/Image/YBIBImageData.h; sourceTree = ""; }; + 1EB524C0849E4B0FDC0EC4D3FBADF657 /* apply.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = apply.swift; path = Source/RxSwift/apply.swift; sourceTree = ""; }; + 1EBE8A67D212304EE2620BF3E7B9160A /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/Features/AuthenticationInterceptor.swift; sourceTree = ""; }; + 1EC1B8C248D81410FDAFCB9BE646654F /* YBIBVideoActionBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoActionBar.m; path = Video/YBIBVideoActionBar.m; sourceTree = ""; }; + 1ECB7D5AB4DB61A7C722388BBFF2BCD7 /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; + 1EF0D735372E69C9AC488BD364C4FBE3 /* AnimationImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationImageProvider.swift; path = Sources/Public/ImageProvider/AnimationImageProvider.swift; sourceTree = ""; }; + 1F18B21B8DF3684C2CE65E173E832352 /* LottieView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieView.swift; path = Sources/Public/Animation/LottieView.swift; sourceTree = ""; }; 1F742F9BBDEE927B1CEBB85C83810BC8 /* Pods-QuickLocation-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-QuickLocation-umbrella.h"; sourceTree = ""; }; - 1FA284AAEAD628F6B638EFC01ADF2225 /* URL+ZIP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+ZIP.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/URL+ZIP.swift"; sourceTree = ""; }; - 1FC105F4B4286E65A9A821818A51A5FB /* DDFileLogger+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DDFileLogger+Internal.h"; path = "Sources/CocoaLumberjack/DDFileLogger+Internal.h"; sourceTree = ""; }; - 1FD460C65311A9B6AD426570D30A2EDE /* RxScrollViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxScrollViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift; sourceTree = ""; }; - 1FDD4EA270A2514B7D7491E50CF6BA4B /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; - 1FE7CCD2DB56740DB6C59A573D8DFB63 /* AMapFoundation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapFoundation.debug.xcconfig; sourceTree = ""; }; - 1FE7D3EF3525CECB919C94B7CBAAEB8D /* UIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Hierarchy.swift"; path = "IQKeyboardCore/Classes/UIKitExtensions/UIView+Hierarchy.swift"; sourceTree = ""; }; - 1FF7131C55E627FF8ABFED611ABA66AC /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; - 1FF7D4D50D65E9D4198254BB3BEA4CA0 /* EpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModeled.swift; sourceTree = ""; }; + 1FA74D2870A019BA4740B7F676D3BE43 /* PhotoManager+Download.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoManager+Download.swift"; path = "Sources/HXPHPicker/Core/Util/PhotoManager+Download.swift"; sourceTree = ""; }; + 1FB1AF2C85681828F45ABCA77CA811B2 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; + 1FBA36361856104A4D031F00072469BF /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; + 1FCDFD3479752F715448F3E88166C942 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; + 1FDBE017ACEAAA8AB1BCF651DB668698 /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = ""; }; 1FFED36A657123030ABB700256D73F15 /* Masonry */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Masonry; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 20042495A7F0AEBBC01B9CB26314CDD2 /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; - 203E00991678D02363AB9B6B65D253A5 /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; - 2064CD5E88DCC289C0777852177E5B8D /* MAPointAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPointAnnotation.h; path = MAMapKit.framework/Headers/MAPointAnnotation.h; sourceTree = ""; }; - 20659E5169F93017F52987EB322E311C /* OpenIMSDK-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OpenIMSDK-umbrella.h"; sourceTree = ""; }; - 2082CF6101F2C1D95E6AA64DA48FA9C6 /* IQPlaceholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPlaceholderable.swift; path = IQKeyboardToolbar/Placeholderable/IQPlaceholderable.swift; sourceTree = ""; }; - 20831C4464FC6DB5647CA8FFB3BB782D /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; - 20A1B6CDC1CCF4DEFD740A6FF78D001B /* AssetManager+ImageURL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+ImageURL.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+ImageURL.swift"; sourceTree = ""; }; - 20FEFFB46CDB20A45D5D9381DA903496 /* RxRelay.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxRelay.modulemap; sourceTree = ""; }; - 20FFC6126E63DBE03B5555F2CEA45936 /* OIMGroupApplicationInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMGroupApplicationInfo.m; path = OpenIMSDK/Model/OIMGroupApplicationInfo.m; sourceTree = ""; }; - 2109F7F661446DA12643DCACFF4078C0 /* Core+PHAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+PHAsset.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+PHAsset.swift"; sourceTree = ""; }; - 212097E109C37ABABE45EE6C1CB93074 /* OIMMessageElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMMessageElem.m; path = OpenIMSDK/Model/OIMMessageElem.m; sourceTree = ""; }; - 2131626EC27604913E004ACB3CBC060A /* mapTo+RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "mapTo+RxCocoa.swift"; path = "Source/RxCocoa/mapTo+RxCocoa.swift"; sourceTree = ""; }; - 21951539AF1191589E265213E6B8D31C /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - 21AA7EE52A3DAD218EF3EAB7703979AB /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; - 21D531AE86A9BDBC117C3BE120B6E7E5 /* YBIBImageData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageData.m; path = YBImageBrowser/Image/YBIBImageData.m; sourceTree = ""; }; - 21DB69F87DC93861A4FEB14C6B788C7E /* PreviewVideoViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewVideoViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PreviewVideoViewCell.swift; sourceTree = ""; }; - 22363CA9E38F55410E8D888D617320B3 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; - 22391A5817E334075345521FE1174BED /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = ""; }; - 223F157AF2FE64BA22ABDDB993DFB6C2 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; - 227FD73B3C6B806CCAF3C3B7499D12D0 /* MapError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MapError.swift; path = Sources/MapError.swift; sourceTree = ""; }; + 2065605DBD09C2F4550B75E77F9B778F /* AlbumView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumView.swift; path = Sources/HXPHPicker/Picker/View/AlbumView.swift; sourceTree = ""; }; + 208AFEA3CC5DD10476B29311F5E8F3EE /* TimePeriodCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodCollection.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodCollection.swift; sourceTree = ""; }; + 208FBB9974C322A514DDB9CF05374E5E /* RxTableViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift; sourceTree = ""; }; + 20A89EBE355145B0F7D0CE86923C8686 /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; + 20DB58A377C820207F348BB5D7594CF2 /* YBImageBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YBImageBrowser-prefix.pch"; sourceTree = ""; }; + 213FF271A8C1EF4AFA83B16C94A7CD5E /* PrecompAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrecompAsset.swift; path = Sources/Private/Model/Assets/PrecompAsset.swift; sourceTree = ""; }; + 21539E4C77DD56C4E08819C238A77241 /* OIMFriendApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMFriendApplication.h; path = OpenIMSDK/Model/OIMFriendApplication.h; sourceTree = ""; }; + 216E0D99EA559AD8E578C6AC676FFCBE /* DDASLLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDASLLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDASLLogger.h; sourceTree = ""; }; + 217E00EF02173DE5AA3D621B58AD5EA7 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = ""; }; + 21AAE531B9EF7DB927D524FE45E5365C /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQInvocation.swift; sourceTree = ""; }; + 21EB64BE1424FD67CBFD60640E5AC630 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; + 21EF815B6C34644A35D6B92C9DF3DCEF /* OIMGroupApplicationInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMGroupApplicationInfo.h; path = OpenIMSDK/Model/OIMGroupApplicationInfo.h; sourceTree = ""; }; + 224EE27EF8A4CB6DE2A2994B3B4BA865 /* RxTextStorageDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextStorageDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift; sourceTree = ""; }; + 227239C8727C62367AF6079F3FDB9577 /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; + 227F5DE5D7F361C0109ECD6AD1FED581 /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = ""; }; + 2287FFA8D1569A799C7199DEACC54A2A /* KeychainWrapperSubscript.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainWrapperSubscript.swift; path = SwiftKeychainWrapper/KeychainWrapperSubscript.swift; sourceTree = ""; }; + 228A5909B168591161C6BFFF967721A4 /* HXPHPicker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HXPHPicker.swift; path = Sources/HXPHPicker/Core/HXPHPicker.swift; sourceTree = ""; }; 2290594F0DEEB3EE8019DFED02EF0E1B /* Pods-QuickLocation-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-QuickLocation-resources.sh"; sourceTree = ""; }; - 22AAC60424375432315859887EDB95E9 /* repeatWithBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = repeatWithBehavior.swift; path = Source/RxSwift/repeatWithBehavior.swift; sourceTree = ""; }; - 22ADD96CD00B989B7126ACA192406A98 /* NSObject+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx.swift"; path = "RxCocoa/Foundation/NSObject+Rx.swift"; sourceTree = ""; }; - 22B0FE7857A3947DF75F30B19BA05CBD /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = ""; }; - 22C59EA8496E114A956C1B762EB73B8A /* EpoxyModelStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelStorage.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelStorage.swift; sourceTree = ""; }; - 22EDB49EB35BB9C086E37ED89EAB052B /* YYImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YYImage.modulemap; sourceTree = ""; }; - 22F84748D6A7D4D5AC3266CA17FFD1F5 /* AMapUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapUtility.h; path = AMapFoundationKit.framework/Headers/AMapUtility.h; sourceTree = ""; }; - 2324FAB2BCAFFED67E845E6DD9A96D61 /* YBIBImageLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageLayout.h; path = YBImageBrowser/Image/YBIBImageLayout.h; sourceTree = ""; }; - 2355152919250DBBD5FD5A9E31F11464 /* PreCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift; sourceTree = ""; }; - 23627BEB011259D12B07A6DA62769D64 /* AlbumTitleViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleViewConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/AlbumTitleViewConfiguration.swift; sourceTree = ""; }; - 238EA027049C445CADBCD723D15850C9 /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; - 23B24E42476EAEB449B42C368E04FEBE /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = ""; }; - 23BCD448D0D59E19E3DE5D1D80437EB0 /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/PrimitiveSequence/Maybe.swift; sourceTree = ""; }; - 23DADD0A8F4BC93DE27A54C99980A205 /* Plugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Plugin.swift; path = Sources/Moya/Plugin.swift; sourceTree = ""; }; - 23F9CE86B59F74334043FA327497FA4A /* EditorToolOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorToolOptions.swift; path = Sources/HXPHPicker/Editor/Model/EditorToolOptions.swift; sourceTree = ""; }; - 244512DFD644D3AA431853F542C2A616 /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = ""; }; - 2445A2BFA4F1F72112D3E9B9BD1ADDE7 /* KeyframeGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeGroup.swift; path = Sources/Private/Model/Keyframes/KeyframeGroup.swift; sourceTree = ""; }; - 247A39E873C37C701BDF648B2D50C5EC /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - 249F08F366A61A80DBF012BB16BE82AC /* SetBehaviorsProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetBehaviorsProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetBehaviorsProviding.swift; sourceTree = ""; }; - 24CF5FE8FABF08B21AE1B4496D4FD182 /* TraitCollectionProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TraitCollectionProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/TraitCollectionProviding.swift; sourceTree = ""; }; - 24EB183736E04F3300474C4908E03098 /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; - 25285C5E626F30148926D9D6A6202443 /* PickerTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerTypes.swift; path = Sources/HXPHPicker/Picker/Model/PickerTypes.swift; sourceTree = ""; }; - 25786E146AAE30629FEFFFCD7FEF1C8A /* YBIBVideoCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoCell.h; path = Video/YBIBVideoCell.h; sourceTree = ""; }; - 25A588051320603C531C4D4D035FD277 /* PhotoPreviewVideoView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewVideoView.swift; path = Sources/HXPHPicker/Picker/View/PhotoPreviewVideoView.swift; sourceTree = ""; }; - 25C66D833F862144506D82243BC20CBC /* Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Driver.swift; path = RxCocoa/Traits/Driver/Driver.swift; sourceTree = ""; }; - 25DE73A1EA9F7ECF0E1D5E9F2897CA07 /* PhotoPreviewViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewViewController.swift; path = Sources/HXPHPicker/Picker/Controller/PhotoPreviewViewController.swift; sourceTree = ""; }; - 260BDB88A25661D414D0FB98126D2229 /* SDCycleScrollView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDCycleScrollView.release.xcconfig; sourceTree = ""; }; - 261B8297554CE4FE7CB1170B6603261D /* AMap3DMap.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMap3DMap.debug.xcconfig; sourceTree = ""; }; - 263CA5BE93AE4924560E96B53D32776E /* AMapGeoFenceRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceRegionObj.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceRegionObj.h; sourceTree = ""; }; - 2641DD06874437DB484DC2A833AACEDB /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = ""; }; - 2678FFFB05AC0FF8ABF1EAE1D51210C5 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = ""; }; - 2696085F8CF53F46F0711050C0A10E07 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - 26C805396EBE9A3676570EE86EDD4E85 /* Moya-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Moya-umbrella.h"; sourceTree = ""; }; - 26E7CB556326C9077DF63BEEB7B2E40E /* YBIBImageCell+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBImageCell+Internal.h"; path = "YBImageBrowser/Image/YBIBImageCell+Internal.h"; sourceTree = ""; }; - 26EE58E648FD163D54D97151C69A93BA /* TransformType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformType.swift; path = Sources/TransformType.swift; sourceTree = ""; }; - 270430691446D7F2AA48696D223B3B36 /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; - 2707006BD41B87DF0C15833B3D8A4253 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 27137F8A01D16088D332E2DBCE90D361 /* UIPickerView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIPickerView+Rx.swift"; path = "RxCocoa/iOS/UIPickerView+Rx.swift"; sourceTree = ""; }; - 2721B15D69AAC9EDC592D8D91DE15A30 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - 2724F7D5E46D3CB108BBF81954389D65 /* YBIBCollectionViewLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBCollectionViewLayout.m; path = YBImageBrowser/Base/YBIBCollectionViewLayout.m; sourceTree = ""; }; - 277586195FD85080AED690938D317998 /* RootAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RootAnimationLayer.swift; path = Sources/Private/RootAnimationLayer.swift; sourceTree = ""; }; - 27759D268EA3293ACE7824423B8230A2 /* CurrentFileNameHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentFileNameHelper.swift; path = Sources/CocoaLumberjackSwift/CurrentFileNameHelper.swift; sourceTree = ""; }; - 2778EBCEEC14C4833D44342D5C11AD81 /* RxSearchControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift; sourceTree = ""; }; - 27B83BBA92B0D0F145F36F867F55084C /* SolidCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift; sourceTree = ""; }; - 27C4EB466DCF1D0C56B87A1492131A17 /* OIMSimpleRequstInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSimpleRequstInfo.h; path = OpenIMSDK/Model/OIMSimpleRequstInfo.h; sourceTree = ""; }; - 27CFFE88BED57C1FE5BBB3011F19DBF3 /* EditorStickerTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerTextView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerTextView.swift; sourceTree = ""; }; - 27D9BE3D24E10967CFE1D61E94371D91 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 27E55D0F439ED92B9740583CD3291EC1 /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; - 27F811FC60FE7171767A66AB5F507804 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - 28028200CF5288C6709AF472B07A3E73 /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = ""; }; - 28504FCCD451928D39B76F37745A0206 /* DDLoggerNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDLoggerNames.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDLoggerNames.h; sourceTree = ""; }; - 285EA2B479EE8B45155F473C9D20EED7 /* CALayer+addAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+addAnimation.swift"; path = "Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"; sourceTree = ""; }; - 2860F4098A792B41F328813B0B8C63DE /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; sourceTree = ""; }; - 28D97C1931912760D88F8AEDC0081E77 /* YBIBAuxiliaryViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBAuxiliaryViewHandler.m; path = YBImageBrowser/AuxiliaryView/YBIBAuxiliaryViewHandler.m; sourceTree = ""; }; - 28DA339E778E6063A58C7ED7DB35705C /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; - 28E32AB0F1A47BA5A7A51B18B2079AB8 /* YBIBAnimatedTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBAnimatedTransition.m; path = YBImageBrowser/Base/YBIBAnimatedTransition.m; sourceTree = ""; }; - 291F235F7EF38C4F833B4A14B6C4236F /* EpoxyModelArrayBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelArrayBuilder.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift; sourceTree = ""; }; - 294F945132A96401D8BB6AF1EE6285E1 /* RxCocoa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxCocoa-dummy.m"; sourceTree = ""; }; - 29501204E1391BC59AB7AF310834F053 /* AnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/AnimatorNode.swift; sourceTree = ""; }; - 29C1F94D4278A162A285C44FE14DB4F6 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; path = PrivacyInfo.xcprivacy; sourceTree = ""; }; - 29D2B882480874F42D53FD7B196E67AC /* Editor+PhotoTools.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Editor+PhotoTools.swift"; path = "Sources/HXPHPicker/Editor/Util/Editor+PhotoTools.swift"; sourceTree = ""; }; - 29EC4402BC322A41C3AC32102A7AD878 /* RxDataSources.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxDataSources.modulemap; sourceTree = ""; }; - 29F796D6472EA6FC82B038C97ECF4785 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - 2A33292F139F4D03763C451D174D6627 /* NotificationCenter+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NotificationCenter+Rx.swift"; path = "RxCocoa/Foundation/NotificationCenter+Rx.swift"; sourceTree = ""; }; - 2A4FC0DEB2145AEA826609AB69FE096B /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = ""; }; - 2A687625895E5B7535DC57C8C7718D36 /* Picker+UIViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+UIViewController.swift"; path = "Sources/HXPHPicker/Picker/Extension/Picker+UIViewController.swift"; sourceTree = ""; }; - 2A744FA8696B38DECAED24C7D0829A18 /* PathOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift; sourceTree = ""; }; - 2A75DA3631019C8E174047B15B8ABDEF /* ImageLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageLayer.swift; path = Sources/Private/CoreAnimation/Layers/ImageLayer.swift; sourceTree = ""; }; - 2AC04D79457374349B95B0B732D07A31 /* KeypathSearchable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeypathSearchable.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift; sourceTree = ""; }; - 2ACC2D2851101B7855064121BBFD5564 /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = ""; }; - 2ADF97EACA948B2C7006B53AEB1FEF8E /* UIButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Rx.swift"; path = "RxCocoa/iOS/UIButton+Rx.swift"; sourceTree = ""; }; + 22A0CAC012E06B7CA4430A19FA504471 /* AMap.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMap.bundle; path = MAMapKit.framework/AMap.bundle; sourceTree = ""; }; + 22CFA28D77DC2B2A44D160C4087AC3B7 /* Bundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bundle.swift; path = Sources/Private/Model/Extensions/Bundle.swift; sourceTree = ""; }; + 22E6C6B2624EC3C4CEDDDE1149B64473 /* ViewDifferentiatorProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewDifferentiatorProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewDifferentiatorProviding.swift; sourceTree = ""; }; + 22F35B08FE80D620A4E10C301B3181A6 /* MAShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAShape.h; path = MAMapKit.framework/Headers/MAShape.h; sourceTree = ""; }; + 231246BF2A5913AF9CF769DF47AB7806 /* curry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = curry.swift; path = Source/Tools/curry.swift; sourceTree = ""; }; + 233D806C4FEE853AA2DB63AC1F837D4D /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + 238363420B18595D15E9E84CC3740DB3 /* DDLogMessageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDLogMessageFormat.swift; path = Sources/CocoaLumberjackSwift/DDLogMessageFormat.swift; sourceTree = ""; }; + 2393D8EC822992E154A2A546A2FA3CE3 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + 23A4440664319022C5085EDC5E2C702D /* YBIBCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBCollectionView.m; path = YBImageBrowser/Base/YBIBCollectionView.m; sourceTree = ""; }; + 23C5E159C4F71F067E60F69603441421 /* YBIBPhotoAlbumManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBPhotoAlbumManager.m; path = YBImageBrowser/Helper/YBIBPhotoAlbumManager.m; sourceTree = ""; }; + 240416C6EF8122892481AB95ECC4CDC3 /* SGTorch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGTorch.h; path = SGQRCode/Torch/SGTorch.h; sourceTree = ""; }; + 2406927749C80BFC19A506CF84AFFDC5 /* WebPSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebPSerializer.swift; path = Sources/WebPSerializer.swift; sourceTree = ""; }; + 240B3E67D8767688B64A581BA5949261 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; + 242D474AEFBC6106539C37EB2710B154 /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = ""; }; + 245230D60496C156AA01F11BF0F5812A /* SwiftDate-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDate-umbrella.h"; sourceTree = ""; }; + 2487C96BE7C199B1C2B818C214ACE2A1 /* VideoEditResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditResult.swift; path = Sources/HXPHPicker/Editor/VideoEditResult.swift; sourceTree = ""; }; + 248B06013737714E8413242881D097C9 /* ShapeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeTransform.swift; path = Sources/Private/Model/ShapeItems/ShapeTransform.swift; sourceTree = ""; }; + 24A12D238EE2AFDFD11A5BF137C767AA /* Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Driver.swift; path = RxCocoa/Traits/Driver/Driver.swift; sourceTree = ""; }; + 24B4AEB38B8B095C56E839AEF1BCB6FB /* BaseCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseCompositionLayer.swift; path = Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift; sourceTree = ""; }; + 24D2D7C0AE2ECF3BEFD1763BBEF314B8 /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = ""; }; + 24FC9168D387E6F56C45A5E422ED6057 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; + 2506741F9F50189A7DD54A4F356E1C0B /* TextAnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimatorNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift; sourceTree = ""; }; + 2529DAC0D802063EA30E377C208C274D /* GTCommonSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GTCommonSDK-xcframeworks.sh"; sourceTree = ""; }; + 254F53AF9EDB6FBC8B5E1899B6E3CFB4 /* SGPermissionCamera.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGPermissionCamera.h; path = SGQRCode/Permission/SGPermissionCamera.h; sourceTree = ""; }; + 258C47A66291BF50B67D2D63D3373BE1 /* SwiftKeychainWrapper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftKeychainWrapper-prefix.pch"; sourceTree = ""; }; + 259B8BB391902490BE6CB75B27D954D4 /* MAOfflineMapViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMapViewController.h; path = MAMapKit.framework/Headers/MAOfflineMapViewController.h; sourceTree = ""; }; + 25B0AFDE6F490BD489C84DE9AB7B623F /* OIMManager+Connection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Connection.m"; path = "OpenIMSDK/Interface/OIMManager+Connection.m"; sourceTree = ""; }; + 263E0995DC5FBCEC84D7B86C4F00115D /* Task.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Task.swift; path = Sources/Moya/Task.swift; sourceTree = ""; }; + 2679C547D6616063B0D9FC6E558EBA1C /* Picker+PhotoAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+PhotoAsset.swift"; path = "Sources/HXPHPicker/Picker/Extension/Picker+PhotoAsset.swift"; sourceTree = ""; }; + 26A79D15CF7E56AB1249C65515C36E4B /* YYImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYImage.m; path = YYImage/YYImage.m; sourceTree = ""; }; + 26B386FB80AD4FBC1955D5C4F245DDFD /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; + 26B525A296261CA1942BF343253871F1 /* OIMManager+Message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Message.h"; path = "OpenIMSDK/Interface/OIMManager+Message.h"; sourceTree = ""; }; + 26D99830BD02D5E12946A9993FD9B433 /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/PrimitiveSequence/Completable.swift; sourceTree = ""; }; + 26E12650ACBFCF10361CA3BE989938D9 /* OIMAtElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMAtElem.m; path = OpenIMSDK/Model/OIMAtElem.m; sourceTree = ""; }; + 272F9E6947D5DFE5145771307773F9E9 /* YBIBImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageScrollView.h; path = YBImageBrowser/Image/YBIBImageScrollView.h; sourceTree = ""; }; + 2753B5C58645A09D290E600E3BC9DA7F /* MAHeatMapVectorOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlayRender.h; path = MAMapKit.framework/Headers/MAHeatMapVectorOverlayRender.h; sourceTree = ""; }; + 275C9C22C6613394FF56DA407F7A0984 /* MACustomBuildingOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlay.h; path = MAMapKit.framework/Headers/MACustomBuildingOverlay.h; sourceTree = ""; }; + 277192D403211FA10EEAC643C35570AD /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; path = PrivacyInfo.xcprivacy; sourceTree = ""; }; + 2779AC1EA6378DFB55EC94CB2A921AEF /* UISearchBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchBar+Rx.swift"; path = "RxCocoa/iOS/UISearchBar+Rx.swift"; sourceTree = ""; }; + 278619F364243280567A6DC8713CF090 /* MACircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircle.h; path = MAMapKit.framework/Headers/MACircle.h; sourceTree = ""; }; + 27A43B258704D27FDBD3E9FF44A51207 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; + 27AAEC8EEACDCAE86C246C18B522A943 /* SGPermissionCamera.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGPermissionCamera.m; path = SGQRCode/Permission/SGPermissionCamera.m; sourceTree = ""; }; + 27CB1D6F3889BFEDD86BF0A7F0C55EFB /* AssetManager+AVAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+AVAsset.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+AVAsset.swift"; sourceTree = ""; }; + 27DD104205E990BA251147A8755AEFCE /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = ""; }; + 27E062A58C2152A34289C191C1908410 /* HXPHPicker-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HXPHPicker-umbrella.h"; sourceTree = ""; }; + 27F320304CFB5F16992D6434DE4E65B7 /* DDTTYLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDTTYLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDTTYLogger.h; sourceTree = ""; }; + 27FBE8F4C6D9F3D5E81384DF8CE8969F /* AMapSearchError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchError.h; path = AMapSearchKit.framework/Headers/AMapSearchError.h; sourceTree = ""; }; + 284AC5B340F1DF3743C872CE02EE8A20 /* IQKeyboardToolbarManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.release.xcconfig; sourceTree = ""; }; + 2854C80D6EF7D3B7B82AD9C4ADC0FD64 /* IQKeyboardCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.debug.xcconfig; sourceTree = ""; }; + 28853C4F1F0BE8910FC831A9312857F8 /* EmptyViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EmptyViewConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/EmptyViewConfiguration.swift; sourceTree = ""; }; + 289FCFE3D6DDD65B8122E6130BA5048A /* DDASLLogCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDASLLogCapture.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDASLLogCapture.h; sourceTree = ""; }; + 28B010A2146BDC61697A76663AF9803C /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQTitleBarButtonItem.swift; sourceTree = ""; }; + 28BE02DA192D2F9168548C9F3E648036 /* SGScanCodeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGScanCodeDelegate.h; path = SGQRCode/QRCode/SGScanCodeDelegate.h; sourceTree = ""; }; + 28BE9C4C4FD97745A47638677BEF26C1 /* YBIBLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBLoadingView.m; path = YBImageBrowser/AuxiliaryView/YBIBLoadingView.m; sourceTree = ""; }; + 28EC7434D8007BC07802B27B8D6FB1A8 /* UIView+Parent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Parent.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift"; sourceTree = ""; }; + 2911308F19328BC6C09F92A3C6D1A163 /* ObjectMapper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ObjectMapper.release.xcconfig; sourceTree = ""; }; + 294772D1AC56A8AFBAFF4406865E8529 /* OIMFaceElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMFaceElem.m; path = OpenIMSDK/Model/OIMFaceElem.m; sourceTree = ""; }; + 2960647473749EA8AEED48FB2BE7C79A /* GradientStroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStroke.swift; path = Sources/Private/Model/ShapeItems/GradientStroke.swift; sourceTree = ""; }; + 2994D8B96A2BDBA3F7FDC7E3829339CC /* Date+Compare.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Compare.swift"; path = "Sources/SwiftDate/Date/Date+Compare.swift"; sourceTree = ""; }; + 29B8A8985447E4E7823241EE353B3F48 /* SGQRCode.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SGQRCode.debug.xcconfig; sourceTree = ""; }; + 29DD63712BF5682DFBF582E1766154EC /* IQKeyboardNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-umbrella.h"; sourceTree = ""; }; + 2A02BEE14F8A62CDC43C3565AB0E2869 /* SGQRCode-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SGQRCode-dummy.m"; sourceTree = ""; }; + 2A0F966CE73BB9FB937DE773DED561BE /* YYImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYImage.debug.xcconfig; sourceTree = ""; }; + 2A115E0B3FC9B65949A9542E9CDB7BDF /* YYImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YYImage-umbrella.h"; sourceTree = ""; }; + 2A6CF4F32816B8F9BEFB21EC84C87C8A /* AMapLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationManager.h; path = AMapLocationKit.framework/Headers/AMapLocationManager.h; sourceTree = ""; }; + 2A9598965144DCAD57DA3C09E9D9DF65 /* SDImageFramePool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFramePool.h; path = SDWebImage/Private/SDImageFramePool.h; sourceTree = ""; }; + 2AA67AD732C1703650AD66B7B46B75A3 /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; sourceTree = ""; }; + 2ABDDD2F889B1861B14D2F1D61F16BA8 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + 2AD1A0DA62E38A2270776CBC8949C349 /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; + 2B0CEDCECE8F6A5932A40B0EE599F5F8 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; 2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJExtension; path = MJExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2BD48D1D20B426CEAFFB0CD0AA66CB69 /* AMapLocationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationKit.h; path = AMapLocationKit.framework/Headers/AMapLocationKit.h; sourceTree = ""; }; - 2C298B2A388307DD5D979FAA27BF366A /* UIView+ParentObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ParentObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift"; sourceTree = ""; }; - 2C321D034B37C49F688AD559C13A62F5 /* IQKeyboardNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-prefix.pch"; sourceTree = ""; }; - 2C37D8F8F5792C0FBB119534DD5A5838 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 2C6A602E36472CC2DC2327225B04D330 /* DiffableSection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiffableSection.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/DiffableSection.swift; sourceTree = ""; }; - 2C6E0BBACCC2ABD7E1753510C4D994B7 /* RxPickerViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift; sourceTree = ""; }; - 2C7BD137F313AB234AA39F9298734472 /* GYSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GYSDK-xcframeworks.sh"; sourceTree = ""; }; - 2CA207F1841764F2BDB2505E309C0D98 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = ""; }; - 2D48CB3120F622B1DC4E9B3AF51D0A7F /* UISlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISlider+Rx.swift"; path = "RxCocoa/iOS/UISlider+Rx.swift"; sourceTree = ""; }; - 2D6F3E223EDDA7BB3F9C466B9984E79C /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; - 2D7480D6550C594F75C2C72FDFB92E91 /* IQKeyboardConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardConstants.swift; path = IQKeyboardCore/Classes/Constants/IQKeyboardConstants.swift; sourceTree = ""; }; - 2D85C068680B34A7EEFF48F7268DD710 /* Glyph.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Glyph.swift; path = Sources/Private/Model/Text/Glyph.swift; sourceTree = ""; }; - 2D91FA48911FBC42CEFF73EEF6FBC3B2 /* SwiftDate-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftDate-Info.plist"; sourceTree = ""; }; - 2DABBD081B5C4DA063F4DB121147E586 /* StrokeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift; sourceTree = ""; }; - 2DB115166094A8D48E376C2F668892BE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextView/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 2DB8DC9169D71A0D31807029AF82F168 /* UITextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Rx.swift"; path = "RxCocoa/iOS/UITextView+Rx.swift"; sourceTree = ""; }; - 2DBF29A5234553C463B88860B18F477F /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/Features/RequestInterceptor.swift; sourceTree = ""; }; - 2DD95C19D05E5141AD09F08757FE2699 /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = ""; }; - 2DE4D17C8433A44E4298C409C0D34F11 /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = ""; }; - 2E084374ABF7B54C419FC9A80C6AA656 /* SGPermissionCamera.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGPermissionCamera.h; path = SGQRCode/Permission/SGPermissionCamera.h; sourceTree = ""; }; - 2E18007B9B2D27C7163D2478DCA136F4 /* YBIBDefaultWebImageMediator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBDefaultWebImageMediator.m; path = YBImageBrowser/WebImageMediator/YBIBDefaultWebImageMediator.m; sourceTree = ""; }; - 2E2DA381D265C5A84E4274615BD3C37F /* RxSwiftExt-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwiftExt-prefix.pch"; sourceTree = ""; }; - 2E60DA40527A43576DB5B9BD90EF96BE /* ViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewType.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ViewType.swift; sourceTree = ""; }; - 2EC2049C823875676B5A5A9A7CF7CCCA /* Collection+Diff.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Collection+Diff.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Collection+Diff.swift"; sourceTree = ""; }; - 2ED6C4C1077B91FD00A25B4E57EA4C75 /* PhotoCroppingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCroppingConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/PhotoCroppingConfiguration.swift; sourceTree = ""; }; - 2F1EE42D6061CE2501B5E1A22B55D08D /* lossless_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse41.c; path = src/dsp/lossless_sse41.c; sourceTree = ""; }; - 2F523AE274FF96B23B5AE0188D46239B /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; - 2F5E0EBA29568C35DF864FAF6CBA4DD6 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; - 2F630C8FCE62218432F68271134AD87F /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = ""; }; - 2F65A5161CB9361350076FDB1F6C69D5 /* PhotoAsset+Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoAsset+Request.swift"; path = "Sources/HXPHPicker/Picker/Model/PhotoAsset+Request.swift"; sourceTree = ""; }; - 2F6640032ED9681A09BA524C5F3EECC6 /* CGImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGImage+WebP.m"; path = "Sources/KingfisherWebP-ObjC/CGImage+WebP.m"; sourceTree = ""; }; - 2F762DB144E20011CDA76B1FFE2F011D /* SGQRCode-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SGQRCode-Info.plist"; sourceTree = ""; }; - 2FA02D6C631F6C170C069CABD449F276 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; - 2FB634BBC441E1A91C3B4D8D27BFF7BD /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - 2FC7510690F9C1195797935F509A996D /* LottieAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationView.swift; path = Sources/Public/Animation/LottieAnimationView.swift; sourceTree = ""; }; + 2B6298FFD801309A5E645D5E694C08F2 /* _RXDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXDelegateProxy.m; path = RxCocoa/Runtime/_RXDelegateProxy.m; sourceTree = ""; }; + 2BD8508309633303254E1D0D64DC2DF9 /* MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtension.h; path = MJExtension/MJExtension.h; sourceTree = ""; }; + 2BDC74945EC8BC04AD74B2B1BE2EB72B /* Shape.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Shape.swift; path = Sources/Private/Model/ShapeItems/Shape.swift; sourceTree = ""; }; + 2BEE403D1E699A5CEDB82263240DDC64 /* EditorToolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorToolView.swift; path = Sources/HXPHPicker/Editor/View/EditorToolView.swift; sourceTree = ""; }; + 2C03FDAE6EE74E76EBA2288AEB50A1EA /* Observable+Alias.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Alias.swift"; path = "Source/Tools/Observable+Alias.swift"; sourceTree = ""; }; + 2CB958102E3830756508C5AE67B201BE /* OIMDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMDefine.h; path = OpenIMSDK/Utils/OIMDefine.h; sourceTree = ""; }; + 2CC755210EE7CF0DEB9FD2F3DBDE1873 /* FrameUnsubscribe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FrameUnsubscribe.swift; path = Source/FrameUnsubscribe.swift; sourceTree = ""; }; + 2CDE862D7BF7002E18408BEC71411A53 /* RxDataSources-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxDataSources-dummy.m"; sourceTree = ""; }; + 2CE9DBE9C323FFDFD3869DAF5A13CFF9 /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = ""; }; + 2CF7AFA4E3D64A4BA4D1B1B57212C941 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; + 2D5A618038C5542D4884F2ADAEB84259 /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = ""; }; + 2D5B12012F6233B5D8F331C901A7869C /* AnimationConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationConfiguration.swift; path = Sources/RxDataSources/AnimationConfiguration.swift; sourceTree = ""; }; + 2D5E0EC291F4571118276A49CD3A886D /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Sources/Moya/MultipartFormData.swift; sourceTree = ""; }; + 2D7D7A97A7089AEDDA405B472981349F /* MJFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJFoundation.h; path = MJExtension/MJFoundation.h; sourceTree = ""; }; + 2D95A95805D665C143687E0AF8794CAC /* YBIBScreenRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBScreenRotationHandler.h; path = YBImageBrowser/Base/YBIBScreenRotationHandler.h; sourceTree = ""; }; + 2DD7CB878C4C7757197E5D41FE20B750 /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = ""; }; + 2DFB101CA626227DCFB08754A265952E /* ItemPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemPath.swift; path = Sources/Differentiator/ItemPath.swift; sourceTree = ""; }; + 2E17D7BAA52A7884B7F49C0C06778BF7 /* YBIBDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBDataProtocol.h; path = YBImageBrowser/Protocol/YBIBDataProtocol.h; sourceTree = ""; }; + 2E2140737C3E93134F8FDB59AB754F8E /* RectNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RectNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift; sourceTree = ""; }; + 2E4D9D32F645C0F77FE2B2594942BD5A /* Core+UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIColor.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIColor.swift"; sourceTree = ""; }; + 2E82BF932F82DDF213C52EC34483CFB3 /* UISegmentedControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISegmentedControl+Rx.swift"; path = "RxCocoa/iOS/UISegmentedControl+Rx.swift"; sourceTree = ""; }; + 2EBE4B32A33B53EEC1777BCF15861D1E /* SwiftyUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyUserDefaults-dummy.m"; sourceTree = ""; }; + 2ECDE574BC8FD1E32B99075B12144063 /* not.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = not.swift; path = Source/RxSwift/not.swift; sourceTree = ""; }; + 2EF18E46D35DFA8EA15926BDEF825725 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; + 2EFECD383B69C269278B54B4C8841167 /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapSearchKit.framework; sourceTree = ""; }; + 2F2C087558ADE98640782FDA625F779D /* Differentiator-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Differentiator-umbrella.h"; sourceTree = ""; }; + 2F5FB553F91C4DAAD1EEBAB85DD87170 /* IQKeyboardNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardNotification-dummy.m"; sourceTree = ""; }; + 2F63AC006B2627EE41E02B5552FA3FDC /* ObservableConvertibleType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift"; sourceTree = ""; }; + 2F9DB03149250DF330B6D48C0E61D964 /* CallbackContextEpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackContextEpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/CallbackContextEpoxyModeled.swift; sourceTree = ""; }; + 2FA9E6EBAB2A16F4CB0E52505E665B07 /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = ""; }; 2FC7D0890A2DCAA85AFA92E9014FBB85 /* KingfisherWebP */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = KingfisherWebP; path = KingfisherWebP.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 301C9D054BD58240F500E205344E5E3C /* SwiftKeychainWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwiftKeychainWrapper.h; path = SwiftKeychainWrapper/SwiftKeychainWrapper.h; sourceTree = ""; }; - 302F5D48423E1570B6919F852C173899 /* ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist"; sourceTree = ""; }; - 3031EF8A675A49AB3D585F9F2A638A62 /* OIMGroupMemberInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMGroupMemberInfo.m; path = OpenIMSDK/Model/OIMGroupMemberInfo.m; sourceTree = ""; }; - 3046218CAE71E06503DEE56FE37F2119 /* MarqueeLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MarqueeLabel-dummy.m"; sourceTree = ""; }; - 3081092804875B0A054049768857C958 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - 309006C332A939D8335F54EDC23F48A6 /* RxCocoa-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-umbrella.h"; sourceTree = ""; }; - 3099CDBCAB77ED24E860C30FE72F7E92 /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/Features/ServerTrustEvaluation.swift; sourceTree = ""; }; - 30A2150EA6103CF85276C506513884F1 /* GYSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GYSDK.release.xcconfig; sourceTree = ""; }; - 30AA8EAC742EC556E68712FF9D8F74D3 /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = ""; }; - 30ABC2B69AA7FDD403BBA66A483AA50B /* DashPattern.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DashPattern.swift; path = Sources/Private/Model/Objects/DashPattern.swift; sourceTree = ""; }; - 30BB18DD5E18152570847746CA122253 /* HXPHPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HXPHPicker-dummy.m"; sourceTree = ""; }; - 30BCDBE3285AAC94EE2E1B2D935E8DCD /* OIMManager+Friend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Friend.m"; path = "OpenIMSDK/Interface/OIMManager+Friend.m"; sourceTree = ""; }; - 30D98D1A29F5DC6D072CD99F8B268931 /* YBIBContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBContainerView.h; path = YBImageBrowser/Base/YBIBContainerView.h; sourceTree = ""; }; - 30EAD96D230B4FD77745E03EFA29E7D5 /* KingfisherWebP-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KingfisherWebP-prefix.pch"; sourceTree = ""; }; - 30EC231840F6732A56ACD926EEC9A53D /* UITextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+Rx.swift"; path = "RxCocoa/iOS/UITextField+Rx.swift"; sourceTree = ""; }; - 3189E630103A74A0218C59894B1E16A8 /* BaseConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseConfiguration.swift; path = Sources/HXPHPicker/Core/Config/BaseConfiguration.swift; sourceTree = ""; }; - 3189E69539A5AFB420AA7887844BAD4F /* ViewDifferentiatorProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewDifferentiatorProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewDifferentiatorProviding.swift; sourceTree = ""; }; - 31C067D5AA45DE8118D9B9C303CDF1C5 /* PointValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PointValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift; sourceTree = ""; }; - 31C67847AA0011E797287DE347F30612 /* YBIBImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageCache.h; path = YBImageBrowser/Image/YBIBImageCache.h; sourceTree = ""; }; - 31E78FA0D84F351E9823CE5E2062575E /* toSortedArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = toSortedArray.swift; path = Source/RxSwift/toSortedArray.swift; sourceTree = ""; }; - 32262A01385AA280BD0BCCC5C70A0237 /* YYImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYImage.h; path = YYImage/YYImage.h; sourceTree = ""; }; - 322A857D4ABEF831EE7D2DB55B47440C /* AMapSearchVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchVersion.h; path = AMapSearchKit.framework/Headers/AMapSearchVersion.h; sourceTree = ""; }; - 326281CC28396A68E89160486CB6C8EF /* bufferWithTrigger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = bufferWithTrigger.swift; path = Source/RxSwift/bufferWithTrigger.swift; sourceTree = ""; }; - 32FEFE432FBEFC662E16C8BDE4DA9817 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - 3315C38767856D68C851A907CE93A414 /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; - 3341A7FC89EF4648B74656D78B47F6E2 /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = ""; }; - 3359376B97F44EDE8A748CC630F6B455 /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; - 3363755C6A144FD04CC1F79B7234245C /* unwrap+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "unwrap+SharedSequence.swift"; path = "Source/RxCocoa/unwrap+SharedSequence.swift"; sourceTree = ""; }; - 3371BF35BC76F7D9FEB483B31F4A8082 /* UIGestureRecognizer+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIGestureRecognizer+Rx.swift"; path = "RxCocoa/iOS/UIGestureRecognizer+Rx.swift"; sourceTree = ""; }; - 3372B0460260FFF150042F100790D87B /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = ""; }; - 33DAC44C2ADAB17A1E18E59C3363BA98 /* PathElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathElement.swift; path = Sources/Private/Utility/Primitives/PathElement.swift; sourceTree = ""; }; - 33E53F7946D28A4A15CE8D0B0AF85E2C /* DDDispatchQueueLogFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDDispatchQueueLogFormatter.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDDispatchQueueLogFormatter.h; sourceTree = ""; }; - 33ED4054AFA9102DE2DFF8413FBF3767 /* Core+CALayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+CALayer.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+CALayer.swift"; sourceTree = ""; }; - 340B01518155A1C6DF9490C3B5583041 /* Trim.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Trim.swift; path = Sources/Private/Model/ShapeItems/Trim.swift; sourceTree = ""; }; - 342385D452E45822DD7ECD2003E65B56 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; - 3439F956E2BEC0F71B3AC96FAE151B38 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; - 344CE732EC91350D560B03E4C413A059 /* SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUIView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/SwiftUIView.swift; sourceTree = ""; }; - 345CFF4C2DE56AFB5B6B340E3433F8F5 /* Optional+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Optional+Extensions.swift"; path = "Sources/Differentiator/Optional+Extensions.swift"; sourceTree = ""; }; - 346BF7588267CADD317DE1D52AD7134D /* EditorStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerView.swift; sourceTree = ""; }; - 34B31BD1C43D0EDD718C40AF38280324 /* OIMLocationElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMLocationElem.m; path = OpenIMSDK/Model/OIMLocationElem.m; sourceTree = ""; }; - 34C85D236A09B50BBAE08B7FB20C1142 /* IQScrollViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQScrollViewConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift; sourceTree = ""; }; - 350390ECD2B359290A8084CB7DDCEF31 /* NodePropertyMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodePropertyMap.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift; sourceTree = ""; }; - 35375E5ADCE5DCF4EBBD0DD0B80966E4 /* SGPermissionPhoto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGPermissionPhoto.h; path = SGQRCode/Permission/SGPermissionPhoto.h; sourceTree = ""; }; - 355C2A9EBE4A9B292FB4090BC017E1E8 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 356B08F72A46EBDA220703321CE1814C /* UIRefreshControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRefreshControl+Rx.swift"; path = "RxCocoa/iOS/UIRefreshControl+Rx.swift"; sourceTree = ""; }; - 35940441E1F35674BCA1B41D098A3ED3 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - 35ADFB58A321E02490B12260E9A6DC63 /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = ""; }; - 35B2495153788DD6EBBE5BF78859D1A2 /* Archive+Helpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Helpers.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Helpers.swift"; sourceTree = ""; }; - 35D0028F706E6F2DD1BBA09C9DD8E405 /* AnyEpoxyModelProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEpoxyModelProperty.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/AnyEpoxyModelProperty.swift; sourceTree = ""; }; - 35E8846F57F00F87FD95FD897542C502 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = ""; }; - 36018657F97ACBD41941D6142C29AED7 /* SwiftyUserDefaults-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftyUserDefaults-Info.plist"; sourceTree = ""; }; - 36203684131055DB499F60D39CE2F9CA /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 36609CDD2BC9353598397AC9D8CB42AA /* sharpyuv_dsp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_dsp.c; path = sharpyuv/sharpyuv_dsp.c; sourceTree = ""; }; - 366510E521C9064578CB795725F0EF55 /* YYAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYAnimatedImageView.m; path = YYImage/YYAnimatedImageView.m; sourceTree = ""; }; - 3672AB437DFA2D3DB0B46CE5363FFC21 /* Fill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Fill.swift; path = Sources/Private/Model/ShapeItems/Fill.swift; sourceTree = ""; }; - 36CF504BACFF929BC4D8BACB9C800E9F /* MainThreadAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainThreadAnimationLayer.swift; path = Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift; sourceTree = ""; }; - 36E652E445F8CECC432D298A13A78229 /* OIMGCDMulticastDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMGCDMulticastDelegate.m; path = OpenIMSDK/Callbacker/OIMGCDMulticastDelegate.m; sourceTree = ""; }; - 36F5425BDC1B6DC62C60458D483CDA77 /* CachedImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedImageProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift; sourceTree = ""; }; - 3702CCA67B68183FAC858084EE553452 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 37195C83073D00C327F9B6C8E49E6096 /* RxPickerViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift; sourceTree = ""; }; - 371C690B36365A3FC898E515449C2217 /* SwiftDate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDate.release.xcconfig; sourceTree = ""; }; - 3735BF48C165F1FF3722190A8D76CEAB /* ViewProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewProviding.swift; sourceTree = ""; }; + 2FC8DE6CE3CC887158E8DC8331DFDB39 /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = ""; }; + 2FD132A96BC176A0BD3C8AB88344FAC5 /* ignoreErrors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ignoreErrors.swift; path = Source/RxSwift/ignoreErrors.swift; sourceTree = ""; }; + 2FD7EEBE586F6B453B12A099DEC36BF7 /* SGQRCodeLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGQRCodeLog.m; path = SGQRCode/SGQRCodeLog.m; sourceTree = ""; }; + 2FE035ECA7BD09E6EF69413B6CB12ACB /* StrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift; sourceTree = ""; }; + 2FE743B0489172B9D8AFCA90B825A0C6 /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = ""; }; + 2FFC90957F5D67E24F21D774D7AA39C2 /* Documentation.docc */ = {isa = PBXFileReference; includeInIndex = 1; name = Documentation.docc; path = Sources/Documentation.docc; sourceTree = ""; }; + 2FFD6FB05FFB92E52545C479B4BFCF7C /* SDCycleScrollView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDCycleScrollView.debug.xcconfig; sourceTree = ""; }; + 306934A83C5EFAA04DB020939FC11FD0 /* MAOverlayPathRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayPathRenderer.h; path = MAMapKit.framework/Headers/MAOverlayPathRenderer.h; sourceTree = ""; }; + 30BD85190BA6619C60F905C8C99773A9 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + 30CCA1EB71E8556A17A5DB3D0EF72902 /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = ""; }; + 30D9D5041CB0B73D214303A39FE8ADAB /* FramePingReq.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FramePingReq.swift; path = Source/FramePingReq.swift; sourceTree = ""; }; + 31095D3E6FF883967D59CFEE2575C384 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; + 310A752EAADFC795CC0A69824946DC22 /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; + 312BAA0DB116CC685C2FA70D3B0E3B3C /* AnimatorNodeDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNodeDebugging.swift; path = Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift; sourceTree = ""; }; + 31391E8B55977047175BC0FA348319BA /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; + 316B60AE42434791E20A83CEC6A09383 /* CocoaLumberjack-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaLumberjack-umbrella.h"; sourceTree = ""; }; + 319D35D1874FB0C1965D7307152759D2 /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; + 31A4A6EECE7B81CAF7FDDD1978EE7249 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = ""; }; + 31B8537D70EEE6E1BCF41B5917CDDC13 /* OIMManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMManager.m; path = OpenIMSDK/Interface/OIMManager.m; sourceTree = ""; }; + 31C046C0CC4193B0A2A553D90BB92F7F /* CGColor+RGB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGColor+RGB.swift"; path = "Sources/Private/Utility/Extensions/CGColor+RGB.swift"; sourceTree = ""; }; + 31F9C25C7025E7B07803B95DD09EB95F /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; + 322E4310DE8158FCAE06CF313CB5D549 /* MqttConnectProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttConnectProperties.swift; path = Source/MqttConnectProperties.swift; sourceTree = ""; }; + 323F33641A0EBD63B2A4092E2A400D62 /* MAMultiColoredPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiColoredPolylineRenderer.h; path = MAMapKit.framework/Headers/MAMultiColoredPolylineRenderer.h; sourceTree = ""; }; + 325E7C92D696471576D9735C82973FFD /* Region.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Region.swift; path = Sources/SwiftDate/DateInRegion/Region.swift; sourceTree = ""; }; + 328666E1FE05310AC0A5D3D31B1E08E1 /* RxCollectionViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift; sourceTree = ""; }; + 32898454CB13100812704D30105A0D45 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; + 328DDF3378405C46687D785CD170BBE8 /* MAArc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArc.h; path = MAMapKit.framework/Headers/MAArc.h; sourceTree = ""; }; + 32D89F076C7EB0BF35FCEAEE0CADD189 /* YBImageBrowserDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBImageBrowserDataSource.h; path = YBImageBrowser/Protocol/YBImageBrowserDataSource.h; sourceTree = ""; }; + 33019DB9E82E9B11DA3C4C5B100E7390 /* TransformOperators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformOperators.swift; path = Sources/TransformOperators.swift; sourceTree = ""; }; + 3333FB4826A1B7E11CD9D053ECCD0B71 /* StyledView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyledView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/StyledView.swift; sourceTree = ""; }; + 33480720859FB80422F18693CD711143 /* PhotoPickerViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPickerViewCell.swift; sourceTree = ""; }; + 335078A0CED7AAD0119A29BAF4421016 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; + 3353B782D463177D03DE0F388380825C /* FrameConnAck.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FrameConnAck.swift; path = Source/FrameConnAck.swift; sourceTree = ""; }; + 335488488BA5012989636955BBCB8F05 /* SDCycleScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCycleScrollView.m; path = SDCycleScrollView/Lib/SDCycleScrollView/SDCycleScrollView.m; sourceTree = ""; }; + 3393DA8B4838F6ACE600A7599089C08E /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; + 3399796C15028FAAB7F429D5AEE0D825 /* PhotoAsset+URL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoAsset+URL.swift"; path = "Sources/HXPHPicker/Picker/Model/PhotoAsset+URL.swift"; sourceTree = ""; }; + 33A714CAD18FD98B82C934FCD845F5A4 /* OIMManager+Friend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Friend.m"; path = "OpenIMSDK/Interface/OIMManager+Friend.m"; sourceTree = ""; }; + 33B78742EEB2B26C6433B045E4C130E7 /* SDCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCollectionViewCell.m; path = SDCycleScrollView/Lib/SDCycleScrollView/SDCollectionViewCell.m; sourceTree = ""; }; + 33F3EFA42D26365BF6A13F0710A58980 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; + 33F42C258DDB2E31077B9DE98F72F3B4 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; + 3419BDD44F6743C4AC46FA04B2350FAF /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + 3419D2C8671536D5EF4FAFBBECE79EE0 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; + 341EC2C4A70106EB67DB74B8C4440046 /* MqttCocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MqttCocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; + 34853EDCAAF81DB2B6643A784E02B2A3 /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = ""; }; + 3486E48D7F4ECF13A667832E910CCC60 /* OIMFaceElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMFaceElem.h; path = OpenIMSDK/Model/OIMFaceElem.h; sourceTree = ""; }; + 34C7C1820ED663FD4EDC639404C09D55 /* EditorChartletView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorChartletView.swift; path = Sources/HXPHPicker/Editor/View/EditorChartletView.swift; sourceTree = ""; }; + 34D94319150FBBDA5DBC6B33CE2A3F42 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardManagerSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 34FD978A375670AC41396D2A0C366330 /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = ""; }; + 35095A89B3C9A2BF1B30A1C61D469BA6 /* SDImageFramePool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFramePool.m; path = SDWebImage/Private/SDImageFramePool.m; sourceTree = ""; }; + 35129EBA9B173E46DF2F6DFB335E986C /* SGScanCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGScanCode.m; path = SGQRCode/QRCode/SGScanCode.m; sourceTree = ""; }; + 3526170ED597B2F4DF1BF8DD590D5391 /* TAAnimatedDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TAAnimatedDotView.h; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAAnimatedDotView.h; sourceTree = ""; }; + 3538D5D07C7C1EEA48969493103616C5 /* LegacyGradientFillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LegacyGradientFillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift; sourceTree = ""; }; + 3541337BA25DD5A16B674D1ACD6A6DF1 /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = ""; }; + 3543AC184D347C03D551F192980FD16A /* IQKeyboardReturnManager+UITextFieldDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextFieldDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextFieldDelegate.swift"; sourceTree = ""; }; + 35B8F8C3682AB04ABE8141037BDAA739 /* MBProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.release.xcconfig; sourceTree = ""; }; + 35BDD75E89E9E5DD5191A7DBE6C746BE /* PickerCamerViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerCamerViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PickerCamerViewCell.swift; sourceTree = ""; }; + 35D06090901658DC9635ABC2BCBFACEE /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = ""; }; + 35E53EB427E531962F3F3AAD0D6BE4FD /* SetContentProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetContentProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetContentProviding.swift; sourceTree = ""; }; + 360CE21F80E46FEB77949658AF62C5B3 /* RxSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-prefix.pch"; sourceTree = ""; }; + 36150B9A092CEA623ED750B37621BEA4 /* DDDispatchQueueLogFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDDispatchQueueLogFormatter.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDDispatchQueueLogFormatter.h; sourceTree = ""; }; + 362C318AC23BC309320600A5C2B2254E /* CGImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGImage+WebP.h"; path = "Sources/KingfisherWebP-ObjC/include/CGImage+WebP.h"; sourceTree = ""; }; + 362ECCD2645D282758EFF964B9C6ABA9 /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = ""; }; + 365A6611E9FB12240170EE665EF48284 /* AnyEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEncodable.swift; path = Sources/Moya/AnyEncodable.swift; sourceTree = ""; }; + 365D92843D9B2C992588045959368206 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + 3676B48C2F610BF5A549DEC0E3237259 /* Differentiator-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Differentiator-dummy.m"; sourceTree = ""; }; + 36867FE9CEB2E51AD35828908BE554DB /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = ""; }; + 368D0A9669610E6142622A7EBCBB1BEE /* OIMMessageElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMMessageElem.h; path = OpenIMSDK/Model/OIMMessageElem.h; sourceTree = ""; }; + 36D13BB9A77FB2ADAE7FB83B1A7DCFB4 /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = ""; }; + 36DB87A7158E945BAE661177931BBB5B /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = ""; }; + 3712A5FE54262D3B1DDB054BC62A6930 /* Fill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Fill.swift; path = Sources/Private/Model/ShapeItems/Fill.swift; sourceTree = ""; }; + 3712FB2901390F9631B6F18D49E764B1 /* Picker+UIImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+UIImageView.swift"; path = "Sources/HXPHPicker/Picker/Extension/Picker+UIImageView.swift"; sourceTree = ""; }; + 37248EC9C1A753806439CCF5D8B1413C /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; 3756A9BBE41ABEE8DCBF5BCA6972C4DA /* Moya */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Moya; path = Moya.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 37835981F866845A76C1CFB6F3D10614 /* Archive+Reading.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Reading.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Reading.swift"; sourceTree = ""; }; - 37C4D8AE7174BB9A4533DE44B3F11254 /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = ""; }; - 380BDB77A870AFA5A57428CCF35356E9 /* GradientValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift; sourceTree = ""; }; - 384D8E218EB66167C5F83EADB6F99879 /* DDLogMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDLogMacros.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDLogMacros.h; sourceTree = ""; }; - 386033983F3A03681989750FE5B69703 /* SDImageFramePool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFramePool.m; path = SDWebImage/Private/SDImageFramePool.m; sourceTree = ""; }; - 38A2C4F42AAAE1661BF9821201515A70 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - 38CA5BA20DA63D05E0C03D744AEB70E8 /* SectionedViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedViewDataSourceType.swift; path = RxCocoa/Common/SectionedViewDataSourceType.swift; sourceTree = ""; }; - 38E3AB8EB5CD905844D10DD03E94B4F6 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = ""; }; - 38EEDE814FAD2740F02699B6E4BB0001 /* CustomPathAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomPathAnimation.swift; path = Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift; sourceTree = ""; }; - 38F94877CEF3C20AB5A2BC7EECB7F447 /* DDLogMessageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDLogMessageFormat.swift; path = Sources/CocoaLumberjackSwift/DDLogMessageFormat.swift; sourceTree = ""; }; - 3901977A60BEA76544CA1152762821E1 /* SolidLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidLayerModel.swift; path = Sources/Private/Model/Layers/SolidLayerModel.swift; sourceTree = ""; }; - 390E8573959FA2A886CC5567D09B09F6 /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = ""; }; - 3934EA26369C7ED8AC99BDB4DF11A6E2 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 393D78DFF9D51838A2054D5FB8A454BE /* Date+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Create.swift"; path = "Sources/SwiftDate/Date/Date+Create.swift"; sourceTree = ""; }; - 3959E727B7E6D436C58E8154A7EBB3E0 /* Defaults.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Defaults.swift; path = Sources/Defaults.swift; sourceTree = ""; }; - 39DCD7EF97C0B500D13C50F86E116058 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; - 39FED66228C9465702293375314C454F /* OIMCustomElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMCustomElem.h; path = OpenIMSDK/Model/OIMCustomElem.h; sourceTree = ""; }; - 3A27D042C38FA3F775A3165A4F4623C4 /* DropShadowAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowAnimation.swift; path = Sources/Private/CoreAnimation/Animations/DropShadowAnimation.swift; sourceTree = ""; }; - 3A5135277BD48056B6627693C1C65126 /* Archive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Archive.swift; path = Sources/Private/EmbeddedLibraries/ZipFoundation/Archive.swift; sourceTree = ""; }; - 3A5605DFB255E8E50316E27C2AC51298 /* SwiftyUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyUserDefaults-dummy.m"; sourceTree = ""; }; - 3AC0F3EEDD22751DD4EF0DA40250DC07 /* AMapLocation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapLocation.release.xcconfig; sourceTree = ""; }; - 3AC4B8F50BFE837EACFBE3C44B0388D1 /* PhotoEditorBrushColorView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorBrushColorView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorBrushColorView.swift; sourceTree = ""; }; - 3ACE2A2FCD1CB79DDBD88BFB0583269E /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; - 3AED09C9DE5A12779617977F55045734 /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; - 3B194370CEEC58191F152D61913EAED0 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; - 3B1FD911A7C53A5154FB7647CA6EFC70 /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = ""; }; - 3B254E7B7EBE8EE0B7A1BB6FEDE08103 /* WebPProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebPProcessor.swift; path = Sources/WebPProcessor.swift; sourceTree = ""; }; - 3B2B2FCF8F9A4061EFB2C1C80198FBF1 /* TAAbstractDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TAAbstractDotView.m; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAAbstractDotView.m; sourceTree = ""; }; + 375820DF14407C740784DFFB937AD921 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; + 376332B7BB7B62B68F0FF48144147A45 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; }; + 3771450394E341C8109007FD4453F6EF /* AssetManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssetManager.swift; path = Sources/HXPHPicker/Core/Util/AssetManager.swift; sourceTree = ""; }; + 377728AD2BBD2505210A33E908AD69AC /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = ""; }; + 378372F498F665F3FFD43D996BC74AD0 /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; + 378A71B05B4B6E35FEFA06A102708B90 /* YYImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YYImage-dummy.m"; sourceTree = ""; }; + 378E212C4FE47178EBCE8F98BAB1B1D8 /* DDOSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDOSLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDOSLogger.h; sourceTree = ""; }; + 378F46BB261081002D3462443D321F6E /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftyJSON.modulemap; sourceTree = ""; }; + 3799191460893486B21344FB44085E5A /* Popover.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Popover.debug.xcconfig; sourceTree = ""; }; + 37A76EC7E372C59E5A53839B2D5EC932 /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = ""; }; + 37CD281275F1894727824699298D37B6 /* RxCocoa-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxCocoa-Info.plist"; sourceTree = ""; }; + 37D11A371CBE51534B1035243FE652C8 /* YBIBAuxiliaryViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBAuxiliaryViewHandler.m; path = YBImageBrowser/AuxiliaryView/YBIBAuxiliaryViewHandler.m; sourceTree = ""; }; + 3806C8AFF5367B3A08DDDCB3A210C4BC /* URLNavigator-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "URLNavigator-Info.plist"; sourceTree = ""; }; + 380D1F16AEB20A423847C1057BF1B74D /* AnimationTextProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationTextProvider.swift; path = Sources/Public/TextProvider/AnimationTextProvider.swift; sourceTree = ""; }; + 380D33A71478D6A19360DAADF01641A2 /* OIMConversationInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMConversationInfo.m; path = OpenIMSDK/Model/OIMConversationInfo.m; sourceTree = ""; }; + 380EC785DA86FF910564CC64B9092D82 /* ObjectMapper.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ObjectMapper.modulemap; sourceTree = ""; }; + 3841269555E945A5F05B6B656275018E /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = ""; }; + 385A5B781881CF05DA0885623E2F500E /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; + 387A1E82C97FC165F805C0A885316D08 /* OIMManager+Conversation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Conversation.h"; path = "OpenIMSDK/Interface/OIMManager+Conversation.h"; sourceTree = ""; }; + 38BE8955A2F8AA0C1F76F5B85C29BB9B /* RxTableViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + 38D2052BC73AF3D0CEB469FDC3D6C867 /* TADotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TADotView.m; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TADotView.m; sourceTree = ""; }; + 38F764035CA9E883524E86CEB7BF6FF7 /* toSortedArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = toSortedArray.swift; path = Source/RxSwift/toSortedArray.swift; sourceTree = ""; }; + 39139551D157EE1146CC15CFBEAFC945 /* ValueProviderStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueProviderStore.swift; path = Sources/Private/CoreAnimation/ValueProviderStore.swift; sourceTree = ""; }; + 392F545C5B87288F9B4FD5543E7ED91D /* URLRequest+Encoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Encoding.swift"; path = "Sources/Moya/URLRequest+Encoding.swift"; sourceTree = ""; }; + 394D94A4C79F8E0EE3A26D9204D6DC3F /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = ""; }; + 3959D145FD2E8F762316E0F5B249252D /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; + 397F90741022772F19158E4EB60AC6C5 /* SendMessageCallbackProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SendMessageCallbackProxy.h; path = OpenIMSDK/CallbackProxy/SendMessageCallbackProxy.h; sourceTree = ""; }; + 39B0A6CA0BD6828A3BDAC8FDCB446598 /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = ""; }; + 39F33078ADCADC74D51595069A4B4F27 /* IQKeyboardCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-umbrella.h"; sourceTree = ""; }; + 39F3484843917C882FECBCCF7474F59F /* IQKeyboardToolbar-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-umbrella.h"; sourceTree = ""; }; + 3A044FDCB634FCC2E2D4514A1D478D6E /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; + 3A0488FD76DB5F611BF73447B6E0CF0E /* CompatibilityTracker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibilityTracker.swift; path = Sources/Private/CoreAnimation/CompatibilityTracker.swift; sourceTree = ""; }; + 3A24B45B99DABB55846B35CC63B19366 /* Date+Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Math.swift"; path = "Sources/SwiftDate/Date/Date+Math.swift"; sourceTree = ""; }; + 3A36550B8B2CBBB52150C46F5E083568 /* YBIBCollectionViewLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBCollectionViewLayout.m; path = YBImageBrowser/Base/YBIBCollectionViewLayout.m; sourceTree = ""; }; + 3A5972F6E217179DC514AFBE7916229A /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; + 3A5E30809D431C734969D9A65F160C87 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; + 3A67D1CB2FA1AD2A0DE5714D70C5376D /* IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; + 3AC8482EF4E24B214C0C7B9E49611EE5 /* NSObject+MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJProperty.h"; path = "MJExtension/NSObject+MJProperty.h"; sourceTree = ""; }; + 3ACFB997E95585F568A813FF855B02A2 /* Entry+Serialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Entry+Serialization.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Entry+Serialization.swift"; sourceTree = ""; }; + 3AD14D0F84352B2B3E7EEA1BB4CAA493 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = ""; }; + 3AE15C20A74AE7258AF74FD1B506F1AA /* KeyframeInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeInterpolator.swift; path = Sources/Private/Utility/Interpolatable/KeyframeInterpolator.swift; sourceTree = ""; }; + 3B1A2F0EC904214E6975457AE08127B3 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; + 3B3B4B9F481B229260E949B4E0BFD04D /* MAAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotation.h; path = MAMapKit.framework/Headers/MAAnnotation.h; sourceTree = ""; }; 3B3FEC1DFBF7036B761FB944F2B9F817 /* Pods-QuickLocation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-QuickLocation-dummy.m"; sourceTree = ""; }; - 3B5D16C00716DB3F723ABA16AD0C73F6 /* MAOfflineItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItem.h; path = MAMapKit.framework/Headers/MAOfflineItem.h; sourceTree = ""; }; - 3BBC561B29ED22D84456A56B25487B1A /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; - 3BE0270AFD495A209831013F68A46EAA /* OptionalType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalType.swift; path = Sources/OptionalType.swift; sourceTree = ""; }; - 3BED3A0B0A00EA2FA5675D1740AB8EBD /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = ""; }; - 3C0C914066C13DD1C227163AE269AE08 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 3C0CF0C62F67692E4295190EE91E610F /* UploadFileCallbackProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UploadFileCallbackProxy.h; path = OpenIMSDK/CallbackProxy/UploadFileCallbackProxy.h; sourceTree = ""; }; - 3C0DBF3930B6D9B41590221ED28D0ABD /* ImageDownloader+LivePhoto.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageDownloader+LivePhoto.swift"; path = "Sources/Networking/ImageDownloader+LivePhoto.swift"; sourceTree = ""; }; - 3C25F3519ADD38A0760C364F56755FA4 /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJKeyValue.h"; path = "MJExtension/NSObject+MJKeyValue.h"; sourceTree = ""; }; - 3C30CD98BDFEAFA1281C881CB316CD95 /* NSTextStorage+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextStorage+Rx.swift"; path = "RxCocoa/iOS/NSTextStorage+Rx.swift"; sourceTree = ""; }; - 3C47797CF83C8275EB25B782A05E26C0 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - 3C4791B8C2A49D72E41FF9376B1ABA2C /* KingfisherWebP.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = KingfisherWebP.modulemap; sourceTree = ""; }; - 3C6988BCE07821C58551CEC828E29088 /* FillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift; sourceTree = ""; }; - 3CC8BB6787C7BA9EA081B229A0B0AB07 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; - 3D01AEE6FEB31BADC6ABBB964F92BFA6 /* ToJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToJSON.swift; path = Sources/ToJSON.swift; sourceTree = ""; }; - 3D0DB1CEB05AC969288DEAFEB20F65F0 /* Differentiator.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Differentiator.release.xcconfig; sourceTree = ""; }; - 3D3A69BB5C302A89D95825EEBCFE3F76 /* Moya.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Moya.debug.xcconfig; sourceTree = ""; }; - 3D5CC7490D18D68B024892F6BD86A7B6 /* nwise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = nwise.swift; path = Source/RxSwift/nwise.swift; sourceTree = ""; }; - 3D9CC311816278CAC539F9972CCF9467 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = ""; }; - 3DA7C83A39038CA118B3CB12DA8280B4 /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = ""; }; - 3DC2D83167741CC204B2EC3E267BCF7E /* AppearanceStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppearanceStyle.swift; path = Sources/HXPHPicker/Core/Model/AppearanceStyle.swift; sourceTree = ""; }; - 3DE1CB79BCC5D870E0A0F8AE2B4A1461 /* sharpyuv_cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv_cpu.h; path = sharpyuv/sharpyuv_cpu.h; sourceTree = ""; }; - 3E17ECF721B2913CE636674C037654C6 /* DDMultiFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMultiFormatter.m; path = Sources/CocoaLumberjack/Extensions/DDMultiFormatter.m; sourceTree = ""; }; - 3E47F234141A9130E3D666C798E5329B /* OIMCallbacker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMCallbacker.m; path = OpenIMSDK/Callbacker/OIMCallbacker.m; sourceTree = ""; }; - 3E4BEB998FE521E695D73DC9BF2ECA90 /* DataIDProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataIDProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DataIDProviding.swift; sourceTree = ""; }; - 3F4975EE0DFB3B2FF2DC34F0C3FAD60E /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; - 3F73DD0E591F2EA915EE953972CB39F5 /* OpenIMSDKCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenIMSDKCore.debug.xcconfig; sourceTree = ""; }; - 3F8733BFF5C1688EA0DA6F27C8A71E52 /* KVORepresentable+Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+Swift.swift"; path = "RxCocoa/Foundation/KVORepresentable+Swift.swift"; sourceTree = ""; }; - 3F90E27702A8F171A62776D2F844F0A4 /* EditorChartlet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorChartlet.swift; path = Sources/HXPHPicker/Editor/Model/EditorChartlet.swift; sourceTree = ""; }; - 3F91D8352B875D35E55568B695E6F368 /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = ""; }; - 3F982914D28918E5ED7DABBD318AB9CC /* PhotoEditorCropToolModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorCropToolModel.swift; path = Sources/HXPHPicker/Editor/Model/PhotoEditorCropToolModel.swift; sourceTree = ""; }; - 3FEC6077DC3237CA46D42ABFDC14A37E /* Defaults+Subscripts.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Defaults+Subscripts.swift"; path = "Sources/Defaults+Subscripts.swift"; sourceTree = ""; }; - 3FFB55FA3F07B1F7CDEF3C5945A8B171 /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; - 402415CFF7312E2B08AADA79DA73A4E1 /* Editor+UIImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Editor+UIImageView.swift"; path = "Sources/HXPHPicker/Editor/Util/Editor+UIImageView.swift"; sourceTree = ""; }; - 40AA1A10068FA06843F9B866D1548021 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; - 40AB53811E5578E0AAB0E63564BD139D /* RxCocoa-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxCocoa-Info.plist"; sourceTree = ""; }; - 40B3777A774404758AB6FCB677DE0654 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; - 40F6DF23FC61D59800559E8381531BC1 /* PublishRelay+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PublishRelay+Signal.swift"; path = "RxCocoa/Traits/Signal/PublishRelay+Signal.swift"; sourceTree = ""; }; - 40FD25DC1921B871C7F788075D01E4BD /* RxSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-dummy.m"; sourceTree = ""; }; - 4123C8FEAA4B2A821DFD684756000B82 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 41249D28A0A1532043F7069D1A9E3DEB /* UINavigationController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+Rx.swift"; path = "RxCocoa/iOS/UINavigationController+Rx.swift"; sourceTree = ""; }; - 4132CF769C59E4962F728199F4EFDCCB /* Bundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bundle.swift; path = Sources/Private/Model/Extensions/Bundle.swift; sourceTree = ""; }; - 414EA10691F9648F2A822D776442BEE8 /* retryWithBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = retryWithBehavior.swift; path = Source/RxSwift/retryWithBehavior.swift; sourceTree = ""; }; - 4163D447B518D4BC6E0EE0EAC80736EC /* RxDataSources-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxDataSources-umbrella.h"; sourceTree = ""; }; + 3B4B5E7AE632CD74BA805CCB171392AF /* OpenIMSDK-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OpenIMSDK-prefix.pch"; sourceTree = ""; }; + 3B59F6D2D32C4EEE3ECDEF9CE11B50D4 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; + 3B8AA282E96B073F73D645D38CE1096E /* YYImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYImage.h; path = YYImage/YYImage.h; sourceTree = ""; }; + 3B8C00943FF7F8CFAD73B6BE0A6D3985 /* EllipseNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EllipseNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift; sourceTree = ""; }; + 3B9CB5F944772CAB0E89F0484325B547 /* PhotoEditorContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorContentView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorContentView.swift; sourceTree = ""; }; + 3BB45BC95DC9AF301D42F5B0E83A6F91 /* SGQRCode.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SGQRCode.modulemap; sourceTree = ""; }; + 3BC91B6AC1E57B084227D354F0152109 /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = ""; }; + 3BE64571CFA39F6E7F89C21A96D1D7FB /* not+RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "not+RxCocoa.swift"; path = "Source/RxCocoa/not+RxCocoa.swift"; sourceTree = ""; }; + 3C07F59A034811F4CBBF62F8E736ECAA /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; + 3C45BD99F26D6E924687C0DEF6BD9871 /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; + 3C4FA82069B6C1E054035B43140BE929 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; + 3C61A14610D0126017F22A925514C694 /* CocoaMQTT-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaMQTT-dummy.m"; sourceTree = ""; }; + 3C6C2C1E35F34598B436A9715B3178E9 /* MACustomCalloutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomCalloutView.h; path = MAMapKit.framework/Headers/MACustomCalloutView.h; sourceTree = ""; }; + 3C75D009CCCA844FCC9AB9C57F1EFD1F /* SwiftKeychainWrapper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftKeychainWrapper.release.xcconfig; sourceTree = ""; }; + 3C837B2221F8E0307B9986F0D7DE84AC /* PhotoListConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoListConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PhotoListConfiguration.swift; sourceTree = ""; }; + 3CAE77C1FDFE55D88382565774039932 /* OIMFileElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMFileElem.m; path = OpenIMSDK/Model/OIMFileElem.m; sourceTree = ""; }; + 3CB8C613628313363644BD09AD359103 /* _RX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RX.h; path = RxCocoa/Runtime/include/_RX.h; sourceTree = ""; }; + 3CDA05AE0A1D88DBAE40E62638BF3C8A /* Popover-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Popover-dummy.m"; sourceTree = ""; }; + 3CE5BD03C703D73BE31F3D87E1B5DC08 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; + 3CEFA599307C4B7B9E0ADBD31EC1E745 /* OIMLocationElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMLocationElem.h; path = OpenIMSDK/Model/OIMLocationElem.h; sourceTree = ""; }; + 3CF535FBA7A17C38D87E054E77B938BC /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = ""; }; + 3CF92AF5D8DFCE759BF000B71F0DA02E /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; + 3CFB128BAD33D109C98CF3A44600DE0B /* GradientAnimations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientAnimations.swift; path = Sources/Private/CoreAnimation/Animations/GradientAnimations.swift; sourceTree = ""; }; + 3CFF889EB81CC40894452F644825AF71 /* NSTextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextField+Rx.swift"; path = "RxCocoa/macOS/NSTextField+Rx.swift"; sourceTree = ""; }; + 3D12B6120AA47A34F846154D94CAA3F4 /* PublishRelay+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PublishRelay+Signal.swift"; path = "RxCocoa/Traits/Signal/PublishRelay+Signal.swift"; sourceTree = ""; }; + 3D3412FCB9DBC857F8F90239397E20ED /* DidDisplayProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidDisplayProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidDisplayProviding.swift; sourceTree = ""; }; + 3D365F8F2795391FEA3A7976186221B1 /* MAMapView+Resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MAMapView+Resource.h"; path = "MAMapKit.framework/Headers/MAMapView+Resource.h"; sourceTree = ""; }; + 3D5452FF8CDB97481CA818937F4AA899 /* TimePeriodGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodGroup.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodGroup.swift; sourceTree = ""; }; + 3D695561A56C2DD9E3D9132C6DF66CAA /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; + 3D87137706F35911310CFABBD8880A4D /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = ""; }; + 3D933D12E317B5FD83E880AB561D94EA /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; + 3DB6E6F409BB82016215077AA58FFE0F /* Array+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Sort.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/Array+Sort.swift"; sourceTree = ""; }; + 3DD12149762F4B3855CF74E1E89307DD /* DownloadRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadRequest.swift; path = Source/Core/DownloadRequest.swift; sourceTree = ""; }; + 3DD1F18C6797FFFC1703236E67AD6096 /* SwiftKeychainWrapper-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftKeychainWrapper-umbrella.h"; sourceTree = ""; }; + 3DE36367B42A69FD745A52FC145EF3CE /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; + 3E2853814085998597B40FCD6FF69185 /* IQKeyboardToolbar-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbar-dummy.m"; sourceTree = ""; }; + 3E321387479547D50CFE05D0B62300A0 /* unwrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = unwrap.swift; path = Source/RxSwift/unwrap.swift; sourceTree = ""; }; + 3E734FF2DDA8DAB55B08800FDD08E017 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; + 3E7390C91862B0B79A6128AFE4A9B5F5 /* MJExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.debug.xcconfig; sourceTree = ""; }; + 3E811FDD3EDFA0440713C2597DF1941A /* CompatibleAnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationKeypath.swift; path = Sources/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift; sourceTree = ""; }; + 3EA07675D341B40B3A11C882628547EF /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; + 3ED6DCACD44E7EC0DE34BDE788A9AFB3 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = ""; }; + 3EFC0DEF7F6680D04A5987FBBF719161 /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/Extensions/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; + 3F080FACE9A2AB9E5FF8918DF0CD166E /* SwiftyUserDefaults.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyUserDefaults.debug.xcconfig; sourceTree = ""; }; + 3F20D74BF18F61F2F8043E9BB9261874 /* DateInRegion+Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Math.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Math.swift"; sourceTree = ""; }; + 3F24D6C58E498E7B37DF8D75A1208F70 /* CAAnimation+TimingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAAnimation+TimingConfiguration.swift"; path = "Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift"; sourceTree = ""; }; + 3F309E5C6296297419BFF8A326FBA8A3 /* RxDataSources.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxDataSources.debug.xcconfig; sourceTree = ""; }; + 3F30D8D00A655C7EC5DA8DC98A8361B5 /* RxScrollViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxScrollViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift; sourceTree = ""; }; + 3F5BBFBC93786C1203D7B9FC6A5D8002 /* ObservableConvertibleType+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Driver.swift"; path = "RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift"; sourceTree = ""; }; + 3F6B9B8EEDDD183E1425AB22C7937309 /* FilepathImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FilepathImageProvider.swift; path = Sources/Public/iOS/FilepathImageProvider.swift; sourceTree = ""; }; + 3F7489B3075663D6DD35FC554D303EC6 /* ValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueContainer.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueContainer.swift; sourceTree = ""; }; + 3F79F59C81E9BD55D2300957A95BFEE2 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + 3F7EED91CF0B4D7A89C11A806293769A /* EditorImageResizerControlView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorImageResizerControlView.swift; path = Sources/HXPHPicker/Editor/View/Photo/EditorImageResizerControlView.swift; sourceTree = ""; }; + 3FB7A78444CD136A1E106D7281BB2012 /* Moya.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Moya.release.xcconfig; sourceTree = ""; }; + 3FBB5BAF1EB447A1809BF7973FC37468 /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = ""; }; + 3FED4232B22574120FFCBC78B2130061 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/Core/SessionDelegate.swift; sourceTree = ""; }; + 4009BD16431C62C0B7BE3CB189F750B2 /* Editor+PhotoTools.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Editor+PhotoTools.swift"; path = "Sources/HXPHPicker/Editor/Util/Editor+PhotoTools.swift"; sourceTree = ""; }; + 4041C387548214F751404450BF39B769 /* NSObject+YBImageBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+YBImageBrowser.m"; path = "YBImageBrowser/Base/NSObject+YBImageBrowser.m"; sourceTree = ""; }; + 406F8443BD9B36DA3D96980140325A1D /* GradientRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientRenderLayer.swift; path = Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift; sourceTree = ""; }; + 4076244D29A019001FE69F99345FC805 /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; + 40A7089ADE900B568CDC7B11FC4C263B /* SGQRCode.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SGQRCode.bundle; path = SGQRCode/SGQRCode.bundle; sourceTree = ""; }; + 40AD8D7E0434ABAC40ADD7301AF66559 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; + 40BC21F8CF8714BDE827D23C7C0AA1FF /* SGGenerateQRCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGGenerateQRCode.m; path = SGQRCode/QRCode/SGGenerateQRCode.m; sourceTree = ""; }; + 410138B7DB73A37EA3B12FDE47EC6909 /* RxCollectionViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift; sourceTree = ""; }; + 410BD1B04CE17FB86D3C4FB7427E2E8A /* SwiftyUserDefaults-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyUserDefaults-umbrella.h"; sourceTree = ""; }; + 41497B385EDAC9F73A4855C08692FDB1 /* RxCocoaObjCRuntimeError+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RxCocoaObjCRuntimeError+Extensions.swift"; path = "RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift"; sourceTree = ""; }; 4173C63C9C2260C59FD9E0AD257A1200 /* URLNavigator */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = URLNavigator; path = URLNavigator.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4183C044A4BC7762B0A05245AEA4D915 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; - 41ABD5255F5B3887A1E6C0B3CD1A9071 /* DefaultsSerializable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsSerializable.swift; path = Sources/DefaultsSerializable.swift; sourceTree = ""; }; - 41B686351F84A98FEEC222FA207E8D99 /* OIMManager+Message.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Message.m"; path = "OpenIMSDK/Interface/OIMManager+Message.m"; sourceTree = ""; }; - 41C0F4847E0F170E3F59D0BC7F2811ED /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 41CC3F3DD2BB8D3B4156748F2141ED40 /* AnimationContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationContext.swift; path = Sources/Private/Utility/Helpers/AnimationContext.swift; sourceTree = ""; }; - 41E7C809EA33C0393A6AE27000AB14AA /* Keyframes+combined.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Keyframes+combined.swift"; path = "Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift"; sourceTree = ""; }; - 41EBF466F9F250D801B4F6EF7B1879E1 /* HXPHPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HXPHPicker-prefix.pch"; sourceTree = ""; }; - 41F90D943D1430057060CE7D0D884CEC /* PhotoEditorMosaicToolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorMosaicToolView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorMosaicToolView.swift; sourceTree = ""; }; - 41FAE3704616441F385176547E15B85F /* EnumOperators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnumOperators.swift; path = Sources/EnumOperators.swift; sourceTree = ""; }; - 41FEE0B7FFF23C3578AAA6B48F10FD1E /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; + 41A4DBD37D4C7EDFBB298F5BFE487E1C /* Endpoint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Endpoint.swift; path = Sources/Moya/Endpoint.swift; sourceTree = ""; }; + 41A60F1CDF890259E3C6967417E873B4 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; + 41ADAA54FC8D80364D38BC19F8E41595 /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/Core/RequestTaskMap.swift; sourceTree = ""; }; + 41CEA18D25AEC926DA2658E42254B462 /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = ""; }; + 41D8AE7E514A94049498276F4D7A2EA8 /* PathOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift; sourceTree = ""; }; + 41E3FAAD2234BC50D877D8712F227C53 /* sharpyuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_sse2.c; path = sharpyuv/sharpyuv_sse2.c; sourceTree = ""; }; + 41F496A6B5F759F53792DE5EB4472DB8 /* SwiftKeychainWrapper-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftKeychainWrapper-Info.plist"; sourceTree = ""; }; 420D86B6DE49D1E1898C3A498E4F4195 /* RxSwift-RxSwift_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "RxSwift-RxSwift_Privacy"; path = RxSwift_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4218E7AB0F97FEEDD00E4E037614FB34 /* SectionModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionModel.swift; path = Sources/Differentiator/SectionModel.swift; sourceTree = ""; }; - 421FF5F39905655DDCE1A5F2FF2176D9 /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = ""; }; - 42313B5EA1C08DEBCB6B59020C9314BA /* Picker+PhotoAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+PhotoAsset.swift"; path = "Sources/HXPHPicker/Picker/Extension/Picker+PhotoAsset.swift"; sourceTree = ""; }; - 424C1229D81117AFB23943DBBE7C4DCE /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; - 428BD599C962D9E479FAFFBC60859CF5 /* AssetManager+Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+Image.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+Image.swift"; sourceTree = ""; }; - 4298E753B82537A2B8C44313CCC2E168 /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; - 42B114F0B8206EEAB6F552D7C4F863ED /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = ""; }; - 42B2824679F61129A99A02FB3B02A3D9 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; - 42C932923F54BF07D5682A760F4539BF /* ofType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ofType.swift; path = Source/RxSwift/ofType.swift; sourceTree = ""; }; - 42F1702D21C1AAA9E33E2984581D4FCA /* AlipaySDK-iOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "AlipaySDK-iOS-xcframeworks.sh"; sourceTree = ""; }; - 4301E59E401F1C6F4638E1B62F53C1DD /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; - 433934F1DC56FCF3A68958D44ADBFE90 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = ""; }; - 43409DB5BB90B590069DBF410D50DD04 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - 43601022A470E6D853FE16759BDC655E /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; - 43CBA87A6062D67B43C728A78CDD889F /* ClassReference.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassReference.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/ClassReference.swift; sourceTree = ""; }; - 43E499C40D12F0BA44448C3A8FE1BA57 /* EditorStickerTrashView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerTrashView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerTrashView.swift; sourceTree = ""; }; - 43E68058B169D1FBD605BEB82E2A7B8F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 422984CB36725E3CF2CFC36BC69EC1FE /* EditorImageResizerMaskView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorImageResizerMaskView.swift; path = Sources/HXPHPicker/Editor/View/Photo/EditorImageResizerMaskView.swift; sourceTree = ""; }; + 423169ACF822472DA2500156F0733BB8 /* MAMapAccessibilityIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapAccessibilityIdentifier.h; path = MAMapKit.framework/Headers/MAMapAccessibilityIdentifier.h; sourceTree = ""; }; + 423264E105440A0186760072DCD20FCC /* OIMGCDMulticastDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMGCDMulticastDelegate.m; path = OpenIMSDK/Callbacker/OIMGCDMulticastDelegate.m; sourceTree = ""; }; + 423CB5BAFBC5B1B7B8867FCF7091EAFD /* BlendMode+Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BlendMode+Filter.swift"; path = "Sources/Private/Utility/Extensions/BlendMode+Filter.swift"; sourceTree = ""; }; + 429D673B66BF996BECCA85690BDC4240 /* SGScanView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGScanView.h; path = SGQRCode/ScanView/SGScanView.h; sourceTree = ""; }; + 42A180547A0748580216D31947FCF91D /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; + 42AAC5C25F48FDAE17B347BE4BC0FB10 /* sharpyuv_gamma.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_gamma.c; path = sharpyuv/sharpyuv_gamma.c; sourceTree = ""; }; + 42BAAA1958F2B74B2EBA9E6128334A32 /* ResourceBundle-Privacy-ObjectMapper-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Privacy-ObjectMapper-Info.plist"; sourceTree = ""; }; + 42D00A5C619445D1495B62A932B9DE3B /* MAGroundOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlay.h; path = MAMapKit.framework/Headers/MAGroundOverlay.h; sourceTree = ""; }; + 42FEFD5D7BAEE2B475CA21E3B18847DA /* Archive+Writing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Writing.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Writing.swift"; sourceTree = ""; }; + 43047DBE059866A1011930C625E2B47E /* IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; + 430D8BCB203E6FA33D34F430A850845B /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = ""; }; + 432FA1B90521DCF2ABD467F6CB5BE0D8 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; + 43406D3985E9918221FE0A4DE1B571DA /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 43460343EA43EE4FC9F9EF609A697333 /* IQKeyboardReturnManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-prefix.pch"; sourceTree = ""; }; + 43A35A16C9716924B97B9D53A78A0391 /* FramePublish.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FramePublish.swift; path = Source/FramePublish.swift; sourceTree = ""; }; + 43CD18A02BC6362BD60A9F8A895C6881 /* YBIBCollectionViewLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBCollectionViewLayout.h; path = YBImageBrowser/Base/YBIBCollectionViewLayout.h; sourceTree = ""; }; + 43D070FA933209AA2B933B1574913A3F /* WechatOpenSDK-XCFramework-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "WechatOpenSDK-XCFramework-xcframeworks.sh"; sourceTree = ""; }; 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MJExtension-MJExtension"; path = MJExtension.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 43FB9E973A47305B19D631375B80A59A /* IQKeyboardManager+ToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManager.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift"; sourceTree = ""; }; - 443DB1392864611F254C77FA4329F1D1 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; - 44456B4A49FD97858C88390117FC8890 /* OIMManager+Group.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Group.h"; path = "OpenIMSDK/Interface/OIMManager+Group.h"; sourceTree = ""; }; - 445052D7B6C3849EF4DC935731E697FC /* Picker+UIImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+UIImageView.swift"; path = "Sources/HXPHPicker/Picker/Extension/Picker+UIImageView.swift"; sourceTree = ""; }; - 449956C48B59A346D76D820B80C026D9 /* MAUserLocationRepresentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocationRepresentation.h; path = MAMapKit.framework/Headers/MAUserLocationRepresentation.h; sourceTree = ""; }; - 44AA35264925F43D3EC251BF229096B1 /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; - 44D3D9364C5E3681429B741A17C6D231 /* RxSwiftExt.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxSwiftExt.modulemap; sourceTree = ""; }; - 44EBEF9387307DC81A32EFFE81F6035F /* AnimatedProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/AnimatedProviding.swift; sourceTree = ""; }; - 450ACC10D4C6E5EF773D09E25222F0C0 /* SGQRCode-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SGQRCode-umbrella.h"; sourceTree = ""; }; - 453CA5B7C2555E48218CED21C1BC8519 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; + 44070D625BBD8D72169C7EAC92037AAA /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; sourceTree = ""; }; + 442AB6262AFA4173559DD94C6274239F /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; + 442B1083EAD63EC2E04EE79B2C02102A /* EpoxyLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyLogger.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Logging/EpoxyLogger.swift; sourceTree = ""; }; + 44443D8FED362A663B7F86031F24FBC4 /* DDAssertMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDAssertMacros.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDAssertMacros.h; sourceTree = ""; }; + 4448D42457474E9CEFD9FDDB43FCDE90 /* YBIBVideoData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoData.h; path = Video/YBIBVideoData.h; sourceTree = ""; }; + 4471EC3FFF68A5CB2C39BF14527FC3D8 /* CocoaLumberjack.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLumberjack.release.xcconfig; sourceTree = ""; }; + 44BDF7C88D11E13B365E3AF156FE327A /* OIMAttachedInfoElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMAttachedInfoElem.h; path = OpenIMSDK/Model/OIMAttachedInfoElem.h; sourceTree = ""; }; + 44D897C6C7596759284807513D0F656D /* MAGroundOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlayRenderer.h; path = MAMapKit.framework/Headers/MAGroundOverlayRenderer.h; sourceTree = ""; }; + 44EA28130A47103E346AEA431BD8AB23 /* CGFloatExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CGFloatExtensions.swift; path = Sources/Private/Utility/Extensions/CGFloatExtensions.swift; sourceTree = ""; }; + 4538D166A896DAD1AB3BFE037F3EFE5C /* LottieViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieViewType.swift; path = Sources/Public/Controls/LottieViewType.swift; sourceTree = ""; }; 45528F89822ACD0BFE4789411E978828 /* RxCocoa-RxCocoa_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "RxCocoa-RxCocoa_Privacy"; path = RxCocoa_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4559C34E42D4D2C64A174AA002B8056D /* ProgressImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProgressImageView.swift; path = Sources/HXPHPicker/Core/View/ProgressImageView.swift; sourceTree = ""; }; - 456E97C9FEB89B1B0A86B831368F12E0 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; - 457470DF1C51CF053BB4ED593859965A /* URLNavigator-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "URLNavigator-dummy.m"; sourceTree = ""; }; - 45A6C83A799C0C051A71B753EBF2E0C4 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 45A82B7D82427BF1446499386E18E4FB /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; - 45AD7FAD1E5345477CDADB368908F59E /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; - 45AEBEE9E3F79E4CDD32A46B927067A9 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; - 45D6D7BCFDFDF29A6DBD06C86894A520 /* PhotoListConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoListConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PhotoListConfiguration.swift; sourceTree = ""; }; - 45DECE1C164F713D09FCC8D39EE8815F /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/Core/ParameterEncoder.swift; sourceTree = ""; }; - 4606C2115D48BBA83BE7F9CC386AB737 /* _RXObjCRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXObjCRuntime.m; path = RxCocoa/Runtime/_RXObjCRuntime.m; sourceTree = ""; }; - 462A0CFAB7382F9081365327D7F33267 /* PhotoPickerSelectableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerSelectableViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPickerSelectableViewCell.swift; sourceTree = ""; }; - 4658669320F17E4FF1069C73ED9C3838 /* YBImageBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBImageBrowser.m; path = YBImageBrowser/YBImageBrowser.m; sourceTree = ""; }; - 466A603F12FA5BB31841F6365BACD39E /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - 46A9779C47951687DB62763E0DD55E55 /* IQKeyboardReturnManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.debug.xcconfig; sourceTree = ""; }; - 46C3470E48B1D31E09FFD503615D9BB6 /* WithUnretained.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithUnretained.swift; path = RxSwift/Observables/WithUnretained.swift; sourceTree = ""; }; - 46CA00F3ED3A39266FD0485E6A9A52E8 /* YBIBGetBaseInfoProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBGetBaseInfoProtocol.h; path = YBImageBrowser/Protocol/YBIBGetBaseInfoProtocol.h; sourceTree = ""; }; - 46FA4E5C6AB9828AA051B5295DB7401A /* Mask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mask.swift; path = Sources/Private/Model/Objects/Mask.swift; sourceTree = ""; }; - 471AA0E6419BEC2F99BC28C13F677E88 /* EllipseAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EllipseAnimation.swift; path = Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift; sourceTree = ""; }; - 477382C0F53729E89AD8720A95AB42A7 /* ErasedContentProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErasedContentProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ErasedContentProviding.swift; sourceTree = ""; }; - 479A5976FAAC7CD00DADE00121C3194C /* HXPHPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "HXPHPicker-Info.plist"; sourceTree = ""; }; - 47C1FF137DA42CBB07A1EF1B8D4A2D29 /* PhotoEditorViewController+Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoEditorViewController+Request.swift"; path = "Sources/HXPHPicker/Editor/Controller/PhotoEditorViewController+Request.swift"; sourceTree = ""; }; - 47F4417E91DBF2662F9F10B3EE2F3C18 /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = ""; }; - 4829363F4F1E0B4952D62D858E19E4AD /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; - 483A34A8F177C29CC7FBA298C2881921 /* EditorToolViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorToolViewCell.swift; path = Sources/HXPHPicker/Editor/View/EditorToolViewCell.swift; sourceTree = ""; }; - 4846DEBD1B88739515A29CBE64DAD34F /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; - 486BC245372C2FC6F3B475C1D0AC365B /* OpenIMCore.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenIMCore.xcframework; path = Framework/OpenIMCore.xcframework; sourceTree = ""; }; - 486C16E381473095D0AA5D90E00E5843 /* Navigator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Navigator.swift; path = Sources/URLNavigator/Navigator.swift; sourceTree = ""; }; - 486D15A5F82C8985A0E6751D00D794DA /* MAOfflineCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineCity.h; path = MAMapKit.framework/Headers/MAOfflineCity.h; sourceTree = ""; }; - 486DBFE0E0D4096F665E6499011A443F /* Binder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Binder.swift; path = RxSwift/Binder.swift; sourceTree = ""; }; - 489954733A3E65665BFD9C14B718677E /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - 489AB4A9B338E825DFFB1745D2B1E16E /* Vector1DEffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Vector1DEffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift; sourceTree = ""; }; - 48A8FEED501EFD1067CE5D1499B5B075 /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; sourceTree = ""; }; - 48F6E0EA41E40ECC2E2F6DD4D0B38CB1 /* EffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift; sourceTree = ""; }; - 49053A2947EE78436A16A7AA161489FB /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; - 49109E0282ED87E8EDD6FB47CB18C964 /* MarqueeLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MarqueeLabel-umbrella.h"; sourceTree = ""; }; - 4912A79A08146F11C569FC6DA4735C57 /* count.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = count.swift; path = Source/RxSwift/count.swift; sourceTree = ""; }; - 49624603A0AE8BE4B18806F2DAD7B3D4 /* PhotoEditorCropToolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorCropToolView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorCropToolView.swift; sourceTree = ""; }; - 496745A7F3A4397C33365DC9AA2BBD27 /* MBProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.debug.xcconfig; sourceTree = ""; }; - 49B0BA1B9007316089950248F030BD49 /* libwebp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-umbrella.h"; sourceTree = ""; }; - 49B2C730E8574BF4D63DAF8204DC6409 /* OIMGroupInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMGroupInfo.m; path = OpenIMSDK/Model/OIMGroupInfo.m; sourceTree = ""; }; - 49B3B5C8918A70D85AC76D63AB8FEF7C /* MATouchPoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATouchPoi.h; path = MAMapKit.framework/Headers/MATouchPoi.h; sourceTree = ""; }; - 49CE288F45AE14A8ACBCB47C4E6EF706 /* ObjectMapper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ObjectMapper-dummy.m"; sourceTree = ""; }; - 4A094F4CEA1C525291A1DA9D1530B5BD /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = ""; }; - 4A2B506E2416B5C91B799DFE0B69F278 /* AssetManager+VideoURL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+VideoURL.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+VideoURL.swift"; sourceTree = ""; }; - 4A695E041567399C0A6E1B8B2BB5790E /* distinct.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = distinct.swift; path = Source/RxSwift/distinct.swift; sourceTree = ""; }; - 4A843D530EED2334A0CD6860F27AE9F7 /* DateInRegion+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Create.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Create.swift"; sourceTree = ""; }; - 4A86205BBD9A0C0A9ABA8E148F66C648 /* ignoreErrors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ignoreErrors.swift; path = Source/RxSwift/ignoreErrors.swift; sourceTree = ""; }; - 4AB0C8AFD4E85D17435F4F56F8794C41 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Core/Request.swift; sourceTree = ""; }; - 4AB6CBC4746778086E329DD344D09063 /* UIView+SDExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+SDExtension.m"; path = "SDCycleScrollView/Lib/SDCycleScrollView/UIView+SDExtension.m"; sourceTree = ""; }; - 4AC41A04D19C36C0AA63528AA7AFDC61 /* libwebp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "libwebp-Info.plist"; sourceTree = ""; }; - 4B030D7D5D8F6147979F920E9EDD6CB0 /* IQKeyboardReturnManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardReturnManager.modulemap; sourceTree = ""; }; - 4B160D855FFEF98949AC7D84DF900D91 /* OIMQuoteElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMQuoteElem.m; path = OpenIMSDK/Model/OIMQuoteElem.m; sourceTree = ""; }; - 4B3F4F75DEDBE40BA5CC5D419F97FA1F /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; - 4B56B9C4446B4864B2E6EC9FA7AB1F4C /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/Extensions/OperationQueue+Alamofire.swift"; sourceTree = ""; }; - 4B65AF04777A2385E03DD8913EFAE5D7 /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = ""; }; - 4B8D141C5CB92565EBE4E408187A268A /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; - 4BA7E8D0376529DEF59A4B52463226CE /* URLRequest+Encoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Encoding.swift"; path = "Sources/Moya/URLRequest+Encoding.swift"; sourceTree = ""; }; - 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 4BE739C8611B660926CA6A0474569860 /* AMapNearbyUploadInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbyUploadInfo.h; path = AMapSearchKit.framework/Headers/AMapNearbyUploadInfo.h; sourceTree = ""; }; - 4C04BCB613C18841E80E12AD65B54EB5 /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; - 4C16BCB8E73F50157A1D93FED070EE1D /* LegacyGradientFillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LegacyGradientFillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift; sourceTree = ""; }; - 4C27FEE1D4334F4976A5F419C24858EB /* DDContextFilterLogFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDContextFilterLogFormatter.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDContextFilterLogFormatter.h; sourceTree = ""; }; - 4C2FF52A2AD4EFB49CA6B7904FDF26EA /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; - 4C52DF26092158048682358F43565CB5 /* CompatibleAnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationKeypath.swift; path = Sources/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift; sourceTree = ""; }; - 4CBDB659ECA60E466DDE07E7F3188D9B /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = ""; }; - 4D03C4A705D61C193A9538DBE31D5AA6 /* EmptyView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EmptyView.swift; path = Sources/HXPHPicker/Picker/View/EmptyView.swift; sourceTree = ""; }; - 4D15A1A1C3D45C5DBC427A6AA27A1645 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; - 4D51AEB7941D5096807E59C7B4F7596A /* TagListView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TagListView.swift; path = TagListView/TagListView.swift; sourceTree = ""; }; - 4D6D43780E33C2CDBD9719B5CA9CD786 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - 4D8BD69420673B5C0598B75F654685F3 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - 4DAF97AA6C3E4088F2E9F27E50E1B400 /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/Features/RedirectHandler.swift; sourceTree = ""; }; - 4DC53E0ABF02CD9BBAB8D62559EA0E36 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 4DC7F488D40CE43018AB21B6B897E2FC /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; - 4DD2273F4ADC8FF6EB64FA7E9A31E108 /* SGPermission.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGPermission.m; path = SGQRCode/Permission/SGPermission.m; sourceTree = ""; }; - 4DECC62F44E2E42AF9DA7B4D12D109AD /* Entry+Serialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Entry+Serialization.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Entry+Serialization.swift"; sourceTree = ""; }; - 4DF16DAEEB6F7357BF3520DDEBB204C5 /* NavigatorDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NavigatorDelegate.swift; path = Sources/URLNavigator/NavigatorDelegate.swift; sourceTree = ""; }; - 4DF522262FD43A31939B404FAB1CDBF3 /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/Features/MultipartUpload.swift; sourceTree = ""; }; - 4E088D11842C15829D25C41127693532 /* Font.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Font.swift; path = Sources/Private/Model/Text/Font.swift; sourceTree = ""; }; - 4E106F539EFD985E901DB6221706FA68 /* MJPropertyType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyType.m; path = MJExtension/MJPropertyType.m; sourceTree = ""; }; - 4E167799FA0AC9BA04FEF298D51921F2 /* UIActivityIndicatorView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIActivityIndicatorView+Rx.swift"; path = "RxCocoa/iOS/UIActivityIndicatorView+Rx.swift"; sourceTree = ""; }; - 4E2DA31BB5B71385C2113C242EC8B930 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; - 4E5481FAD7A37F467015F2E5F084A2F1 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; - 4E591ECDB169F1C1FEA1146E243A7C90 /* YBIBCopywriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBCopywriter.h; path = YBImageBrowser/Helper/YBIBCopywriter.h; sourceTree = ""; }; - 4E618947B25509EAF74A486F71C3AD21 /* NSObject+MJClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJClass.h"; path = "MJExtension/NSObject+MJClass.h"; sourceTree = ""; }; - 4E9B98311325CDF25036C3281CDBCA4D /* YBIBCollectionViewLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBCollectionViewLayout.h; path = YBImageBrowser/Base/YBIBCollectionViewLayout.h; sourceTree = ""; }; - 4EA880E07DFDD100C561A72CF77D3DB3 /* YBIBDefaultWebImageMediator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBDefaultWebImageMediator.h; path = YBImageBrowser/WebImageMediator/YBIBDefaultWebImageMediator.h; sourceTree = ""; }; - 4ED0F1D4E099A8871122580C0CEA500F /* IQKeyboardNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.release.xcconfig; sourceTree = ""; }; - 4EF86CFFD59506D2A1BC9B5A27F56AA8 /* MAArcRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArcRenderer.h; path = MAMapKit.framework/Headers/MAArcRenderer.h; sourceTree = ""; }; - 4F32E9C5ED25E45138C2B009244D8436 /* YBIBVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoView.m; path = Video/YBIBVideoView.m; sourceTree = ""; }; - 4F68BD6425465F18A23B292AC6D7B869 /* KingfisherWebP-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KingfisherWebP-umbrella.h"; sourceTree = ""; }; - 4FA8FC41EA3473140B417F7087C0C8B5 /* NSString+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+MJExtension.h"; path = "MJExtension/NSString+MJExtension.h"; sourceTree = ""; }; - 4FD48EA2FBFB0058F98D944DAAEBE7C6 /* WKWebView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Rx.swift"; path = "RxCocoa/iOS/WKWebView+Rx.swift"; sourceTree = ""; }; - 4FE8974D1F8254C4E1857EBC09B66C6F /* AMapLocationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationVersion.h; path = AMapLocationKit.framework/Headers/AMapLocationVersion.h; sourceTree = ""; }; - 5001850E080A2D52833E20CF7C699547 /* ImmutableMappable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmutableMappable.swift; path = Sources/ImmutableMappable.swift; sourceTree = ""; }; - 500A5FEB2506800042D1146A691F3EAA /* zipWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = zipWith.swift; path = Source/RxSwift/zipWith.swift; sourceTree = ""; }; - 50577F76F9EACE83C1F8DB7EEEED065B /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = ""; }; + 45676A1039F53B7B44E96257EFC0755B /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; + 456C8BCCDAD47FF8693D75400A0E6323 /* SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SDWebImage-Info.plist"; sourceTree = ""; }; + 45847A481163BB50EC86B3708DED15B7 /* UITextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+Rx.swift"; path = "RxCocoa/iOS/UITextField+Rx.swift"; sourceTree = ""; }; + 458E91DE3D1A4CB674A1B648258294A3 /* AssetManager+ImageURL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+ImageURL.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+ImageURL.swift"; sourceTree = ""; }; + 45CE67E2BB4A7AEE69B84C4CB510B2F2 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; + 45F9E01CB1B5AD57F4855BEAFABE70FF /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 461F530A1AE9AF2A8B01A2FA5A394E06 /* Data+CompressionDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+CompressionDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+CompressionDeprecated.swift"; sourceTree = ""; }; + 46401BF2160F11FED118E9A0C76EDE18 /* TAAnimatedDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TAAnimatedDotView.m; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAAnimatedDotView.m; sourceTree = ""; }; + 464B9757D797F887E5C3971471FC51EE /* ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; sourceTree = ""; }; + 465B409F53432E81A5A256AE2E926B8C /* YBIBSentinel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBSentinel.m; path = YBImageBrowser/Helper/YBIBSentinel.m; sourceTree = ""; }; + 467D1F0F2F8DC4407D4DE1A116DA6822 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + 468FE65CB846EAB3F699F8E68CCDFC1E /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; + 469BBA85B3B01F0A015C20C5026AC171 /* YBIBCopywriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBCopywriter.h; path = YBImageBrowser/Helper/YBIBCopywriter.h; sourceTree = ""; }; + 46A6A76613C60A158BED1E4B71FF5A5E /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; + 46F633D702261FD3818B8BC3F02C82DC /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + 477AB1A71336EC844111AF30835E2B70 /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; + 4781270B7E505D46B77FC0AAE0844B23 /* DiffableSection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiffableSection.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/DiffableSection.swift; sourceTree = ""; }; + 47B17333D0907CCF5AF2E8678FD6D83A /* PhotoManager+Language.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoManager+Language.swift"; path = "Sources/HXPHPicker/Core/Util/PhotoManager+Language.swift"; sourceTree = ""; }; + 47B192A3DA152CDAA23C460A7AE465C0 /* AMapLocation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapLocation.debug.xcconfig; sourceTree = ""; }; + 47FF8124BAC952F35B2E4461CF41D102 /* RxTableViewSectionedAnimatedDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewSectionedAnimatedDataSource.swift; path = Sources/RxDataSources/RxTableViewSectionedAnimatedDataSource.swift; sourceTree = ""; }; + 480D5CF8CBC208B22CD517AAD0704692 /* CompoundBezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompoundBezierPath.swift; path = Sources/Private/Utility/Primitives/CompoundBezierPath.swift; sourceTree = ""; }; + 480FA25861EA5315A0609447A82AA5C2 /* MeasuringViewRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MeasuringViewRepresentable.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/MeasuringViewRepresentable.swift; sourceTree = ""; }; + 48235EA9287F0138124F456EEB881070 /* OIMUpdateFriendsReq.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMUpdateFriendsReq.m; path = OpenIMSDK/Model/OIMUpdateFriendsReq.m; sourceTree = ""; }; + 482D2B3E2E595AC7494A2C02FBBBF93E /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = ""; }; + 488940941E25EEC0F1419CDC1C942616 /* ViewEpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewEpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/ViewEpoxyModeled.swift; sourceTree = ""; }; + 4898667850B1F683D057A578214EAE3E /* IQTextInputViewNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-prefix.pch"; sourceTree = ""; }; + 48C0D0820DEB2784A88DFE222DDC52D5 /* AnimationCacheProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationCacheProvider.swift; path = Sources/Public/AnimationCache/AnimationCacheProvider.swift; sourceTree = ""; }; + 48C58BD4112BA7365B046A10EC59B716 /* DDLoggerNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDLoggerNames.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDLoggerNames.h; sourceTree = ""; }; + 48D3D3955FABE41F8DDF194B898A86F8 /* IdentifiableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentifiableType.swift; path = Sources/Differentiator/IdentifiableType.swift; sourceTree = ""; }; + 4988D7FAB199524EF97468FDA1024E50 /* AMapUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapUtility.h; path = AMapFoundationKit.framework/Headers/AMapUtility.h; sourceTree = ""; }; + 49B586C2492DB8E3B98452DAA26E3559 /* AMapFoundation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapFoundation.release.xcconfig; sourceTree = ""; }; + 4A1C62F9A38F1FD80FB92031BAFDFAF5 /* MAOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayRenderer.h; path = MAMapKit.framework/Headers/MAOverlayRenderer.h; sourceTree = ""; }; + 4A22DBEDA2395191F537EFCBEB528C98 /* DataRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataRequest.swift; path = Source/Core/DataRequest.swift; sourceTree = ""; }; + 4A2965AF467F1BD2E4E571F66AA1F8EA /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = ""; }; + 4A821688C0C584B0F53FDAD23FCBF38E /* TransformLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformLayer.swift; path = Sources/Private/CoreAnimation/Layers/TransformLayer.swift; sourceTree = ""; }; + 4A932087ABB9A35400DD7C526A39F7CA /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; + 4AACBABCF5B90F04C33A9FECD309A234 /* UIViewController+ParentContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ParentContainer.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift"; sourceTree = ""; }; + 4AB1931CF524B963B8848089EAC19A28 /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = ""; }; + 4AC29025924C23D539E1D1221AC29A60 /* BaseAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseAnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift; sourceTree = ""; }; + 4AFBBCC3AC2D57FEB1F37DD9DD64C777 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; }; + 4B116CF6C24DE8991292084F188FE48C /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; + 4B1B2B7ADF26863573179177D46607DB /* OIMSimpleRequstInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSimpleRequstInfo.m; path = OpenIMSDK/Model/OIMSimpleRequstInfo.m; sourceTree = ""; }; + 4B3761DE77E2B197B16591EDBD27853D /* GYSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GYSDK.release.xcconfig; sourceTree = ""; }; + 4B3A498E078050E333B31F85315541AC /* UITabBarController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBarController+Rx.swift"; path = "RxCocoa/iOS/UITabBarController+Rx.swift"; sourceTree = ""; }; + 4B3B1BFD01D9928B8320CCFBE483C0B6 /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift; sourceTree = ""; }; + 4B4488AE2B9DCBD2B129E527FCB438E2 /* AMapSearchObjV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchObjV1.h; path = AMapSearchKit.framework/Headers/AMapSearchObjV1.h; sourceTree = ""; }; + 4B629D4BA0B10122B36F8D3078B38BA6 /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = ""; }; + 4BB38AD055FDA8B028F1CFCB6AC51C95 /* IQKeyboardInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardInfo.swift; path = IQKeyboardNotification/Classes/IQKeyboardInfo.swift; sourceTree = ""; }; + 4BB5E60ABB3231746217C7BE67D898E0 /* NSObject+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx.swift"; path = "RxCocoa/Foundation/NSObject+Rx.swift"; sourceTree = ""; }; + 4BC960EB9A445C244712AC3B35F7B71F /* PhotoEditorCropToolModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorCropToolModel.swift; path = Sources/HXPHPicker/Editor/Model/PhotoEditorCropToolModel.swift; sourceTree = ""; }; + 4BE6176D5BCDA6C689675AD9CC5D2E6B /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = ""; }; + 4C05ACB5044590C564E48226710D1D64 /* DotLottieFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieFile.swift; path = Sources/Public/DotLottie/DotLottieFile.swift; sourceTree = ""; }; + 4C0D804C76B78471CEB59B3283599A1A /* DefaultAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultAnimationCache.swift; path = Sources/Public/AnimationCache/DefaultAnimationCache.swift; sourceTree = ""; }; + 4C1A9571D4A22125DDC26AAC81C21512 /* ShapeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift; sourceTree = ""; }; + 4C7BC7D5D706A55CD1A71A40EB4D8F08 /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = ""; }; + 4C84C4C711FFA7CF45DD30F7F1B9F6FB /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextView/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 4C9C1726151F48CC295DA74726E495B9 /* RxSearchControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift; sourceTree = ""; }; + 4CC6AA20493473721AA86C0A1A50A8DD /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = ""; }; + 4CD359CC21DFC73BA0F1DDCAF0486162 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; + 4CDD47B22A2046775AB63801AE6381A4 /* UISwitch+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISwitch+Rx.swift"; path = "RxCocoa/iOS/UISwitch+Rx.swift"; sourceTree = ""; }; + 4CE033DD89D2C7F468E6CF4145EF8AB3 /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = ""; }; + 4CE1D44D51C8A45FD369FE3952E1D2B2 /* CocoaMQTTStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTStorage.swift; path = Source/CocoaMQTTStorage.swift; sourceTree = ""; }; + 4CFB6F6DFDEB8E69C4A18B6691BBDD7F /* SharedSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Concurrency.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift"; sourceTree = ""; }; + 4D15480DB79AA35C1FA293BFB624DD79 /* URLNavigator-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "URLNavigator-prefix.pch"; sourceTree = ""; }; + 4D21C7C434B3F4BDFF04AA060D589C0E /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; + 4D2A4FB1654D2C01A0BB8DF98D396CF8 /* MarqueeLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MarqueeLabel-umbrella.h"; sourceTree = ""; }; + 4D47A9F8604BB1D7EE3F6CC46B6939B1 /* SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SnapKit-Info.plist"; sourceTree = ""; }; + 4D4805E9DDAB51282FCDDBEF197F3FFC /* IQKeyboardConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardConstants.swift; path = IQKeyboardCore/Classes/Constants/IQKeyboardConstants.swift; sourceTree = ""; }; + 4D4B40182162CD669ED8D1D713C1A108 /* Core+UIImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIImageView.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIImageView.swift"; sourceTree = ""; }; + 4D526378FA358EC2F96BAC5D581EFC75 /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = ""; }; + 4DDFE96FD63E4568E70A89429B350567 /* RxSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.release.xcconfig; sourceTree = ""; }; + 4DEA470D696BF33083541B017CF60B05 /* PreviewPhotoViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewPhotoViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PreviewPhotoViewCell.swift; sourceTree = ""; }; + 4DF8F1CDC802D0250733D25924A17835 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; + 4E1182014BA99CB0BFD1ED56B36F4889 /* Date+Components.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Components.swift"; path = "Sources/SwiftDate/Date/Date+Components.swift"; sourceTree = ""; }; + 4E15CCE57FB545DAC0D33E55EBB19B2A /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; + 4E1B70895E7D4B191C6A7482FF45BC2E /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/Features/NetworkReachabilityManager.swift; sourceTree = ""; }; + 4E2E8E4E7D7E410B6C94E5C4C0C3DC04 /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; + 4E36CFCF21F8FB81BAA8FBA2F261E949 /* DictionaryTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DictionaryTransform.swift; path = Sources/DictionaryTransform.swift; sourceTree = ""; }; + 4E558D8C6D3AFA14C61F24DA97C33E8F /* YBImageBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBImageBrowser.h; path = YBImageBrowser/YBImageBrowser.h; sourceTree = ""; }; + 4E62540E472572F4BB15B036489695F3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJExtension/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 4E65F085B0A0714C132C36302B52DEF4 /* WebP.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebP.framework; path = Vendor/WebP.framework; sourceTree = ""; }; + 4E70EBF8D3A2110BAE7AB2F5C0FCE6B7 /* YBIBVideoCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoCell.h; path = Video/YBIBVideoCell.h; sourceTree = ""; }; + 4E8D0DAD81814DB92CFEE73A78339252 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; + 4E9633A6F0549DD0FA20124BD54A186F /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; + 4EB58ABC19057B8242704E3499769C82 /* KeychainWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainWrapper.swift; path = SwiftKeychainWrapper/KeychainWrapper.swift; sourceTree = ""; }; + 4EC813ED21BF52910890B2D6E3F54ECD /* YYAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYAnimatedImageView.h; path = YYImage/YYAnimatedImageView.h; sourceTree = ""; }; + 4EEDDA2C8BA124FCC4F0D3BA74E7881E /* ZXSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZXSDK.debug.xcconfig; sourceTree = ""; }; + 4EF66DE3B3203486D7F366B2E5AAD62A /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + 4F087BB3235520C3C84B06484C182445 /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; + 4F193B62510CE37DFCF289B85FBBE78F /* LottieSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieSwitch.swift; path = Sources/Public/Controls/LottieSwitch.swift; sourceTree = ""; }; + 4F1DC11660BCCAEE4264510FD65F5749 /* CollectionViewSectionedDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollectionViewSectionedDataSource.swift; path = Sources/RxDataSources/CollectionViewSectionedDataSource.swift; sourceTree = ""; }; + 4F2253C444203F6FFFE1CEF38084CC72 /* IQKeyboardToolbar-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-prefix.pch"; sourceTree = ""; }; + 4F3BA19563A1CD125A820FAECF01DAD1 /* 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 = ""; }; + 4F4493CF215BF661CDF160795093A360 /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = ""; }; + 4F4A9FE6A3F2ACD446C28FAE8E1F0E53 /* UIView+SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+SwiftUIView.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIView+SwiftUIView.swift"; sourceTree = ""; }; + 4FB94AE8C5C0B522D4E322D48D4429C0 /* EpoxyableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/EpoxyableView.swift; sourceTree = ""; }; + 4FCC1C19DDE1E49C438978C0B7E9C33E /* IQKeyboardManager+ActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ActiveConfiguration.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift"; sourceTree = ""; }; + 4FCEA9AD6C802E052AB4F36F955C37E9 /* PreCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift; sourceTree = ""; }; + 4FE9017C4BF1888D86038C0AADE59478 /* FramePingResp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FramePingResp.swift; path = Source/FramePingResp.swift; sourceTree = ""; }; + 4FF5C188C69C55F5F58943A32C6A5590 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; + 500DC6BC616ED25251A50A86C36870BA /* CocoaMQTT5Message.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTT5Message.swift; path = Source/CocoaMQTT5Message.swift; sourceTree = ""; }; + 503405F11788ADB88FD0ED81209159EE /* KingfisherManager+LivePhoto.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KingfisherManager+LivePhoto.swift"; path = "Sources/General/KingfisherManager+LivePhoto.swift"; sourceTree = ""; }; + 504C9200A2BCDBCE5D1038BE5C36DC92 /* Defaults+StringToBool.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Defaults+StringToBool.swift"; path = "Sources/Defaults+StringToBool.swift"; sourceTree = ""; }; + 5057B056546FEDFFD71C7FFDC03FF7D0 /* DDASLLogCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDASLLogCapture.m; path = Sources/CocoaLumberjack/DDASLLogCapture.m; sourceTree = ""; }; 5069D199AB328CCD047E61C632CD7C32 /* SwiftKeychainWrapper */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftKeychainWrapper; path = SwiftKeychainWrapper.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 50B45299DA66A11F777502AF15634A23 /* Picker+PhotoTools.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+PhotoTools.swift"; path = "Sources/HXPHPicker/Picker/Util/Picker+PhotoTools.swift"; sourceTree = ""; }; - 50B830DCD4FD06C452454EBFFF301A61 /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = ""; }; - 50BEB8D58D55B2FCF2EC6E5DFC90DAC7 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; - 50D8313D8270CA25B860F255BE28A21D /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = ""; }; - 50ED832AF109F2B258D94F54C004E6F6 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 5110D595F02FD67EECD601B158E606C1 /* TextAnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimatorNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift; sourceTree = ""; }; - 511BDA791EC00DB0404C15C4E11A8BA1 /* MAGroundOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlayRenderer.h; path = MAMapKit.framework/Headers/MAGroundOverlayRenderer.h; sourceTree = ""; }; - 5164BCEA802EC5E7E644A805573775FB /* MAMultiPointOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlay.h; path = MAMapKit.framework/Headers/MAMultiPointOverlay.h; sourceTree = ""; }; + 507C90449A9C2A97E2871ACAC9B1A441 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; + 50A29C91398140EF644669A498986A8D /* PhotoListCellConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoListCellConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PhotoListCellConfiguration.swift; sourceTree = ""; }; + 50A7A193651AB0CFCF223595CA19AA95 /* Entry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Entry.swift; path = Sources/Private/EmbeddedLibraries/ZipFoundation/Entry.swift; sourceTree = ""; }; + 50B2799B201F8DE8120BD7D5DF850756 /* YBIBContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBContainerView.h; path = YBImageBrowser/Base/YBIBContainerView.h; sourceTree = ""; }; + 50B69BB9C494FCADD9F52F68B4745C13 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; + 50E385227AF12ECBFB0513F6D086049E /* IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardCore-Info.plist"; sourceTree = ""; }; + 50E7654753D12870F9957B1D05E0070F /* MAGeodesicPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeodesicPolyline.h; path = MAMapKit.framework/Headers/MAGeodesicPolyline.h; sourceTree = ""; }; + 5163127D0CC7B14BDF70ED1E3ABB888C /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; + 518C08021C81FCD665925D5FE7DB2D2D /* TextCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift; sourceTree = ""; }; 518C323F07471B8EF777A8488A6431AF /* Pods-QuickLocation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-QuickLocation.release.xcconfig"; sourceTree = ""; }; - 5199447D815E8771DC0B057BD811E2AE /* OIMMergeElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMMergeElem.m; path = OpenIMSDK/Model/OIMMergeElem.m; sourceTree = ""; }; 519AF98C92B517DD023896CD077EBFD4 /* CocoaLumberjack-CocoaLumberjackPrivacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "CocoaLumberjack-CocoaLumberjackPrivacy"; path = CocoaLumberjackPrivacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 51BA12DF890414FF3DD09E9C68FA652D /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/AssetsLibrary.framework; sourceTree = DEVELOPER_DIR; }; 51BA97E8B5085EFFB47BC9C0B785CEA7 /* lottie-ios */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "lottie-ios"; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 51C1A964478BEE6F4C1DE2808C0CB83F /* SGWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGWeakProxy.m; path = SGQRCode/WeakProxy/SGWeakProxy.m; sourceTree = ""; }; - 51DC42C2419121C34A1A37FAEF5CADCD /* YBIBDataMediator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBDataMediator.h; path = YBImageBrowser/Base/YBIBDataMediator.h; sourceTree = ""; }; - 51F0C1F7C00691BEF0CFA4F31C54FF3A /* AssetManager+Authorization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+Authorization.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+Authorization.swift"; sourceTree = ""; }; - 51F373DF5148C21C78733AFACF8E29F0 /* GradientStrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift; sourceTree = ""; }; - 51F6B5ECB20B05B4A5117043241B8C90 /* UIView+WebCacheState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheState.m"; path = "SDWebImage/Core/UIView+WebCacheState.m"; sourceTree = ""; }; - 522FFC7277C7384DC812F49DAC6A2BD7 /* AnimationSubview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationSubview.swift; path = Sources/Public/iOS/AnimationSubview.swift; sourceTree = ""; }; - 525CD205D27F9863472F14703FE96F86 /* IQKeyboardCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardCore-dummy.m"; sourceTree = ""; }; - 5267B7BCFE0BDC27381D9A3718337CFC /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; - 52826A20DDBD116B62604609F4896887 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/dsp/cpu.h; sourceTree = ""; }; - 52A9B8EECAC572CE3407A8026D6DA569 /* IntegerType+IdentifiableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IntegerType+IdentifiableType.swift"; path = "Sources/RxDataSources/IntegerType+IdentifiableType.swift"; sourceTree = ""; }; - 52DBEA1CC4EF7DC089E199B3B942A583 /* TimeInterval+Formatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TimeInterval+Formatter.swift"; path = "Sources/SwiftDate/Foundation+Extras/TimeInterval+Formatter.swift"; sourceTree = ""; }; - 52DFC3D116D363CE880108238BB7C1B9 /* IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbar.swift; path = IQKeyboardToolbar/Classes/IQKeyboardToolbar.swift; sourceTree = ""; }; - 52E0374CED5B77EA1A9488888C3A901E /* DDFileLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDFileLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDFileLogger.h; sourceTree = ""; }; - 52F73D847B989EAAA31283582D8074C4 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - 5318EE889AE2ED47F81CC78C2069CB35 /* OIMGroupInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMGroupInfo.h; path = OpenIMSDK/Model/OIMGroupInfo.h; sourceTree = ""; }; - 533D9571D1EC332BF0EBA2C3A4F8E994 /* TimePeriod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriod.swift; path = Sources/SwiftDate/TimePeriod/TimePeriod.swift; sourceTree = ""; }; - 5369DE443FA67414E25C47C16C19CDD2 /* YYFrameImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYFrameImage.h; path = YYImage/YYFrameImage.h; sourceTree = ""; }; - 53902042B5E9FA22F75D07AD3A462902 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/Features/ResponseSerialization.swift; sourceTree = ""; }; - 5393BC5A87C5F37D204A620A3F1979BA /* OIMManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMManager.h; path = OpenIMSDK/Interface/OIMManager.h; sourceTree = ""; }; - 53E27EF908C7FB5EFEE14ADD95C69C96 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = ""; }; - 53EE3FDC6BBE60EB6D5FD6C0201E710A /* PhotoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoManager.swift; path = Sources/HXPHPicker/Core/Util/PhotoManager.swift; sourceTree = ""; }; - 53F1950A2EA3EAEE2DB8542A2B3D3F33 /* PhotoPickerViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPickerViewCell.swift; sourceTree = ""; }; - 541168B5F63506CE532597108DD96983 /* SGScanCodeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGScanCodeDelegate.h; path = SGQRCode/QRCode/SGScanCodeDelegate.h; sourceTree = ""; }; - 541F4A250353BC493AD6863F891D9F95 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - 5437C08DBD79B497818F7354E847A2DD /* SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedSequence.swift; path = RxCocoa/Traits/SharedSequence/SharedSequence.swift; sourceTree = ""; }; - 5453B61652D70959B356E49D87F13FA2 /* YBIBImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageCell.h; path = YBImageBrowser/Image/YBIBImageCell.h; sourceTree = ""; }; - 547E17D5968AAA672C509552228E9667 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - 5481AA91905207DFC89661643C0EFD89 /* DDLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDLog.m; path = Sources/CocoaLumberjack/DDLog.m; sourceTree = ""; }; - 5481E8B55B3E97A187B601A410FD66DB /* DisplayLink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisplayLink.swift; path = Sources/Utility/DisplayLink.swift; sourceTree = ""; }; - 54840BCE2FF7D34360F15C8D7EE872EC /* OIMSearchParam.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSearchParam.h; path = OpenIMSDK/Model/OIMSearchParam.h; sourceTree = ""; }; - 54869EC81C5539A8AD92881BFD342D18 /* LayerEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerEffect.swift; path = Sources/Private/Model/LayerEffects/LayerEffect.swift; sourceTree = ""; }; - 54A3F0BF75389BB6C8ACD25D8C0B04B9 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; - 54B4A854479D2A862E4A10285D168D0F /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; - 54D4326B12078EADA37433D8A7688F45 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = ""; }; - 5581B1DE9E573F96230513861EAC652D /* fromAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = fromAsync.swift; path = Source/RxSwift/fromAsync.swift; sourceTree = ""; }; - 558D712381B568AD9457624A9865B29B /* RxSwiftExt-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwiftExt-dummy.m"; sourceTree = ""; }; - 5592B24A3177FEA4ABEED9D0B3A6F84B /* ShapeRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeRenderLayer.swift; path = Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift; sourceTree = ""; }; - 559EB65974650632BD59D0C0A9472C5E /* RxRelay-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxRelay-Info.plist"; sourceTree = ""; }; - 55A2692DAD3BED620DA0EB83FC8A09FE /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; - 55EA2E5B9949ED4975A64ED4EF5C4522 /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/Features/RequestCompression.swift; sourceTree = ""; }; - 55FD0B6A9D6EEFE6A1C9B281B105F80F /* AnimationImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationImageProvider.swift; path = Sources/Public/ImageProvider/AnimationImageProvider.swift; sourceTree = ""; }; - 560ABA646A2022BD1E5E93D0A9E39B26 /* OIMGroupApplicationInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMGroupApplicationInfo.h; path = OpenIMSDK/Model/OIMGroupApplicationInfo.h; sourceTree = ""; }; - 5631AFA1B502DB722A84A7D8AEBC9608 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 564EC0EDD2FAFB0AF6925E211B89F1CD /* SDImageFramePool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFramePool.h; path = SDWebImage/Private/SDImageFramePool.h; sourceTree = ""; }; - 565598230E6135EF0029F6DFA99179EE /* OIMFullUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMFullUserInfo.m; path = OpenIMSDK/Model/OIMFullUserInfo.m; sourceTree = ""; }; - 568B09274F880366B93DA437F7833148 /* YBIBLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBLoadingView.m; path = YBImageBrowser/AuxiliaryView/YBIBLoadingView.m; sourceTree = ""; }; - 56AE43789F036F7E37E7C78CE526A331 /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; - 56B8A080F84269FEB98617E83C0454DC /* CallbackProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CallbackProxy.m; path = OpenIMSDK/CallbackProxy/CallbackProxy.m; sourceTree = ""; }; - 56C83FF28405BC4C60D1E897F48C954F /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - 56C8858466B5059D32D3438BB36FF23C /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - 571DADB16DAF9DD3606BAC0AD82E99A9 /* URL+Moya.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+Moya.swift"; path = "Sources/Moya/URL+Moya.swift"; sourceTree = ""; }; - 573439E4451FA391A0ED73513D17D6D4 /* MAMapView+Resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MAMapView+Resource.h"; path = "MAMapKit.framework/Headers/MAMapView+Resource.h"; sourceTree = ""; }; - 574CAF553188FC3A01A0AEDBB464EF34 /* MATerrainOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATerrainOverlay.h; path = MAMapKit.framework/Headers/MATerrainOverlay.h; sourceTree = ""; }; - 5751CB4FB7042A2EF15A1E430570581E /* Region.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Region.swift; path = Sources/SwiftDate/DateInRegion/Region.swift; sourceTree = ""; }; - 5761947A8E5C4B96B80D8634E5181BC3 /* KeychainWrapperSubscript.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainWrapperSubscript.swift; path = SwiftKeychainWrapper/KeychainWrapperSubscript.swift; sourceTree = ""; }; - 57693EF93CD5CEFDC6308D6BDAB5934B /* VideoEditorCropViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorCropViewCell.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorCropViewCell.swift; sourceTree = ""; }; - 576B79FED5EC1392CFDE58BFFB2CC4A0 /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = ""; }; - 57760EBDF3FB84060CA612EBDDE56C1C /* StarNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StarNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift; sourceTree = ""; }; - 577E69204BACD94290D8AA0F05255858 /* EnumTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnumTransform.swift; path = Sources/EnumTransform.swift; sourceTree = ""; }; - 57B0EA9833CE74F30D475E5DEED4A1DC /* MAAnimatedAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnimatedAnnotation.h; path = MAMapKit.framework/Headers/MAAnimatedAnnotation.h; sourceTree = ""; }; - 57C5F40A9D38F5D71424CF3307F62112 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - 57CDD5F0D5ADF12E245977A57296A75F /* MakeViewProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MakeViewProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/MakeViewProviding.swift; sourceTree = ""; }; - 57E2B9941F8CBF419C46C68C9AF8CE62 /* SDCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCollectionViewCell.h; path = SDCycleScrollView/Lib/SDCycleScrollView/SDCollectionViewCell.h; sourceTree = ""; }; - 57E9017AEEC33B5ECECDD10EAB6C564E /* RxDataSources-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxDataSources-dummy.m"; sourceTree = ""; }; - 57ECE45D936904EF5023F94ACECA8520 /* ControlEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlEvent.swift; path = RxCocoa/Traits/ControlEvent.swift; sourceTree = ""; }; - 57F2F6105FAEB977A72B69CDA9E35CEF /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; - 57F981F58E1DB9D729CF4481BFD2287F /* DDAssert.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAssert.swift; path = Sources/CocoaLumberjackSwift/DDAssert.swift; sourceTree = ""; }; - 580691100EB70A5ACF290F17FF4D84F6 /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift; sourceTree = ""; }; - 58210E256435ABC11184FBEC80BBAD31 /* AMapSearch.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapSearch.release.xcconfig; sourceTree = ""; }; - 583EBFC93BECC151571D0013BD13AE47 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 584B397D010BE3052C3967E87A313165 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - 587526430D6035E65DAF5B13CA90B45D /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = ""; }; - 5875DE076530A11A7D58B4A3F7C35B1C /* KingfisherWebP.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KingfisherWebP.release.xcconfig; sourceTree = ""; }; - 58A066A3C3FB7F76C197EADAE084688C /* YBIBUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBUtilities.m; path = YBImageBrowser/Helper/YBIBUtilities.m; sourceTree = ""; }; + 51C4B6A72A5C25F467F679AA6756374B /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/PrimitiveSequence/Maybe.swift; sourceTree = ""; }; + 520200F35D7AC74EBA71E00F2CBF4F38 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; + 522607A5314BF8105FC7AA0003C2790A /* YBIBVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoView.h; path = Video/YBIBVideoView.h; sourceTree = ""; }; + 524B28EBB88699EA3D332A42A3619B8E /* FileManager+ZIP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FileManager+ZIP.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/FileManager+ZIP.swift"; sourceTree = ""; }; + 524F638285FA3A2ABDFCF6B787490342 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; + 5262A8466C222B81F01152B34DA64A09 /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; + 52A20B3BF7B48A758BC8D999EB4539AE /* URLMatchResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLMatchResult.swift; path = Sources/URLMatcher/URLMatchResult.swift; sourceTree = ""; }; + 52B031927313E161861104668E21A8DE /* OIMNotificationElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMNotificationElem.h; path = OpenIMSDK/Model/OIMNotificationElem.h; sourceTree = ""; }; + 52C8C7A591F76293D6D6BEE0D5C27010 /* AMapSearchKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchKit.h; path = AMapSearchKit.framework/Headers/AMapSearchKit.h; sourceTree = ""; }; + 52D1166499BF80F225745AF3A61670DD /* EditorImageResizerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorImageResizerView.swift; path = Sources/HXPHPicker/Editor/View/Photo/EditorImageResizerView.swift; sourceTree = ""; }; + 52DE37F1AAEEF218852464F11E143656 /* LayerDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerDebugging.swift; path = Sources/Private/Utility/Debugging/LayerDebugging.swift; sourceTree = ""; }; + 52DF6CFFEA5B2F7347476A2524E03780 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; + 52E0CA4A9F089F647F586FB444DBEF13 /* OIMNotificationElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMNotificationElem.m; path = OpenIMSDK/Model/OIMNotificationElem.m; sourceTree = ""; }; + 52ED7B4D2CAEA2EACAF3CAE743DB8D1D /* UIView+IQKeyboardExtensionDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionDeprecated.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionDeprecated.swift"; sourceTree = ""; }; + 52F8D243AD8458EB2B14CD5EFB786D3A /* ObjectMapper-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ObjectMapper-umbrella.h"; sourceTree = ""; }; + 530D37E6D2B62B3C6E8375CD070A1ED6 /* IQKeyboardManager+Appearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift"; sourceTree = ""; }; + 53184C1114CEE9521E8AB97A2DB43893 /* EditorStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerView.swift; sourceTree = ""; }; + 532E9030A15F6711B544C8BEAAB3529F /* LottieAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimation.swift; path = Sources/Public/Animation/LottieAnimation.swift; sourceTree = ""; }; + 53594C8166DD9CECAC206989DD8F274D /* MJFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJFoundation.m; path = MJExtension/MJFoundation.m; sourceTree = ""; }; + 536DEEB258E2B70900710B5E8FC66D08 /* MAAnnotationMoveAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationMoveAnimation.h; path = MAMapKit.framework/Headers/MAAnnotationMoveAnimation.h; sourceTree = ""; }; + 5395433AE72618F4C6E62E1EAD06583D /* MACircleRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircleRenderer.h; path = MAMapKit.framework/Headers/MACircleRenderer.h; sourceTree = ""; }; + 53A4EFF13E5D8770804115A05B68B1C5 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + 53A748F8442ACE4E6959806D00DB0272 /* Changeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Changeset.swift; path = Sources/Differentiator/Changeset.swift; sourceTree = ""; }; + 53CAB2921C752E78CA55B05D3BE85065 /* OIMSearchResultInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSearchResultInfo.m; path = OpenIMSDK/Model/OIMSearchResultInfo.m; sourceTree = ""; }; + 53F52C3A02F01324899BC12175E83B1E /* FloatValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FloatValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift; sourceTree = ""; }; + 53F75E2A009040E7C88B0F41EF87FC7B /* Editor+UIImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Editor+UIImageView.swift"; path = "Sources/HXPHPicker/Editor/Util/Editor+UIImageView.swift"; sourceTree = ""; }; + 53F8B1507A4C52B30BD509386B591FD6 /* Data+Serialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Serialization.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Serialization.swift"; sourceTree = ""; }; + 540AF0A1A3033C4B8E1EA0CD46426BD6 /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = ""; }; + 543767B9CF81EDA9400B0DF8D3EEE564 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + 543C52D19DFF7450FD0F1BFCDEBDB90B /* MarqueeLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MarqueeLabel.release.xcconfig; sourceTree = ""; }; + 546737B43CD88885573162690F1B1567 /* URLNavigator-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "URLNavigator-umbrella.h"; sourceTree = ""; }; + 548902D1C1F1F472857640F1054B46CC /* TagListView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TagListView.swift; path = TagListView/TagListView.swift; sourceTree = ""; }; + 54C7EFF876F691F4BD0D240C539E241D /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = ""; }; + 54CE1D0923681693A97900F260F5D57A /* SGGenerateQRCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGGenerateQRCode.h; path = SGQRCode/QRCode/SGGenerateQRCode.h; sourceTree = ""; }; + 54E4EED20E396CB065FE382ED36B44A1 /* DataSources.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataSources.swift; path = Sources/RxDataSources/DataSources.swift; sourceTree = ""; }; + 550003481FF70BAFA7B39AADB487E760 /* FrameAuth.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FrameAuth.swift; path = Source/FrameAuth.swift; sourceTree = ""; }; + 5516434AFE89CDE1669E3995A27B09FE /* EpoxyableView+SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EpoxyableView+SwiftUIView.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxyableView+SwiftUIView.swift"; sourceTree = ""; }; + 5520E606C013E1A2620E94D8169AF82C /* Observable+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Concurrency.swift"; path = "RxSwift/Observable+Concurrency.swift"; sourceTree = ""; }; + 5593B53EE9179304F30998CE87A02732 /* URLPatchComponentMatchResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLPatchComponentMatchResult.swift; path = Sources/URLMatcher/URLPatchComponentMatchResult.swift; sourceTree = ""; }; + 55A50E8CBFB62149F0DCE7D564030662 /* CallbackProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CallbackProxy.m; path = OpenIMSDK/CallbackProxy/CallbackProxy.m; sourceTree = ""; }; + 55A85B8F88C0FFFDA82F7292E474114A /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; + 55B16604977C9DD7CC41867CF659D286 /* UnitBezier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnitBezier.swift; path = Sources/Private/Utility/Primitives/UnitBezier.swift; sourceTree = ""; }; + 55D46CF71D5154F263AC8564AA723692 /* MAParticleOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayRenderer.h; path = MAMapKit.framework/Headers/MAParticleOverlayRenderer.h; sourceTree = ""; }; + 560267D27DA0FB5CD68E69E62A79BFF6 /* PhotoEditorView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorView.swift; sourceTree = ""; }; + 5625B9E2F5C57D4695967DE287CA1547 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; + 5630C95267C5EDAFCAA18472484F8E66 /* CocoaMQTT-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaMQTT-umbrella.h"; sourceTree = ""; }; + 569BA4EC75A7753E8E96D8A92267A5D3 /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = ""; }; + 56A5A309D34A2E484F6D17F00DAA899C /* SharedSequence+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift"; sourceTree = ""; }; + 56BA8582242132FCF45DE6D6F7D5E756 /* AMapFoundationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationKit.h; path = AMapFoundationKit.framework/Headers/AMapFoundationKit.h; sourceTree = ""; }; + 56C132AB3EA4F392D2A8DD774E65EFEE /* RxCollectionViewSectionedReloadDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewSectionedReloadDataSource.swift; path = Sources/RxDataSources/RxCollectionViewSectionedReloadDataSource.swift; sourceTree = ""; }; + 56C4621AA9773E450944A7A00C7F17A1 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; + 56CE73BB666FB1014D9B132720BD8776 /* CameraViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraViewController.swift; path = Sources/HXPHPicker/Picker/Controller/CameraViewController.swift; sourceTree = ""; }; + 56F63B4CF7F8651C02683E839A24EC1B /* FillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift; sourceTree = ""; }; + 570E6DBF4A44E5546A3C965D9E18073A /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = ""; }; + 571BB5738ACB42F42C34CE19067238F4 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = ""; }; + 572C33F4140022FE99118556F038018B /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = ""; }; + 57392B079508E1A952EB83F397A6AD5B /* ReplayRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplayRelay.swift; path = RxRelay/ReplayRelay.swift; sourceTree = ""; }; + 5758CE5A67AFA979046916DC97CC125B /* NSView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSView+Rx.swift"; path = "RxCocoa/macOS/NSView+Rx.swift"; sourceTree = ""; }; + 57893FB92C503783316937718B7D6CFE /* Formatter+Protocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Formatter+Protocols.swift"; path = "Sources/SwiftDate/Formatters/Formatter+Protocols.swift"; sourceTree = ""; }; + 57A2457AF7E1D5EF7A21A2F3D540DA59 /* YBIBVideoCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoCell.m; path = Video/YBIBVideoCell.m; sourceTree = ""; }; + 57A5630091B1B1F7BEB362A6247CA11C /* Font.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Font.swift; path = Sources/Private/Model/Text/Font.swift; sourceTree = ""; }; + 57AFF0686BCCD3B8F8E64BF3694786B1 /* FramePubRec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FramePubRec.swift; path = Source/FramePubRec.swift; sourceTree = ""; }; + 57B4109175DBB8D4D441F6102ED76412 /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; sourceTree = ""; }; + 57C8B09E9B907A910FA2CA113D4EE94C /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; + 57CD8A4DBF03A8134B3DF489CCC344E3 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/Features/MultipartFormData.swift; sourceTree = ""; }; + 57DACE5762DB2310A02D85503ED9DED1 /* MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJProperty.h; path = MJExtension/MJProperty.h; sourceTree = ""; }; + 57DAE67362F099548C9435D60264C18C /* EffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift; sourceTree = ""; }; + 57E35B7EB1A35EA7A210180295460940 /* ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist"; sourceTree = ""; }; + 57E3B3CB9A7E71E3C41DDC8AC8973B74 /* IQTextView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextView-dummy.m"; sourceTree = ""; }; + 57E872926A9F0A58259D98D0E6C8AD28 /* cascade.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = cascade.swift; path = Source/RxSwift/cascade.swift; sourceTree = ""; }; + 57F61591FF5B1753F1EDA95DD7F1F221 /* IQKeyboardManager+Resign_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign_Deprecated.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift"; sourceTree = ""; }; + 57F68566C1D13B6EF1FE82022B5A1E98 /* LottieColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieColor.swift; path = Sources/Public/Primitives/LottieColor.swift; sourceTree = ""; }; + 5801738C638163C98246CB6F00BA28B0 /* Popover.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Popover.modulemap; sourceTree = ""; }; + 58040DF6D7E6F543B8DB10D3E910311E /* ThreadSafeDictionary.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThreadSafeDictionary.swift; path = Source/ThreadSafeDictionary.swift; sourceTree = ""; }; + 581BE4EB6C70F24C0FEE8559206D377C /* UI+SectionedViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UI+SectionedViewType.swift"; path = "Sources/RxDataSources/UI+SectionedViewType.swift"; sourceTree = ""; }; + 58257C6D930B04CA0CE4B0BC5E9FBA44 /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; + 583B4C6A567749AA875BA86DF64F5671 /* RxCocoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoa.h; path = RxCocoa/RxCocoa.h; sourceTree = ""; }; + 5848253A22D6396B7A068D7D2A0277C9 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; + 584FC894D422101627A0823336B995E1 /* IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; + 5852FF1C0268DBCE67F0F0E39DE0B510 /* AMapSearchObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchObj.h; path = AMapSearchKit.framework/Headers/AMapSearchObj.h; sourceTree = ""; }; + 586CAB7528D3A6B6645EDB5A9397E2FB /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = ""; }; + 58786133E8B41F9CB8F1338AF6A58900 /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = ""; }; + 5890D279B149E323005199F6CC97AF35 /* OpenIMSDKCore-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OpenIMSDKCore-xcframeworks.sh"; sourceTree = ""; }; 58AE0544E0C381DDBD09356C357EC82B /* SwiftDate */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftDate; path = SwiftDate.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 58B9B2BED448FF6B8E278E87D6D430A3 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - 58D937DEC9A6DADC4020FC73AD7DB7DD /* OIMMergeElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMMergeElem.h; path = OpenIMSDK/Model/OIMMergeElem.h; sourceTree = ""; }; - 58EB1FF15EF91274F887D47E933DE7AF /* mapTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = mapTo.swift; path = Source/RxSwift/mapTo.swift; sourceTree = ""; }; - 5948948C27B1B8C08ABE3DB6DCCEE651 /* SwiftyJSON-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftyJSON-Info.plist"; sourceTree = ""; }; - 598460A5DF3B56203B29D01ECAC0F8F9 /* ShapeItemLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeItemLayer.swift; path = Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift; sourceTree = ""; }; - 598A7AAC951814B1308789BB200D8911 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; - 59A43B984C0AF852A6F8AB9E25671AE5 /* OIMSearchParam.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSearchParam.m; path = OpenIMSDK/Model/OIMSearchParam.m; sourceTree = ""; }; - 59AB42D5F7656B8882D8F442ED7CC8B8 /* mapMany.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = mapMany.swift; path = Source/RxSwift/mapMany.swift; sourceTree = ""; }; - 59AC7679378D0A2B32322B3D52CC590D /* ShapeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift; sourceTree = ""; }; - 59F548CA31617CF52B2B366F78407B53 /* RxDataSources-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxDataSources-Info.plist"; sourceTree = ""; }; - 59FC1BD33170A2BC4D498D0B282E04C9 /* LayerTextProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerTextProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift; sourceTree = ""; }; - 59FF3CB194901CFCF1A50573DE01113E /* YBIBVideoCell+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBVideoCell+Internal.h"; path = "Video/YBIBVideoCell+Internal.h"; sourceTree = ""; }; - 5A53DA679B0F0E0C5A4B89F6FDDADC73 /* IQKeyboardResignHandler+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardResignHandler+Internal.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift"; sourceTree = ""; }; - 5A9024578942964BD08F0109992B3280 /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; - 5AA735164364C8F331D4C9C21EA6F20C /* GroupInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupInterpolator.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift; sourceTree = ""; }; - 5AA9CF87A7F0EBCDA4F896271A17A3F8 /* YBIBWebImageMediator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBWebImageMediator.h; path = YBImageBrowser/WebImageMediator/YBIBWebImageMediator.h; sourceTree = ""; }; - 5AABA4A903D3B1748D2F7ABD73C518B1 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 5ABF25F38B5335217BB50A39B134AF62 /* HXPHPicker.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = HXPHPicker.modulemap; sourceTree = ""; }; - 5AD1ACB4D0E1933E41E73484E8ACF882 /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; sourceTree = ""; }; - 5AD9B8FCF4FD89F4D5143063C5E7A0D0 /* IQKeyboardInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardInfo.swift; path = IQKeyboardNotification/Classes/IQKeyboardInfo.swift; sourceTree = ""; }; - 5AED70B7B68386C79189CD6256E14B99 /* Array+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Sort.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/Array+Sort.swift"; sourceTree = ""; }; - 5B181ACC3F219337AE64C826FE02B413 /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; - 5B1E426822FE7CAA3703A573A0281F51 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift"; sourceTree = ""; }; - 5B58ED15172BCCF27E385B5BF68A6918 /* MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJExtension-Info.plist"; sourceTree = ""; }; - 5B96C38EC76CED40A0CD2DDF5B1DB12A /* Infallible+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Debug.swift"; path = "RxSwift/Traits/Infallible/Infallible+Debug.swift"; sourceTree = ""; }; - 5BB2959D3499F806D0273059BF3598F6 /* Cancellable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancellable.swift; path = Sources/Moya/Cancellable.swift; sourceTree = ""; }; - 5BB390B0E40E89FDDE554F21ECB7CCF1 /* YBIBTopView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBTopView.h; path = YBImageBrowser/ToolView/YBIBTopView.h; sourceTree = ""; }; - 5BDC964E4BDB8D2FC07223D96BD59013 /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; - 5BEF055B7F4F83D3D0FEE7E0F24A888D /* YBIBAuxiliaryViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBAuxiliaryViewHandler.h; path = YBImageBrowser/AuxiliaryView/YBIBAuxiliaryViewHandler.h; sourceTree = ""; }; - 5BF71EAF82417B414C95B361533EE14D /* YBIBIconManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBIconManager.h; path = YBImageBrowser/Helper/YBIBIconManager.h; sourceTree = ""; }; - 5BFD69CA959D1A9B459B375E711D2513 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = ""; }; - 5BFE805D984AAEF8498138BA0166F120 /* SizeValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift; sourceTree = ""; }; - 5C08C88751394A41AA41DF435BE9B690 /* SectionModelType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionModelType.swift; path = Sources/Differentiator/SectionModelType.swift; sourceTree = ""; }; - 5C26C5D03455E309DF3A4CCB403C5CB1 /* TimeStructures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimeStructures.swift; path = Sources/SwiftDate/Supports/TimeStructures.swift; sourceTree = ""; }; - 5C4A63F49D323F784BCA69785BB2D563 /* VideoCroppingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoCroppingConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/VideoCroppingConfiguration.swift; sourceTree = ""; }; - 5C4D9BE2EA61918FA56C7073CC77DB33 /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; - 5C6097CD51385779D9DD1CD30E169A70 /* DateInRegion+Components.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Components.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Components.swift"; sourceTree = ""; }; - 5C82451206DF153E55585157CFB2164B /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = ""; }; - 5C8BC587C73189ADA5510B1B9B628F89 /* MJExtensionConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJExtensionConst.m; path = MJExtension/MJExtensionConst.m; sourceTree = ""; }; - 5C92449F72A6498CADEADD96E8DC26B9 /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = ""; }; - 5CC6895CB40EF7ADB0A3C945CEDFF07F /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; + 58BCBEA4DC72DA1F90CEE9B583D7D999 /* MAMapVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapVersion.h; path = MAMapKit.framework/Headers/MAMapVersion.h; sourceTree = ""; }; + 58BCD5CBFF14B89ADBDF291E1F9D9272 /* MAMVTTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlay.h; path = MAMapKit.framework/Headers/MAMVTTileOverlay.h; sourceTree = ""; }; + 58C7B6E7A775424F09E7E14CA00C5CA6 /* URLNavigator.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = URLNavigator.release.xcconfig; sourceTree = ""; }; + 58D60D2BC095F0CBD500F458C40B265D /* OIMCustomElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMCustomElem.m; path = OpenIMSDK/Model/OIMCustomElem.m; sourceTree = ""; }; + 58E05B5C93BADAEFD58E919F0B6DB5D0 /* Moya-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Moya-umbrella.h"; sourceTree = ""; }; + 58FFDDCF04DB129070555E67F7D62F4B /* CompositionLayersInitializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayersInitializer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift; sourceTree = ""; }; + 590BD5EE2F1B73CAD4BA76A24A89F755 /* PhotoAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoAsset.swift; path = Sources/HXPHPicker/Picker/Model/PhotoAsset.swift; sourceTree = ""; }; + 591FE62A8AED50273FB3FD3B80759AF3 /* materialized+elements.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "materialized+elements.swift"; path = "Source/RxSwift/materialized+elements.swift"; sourceTree = ""; }; + 59306A0835C1BE58B6CBDF64FF22DF38 /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; + 5965A14C526A41781295A6BBD345813C /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = ""; }; + 596895B99E7E27AAF130D98206857EC7 /* MoyaError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MoyaError.swift; path = Sources/Moya/MoyaError.swift; sourceTree = ""; }; + 59A8A113B244267F39733411FDBFD59D /* HXPHPicker.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = HXPHPicker.bundle; path = Sources/HXPHPicker/Resources/HXPHPicker.bundle; sourceTree = ""; }; + 59D37D7B8A54CCECB3D3FF11BA59989C /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; + 59DDD979CBD6C9981F4FC9235EFC9381 /* TagListView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TagListView-umbrella.h"; sourceTree = ""; }; + 59DF3EC3D68BB1FD12D0E26E697ADC67 /* UIView+IQKeyboardExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtension.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtension.swift"; sourceTree = ""; }; + 59E0C671EF5B5B543DDE4A04023C67FD /* ImageLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageLayer.swift; path = Sources/Private/CoreAnimation/Layers/ImageLayer.swift; sourceTree = ""; }; + 59E77574A6D6A8484D6E798D4473D69B /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = ""; }; + 59FF368F95FB6496AE29853E9BA5BD14 /* LottieURLSession.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieURLSession.swift; path = Sources/Public/Configuration/LottieURLSession.swift; sourceTree = ""; }; + 5A16456B3A98DD7588766308353AD37E /* ObjectMapper-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ObjectMapper-Info.plist"; sourceTree = ""; }; + 5A180C55B9B74D99B78B2F0EDB46D1C8 /* PhotoAsset+Codable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoAsset+Codable.swift"; path = "Sources/HXPHPicker/Picker/Model/PhotoAsset+Codable.swift"; sourceTree = ""; }; + 5A21A112A2FAD7228F3F968043407B52 /* mapAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = mapAt.swift; path = Source/RxSwift/mapAt.swift; sourceTree = ""; }; + 5A225B67BF641EECDAE555557900F543 /* lottie-ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.release.xcconfig"; sourceTree = ""; }; + 5A3A23E72BF86121106194AD04651D2E /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; + 5A3C23B1D72202683F00B447B922927D /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = ""; }; + 5A3F99D429B6905052BB416F92885D5F /* MATerrainOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATerrainOverlayRenderer.h; path = MAMapKit.framework/Headers/MATerrainOverlayRenderer.h; sourceTree = ""; }; + 5A5C6F735186CBB62A6EBD6ECB76858C /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = ""; }; + 5A6B00582C6F5360841283FCA163063F /* LottieAnimationViewBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationViewBase.swift; path = Sources/Public/iOS/LottieAnimationViewBase.swift; sourceTree = ""; }; + 5A88BF209F6202B0E730318470DDD8BB /* KVORepresentable+CoreGraphics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+CoreGraphics.swift"; path = "RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift"; sourceTree = ""; }; + 5A8B44A19AF20F37A8875C22357A38F1 /* MqttDecodeUnsubAck.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttDecodeUnsubAck.swift; path = Source/MqttDecodeUnsubAck.swift; sourceTree = ""; }; + 5AA2CD254B942B1A97437DFF6AA4C3B8 /* retryWithBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = retryWithBehavior.swift; path = Source/RxSwift/retryWithBehavior.swift; sourceTree = ""; }; + 5AB1411EA19E9E5CCE78567975424B15 /* NSObject+MJCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJCoding.h"; path = "MJExtension/NSObject+MJCoding.h"; sourceTree = ""; }; + 5AB1C590DA6D243CF1D4DBE909C408C3 /* OpenIMSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "OpenIMSDK-Info.plist"; sourceTree = ""; }; + 5ABBFFA488022C89EF93575377A4C200 /* pausable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = pausable.swift; path = Source/RxSwift/pausable.swift; sourceTree = ""; }; + 5AC2A8315BF414FD10417F45C17F129F /* MAAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationView.h; path = MAMapKit.framework/Headers/MAAnnotationView.h; sourceTree = ""; }; + 5B0150E1B9B7AA3DE6394C130418B487 /* OIMCallbacker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMCallbacker.m; path = OpenIMSDK/Callbacker/OIMCallbacker.m; sourceTree = ""; }; + 5B1A0130105B98916AF1D590086BFD66 /* RxCocoa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.debug.xcconfig; sourceTree = ""; }; + 5B9D8C163A245DEBF92CAC1EA5471D36 /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = ""; }; + 5BBE0E370C0970A23FE497F665D3E7BB /* filterMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = filterMap.swift; path = Source/RxSwift/filterMap.swift; sourceTree = ""; }; + 5BCC0CB4800246FD935D7AF0399C5175 /* CGImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGImage+WebP.m"; path = "Sources/KingfisherWebP-ObjC/CGImage+WebP.m"; sourceTree = ""; }; + 5BE318237005B61F9AF9628B6F039D09 /* ObservableConvertibleType+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Signal.swift"; path = "RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift"; sourceTree = ""; }; + 5BE93567AA85914227E92BDFE9669A63 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; + 5BEA2B127E818A0484E4A0EED9286EF5 /* ConfigurationGlobals.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConfigurationGlobals.swift; path = Sources/CocoaLumberjackSwift/ConfigurationGlobals.swift; sourceTree = ""; }; + 5BEBB2722A594F06C7EA18F3A1060AC6 /* MAMapStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapStatus.h; path = MAMapKit.framework/Headers/MAMapStatus.h; sourceTree = ""; }; + 5BEBC5BCFD6362440D9D4603E86772C0 /* PrimitiveSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Concurrency.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift"; sourceTree = ""; }; + 5C04AF582F9D6D4B5C00FBDCDB0C3039 /* YBIBIconManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBIconManager.m; path = YBImageBrowser/Helper/YBIBIconManager.m; sourceTree = ""; }; + 5C17147FB45C2F91E3F4E0561AADD510 /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; + 5C3BD5F1BA48FA5E47E18FBCF7AECCA0 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; + 5C4C77EBB2493FB7A93A2D0FB646C569 /* FrameDisconnect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FrameDisconnect.swift; path = Source/FrameDisconnect.swift; sourceTree = ""; }; + 5C6075D01B0C2D3160EF60C4BB2ED644 /* OIMSimpleResultInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSimpleResultInfo.h; path = OpenIMSDK/Model/OIMSimpleResultInfo.h; sourceTree = ""; }; + 5C6735ECE031BB18EA5077C548DFBD3B /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = ""; }; + 5C6F7913A879E3C937BA173A6E58EDBC /* TimeInterval+Formatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TimeInterval+Formatter.swift"; path = "Sources/SwiftDate/Foundation+Extras/TimeInterval+Formatter.swift"; sourceTree = ""; }; + 5C782F6BBA9D908DF2ED57F50C12C768 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; + 5C7AF6A4A7D873A5927E9BB5781FC818 /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; + 5C8DCA9DAE9A2CA91B99D08FC528E277 /* SwiftyUserDefaults-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftyUserDefaults-Info.plist"; sourceTree = ""; }; + 5C94875BC7BE284051E55C4BDC8BA513 /* PhotoEditorViewController+Animation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoEditorViewController+Animation.swift"; path = "Sources/HXPHPicker/Editor/Controller/PhotoEditorViewController+Animation.swift"; sourceTree = ""; }; + 5CC360DDD6D3361E48E7695224199158 /* OIMReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMReachability.h; path = OpenIMSDK/Utils/OIMReachability.h; sourceTree = ""; }; + 5D56323B451627192BECC5104B3D81BC /* AnimationSubview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationSubview.swift; path = Sources/Public/iOS/AnimationSubview.swift; sourceTree = ""; }; + 5D5883A9A254761FD72FD4BD60F9207B /* bufferWithTrigger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = bufferWithTrigger.swift; path = Source/RxSwift/bufferWithTrigger.swift; sourceTree = ""; }; + 5D6583A9D6FFB57A60DDCC8A22078841 /* Array+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Extensions.swift"; path = "Sources/RxDataSources/Array+Extensions.swift"; sourceTree = ""; }; + 5D66E4A666F8AD6639F3BB8433543EBB /* ColorValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift; sourceTree = ""; }; + 5D73881111D0B6F5672FE5D8E90E98FA /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5D7C53CFA21D0B65B5810275F9B1B2F4 /* DDDispatchQueueLogFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDDispatchQueueLogFormatter.m; path = Sources/CocoaLumberjack/Extensions/DDDispatchQueueLogFormatter.m; sourceTree = ""; }; - 5D7E275A9F465A83ACE378819BCFC362 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - 5D8646AABF9B045A43689BB1CD400420 /* LottiePlaybackMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottiePlaybackMode.swift; path = Sources/Public/Animation/LottiePlaybackMode.swift; sourceTree = ""; }; - 5DA8B2B1E25EA9FC5AD2833490B8F5C4 /* DateTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateTransform.swift; path = Sources/DateTransform.swift; sourceTree = ""; }; - 5DB2942177243632BB63FE27659B24D9 /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = ""; }; - 5DB84D16310CC6D943255E049A9E9D77 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - 5DFA11B23F0F29B0B8105FB002C0BB1D /* OIMManager+Friend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Friend.h"; path = "OpenIMSDK/Interface/OIMManager+Friend.h"; sourceTree = ""; }; - 5E03558060FDD52E3C586D6C52AE3EEB /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; - 5E2D9445ABDD01E2EAF6BCF2874BCAB2 /* NSTextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextView+Rx.swift"; path = "RxCocoa/macOS/NSTextView+Rx.swift"; sourceTree = ""; }; + 5D8459D7FBE1CE367D86924BE49985C9 /* LayerTransformNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerTransformNode.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift; sourceTree = ""; }; + 5DB4F11D14B8046F8001DD637F89FD95 /* MAMultiPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPoint.h; path = MAMapKit.framework/Headers/MAMultiPoint.h; sourceTree = ""; }; + 5DDAB40E3AA9DE5D5A63CF63ED9A2BEF /* MqttDecodePublish.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttDecodePublish.swift; path = Source/MqttDecodePublish.swift; sourceTree = ""; }; + 5E0843B42A030B55090DA9565D93667E /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; + 5E215B4152D0A6DA7FBDD58BF58BA1A2 /* YBIBDefaultWebImageMediator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBDefaultWebImageMediator.h; path = YBImageBrowser/WebImageMediator/YBIBDefaultWebImageMediator.h; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* libwebp */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = libwebp; path = libwebp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E47BC20E69F8FD24594FFC1D8910599 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - 5E919CC6590A0AF2C026C7FA6371EFD8 /* KeyedDecodingContainerExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyedDecodingContainerExtensions.swift; path = Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift; sourceTree = ""; }; - 5E9446A922C299F4C733B3E3B64FC4DF /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - 5EA628EB8F76497538FA2290CB38448E /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 5EADCBF64ED01C3EB0BEB3B96CCC6D5B /* AMapNearbySearchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbySearchManager.h; path = AMapSearchKit.framework/Headers/AMapNearbySearchManager.h; sourceTree = ""; }; - 5ED33FEB3529F8C9B342C7C2A097E8A8 /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; - 5EDD5DC412BB584AD5F6B72E3728689F /* AnimationKeypathExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypathExtension.swift; path = Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift; sourceTree = ""; }; - 5EF97943C0E85B351106FE78D20CD5F9 /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = ""; }; - 5EFEC4792E6AE843B581D17FC92072A0 /* SGScanCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGScanCode.m; path = SGQRCode/QRCode/SGScanCode.m; sourceTree = ""; }; - 5F09681D932FC2A10A110AE909ACFCC0 /* RxCollectionViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; - 5F64866AC624BC264E03015321237874 /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; - 5F817082B9C5EE4458A59A5A7804DEFC /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; - 5F93EC958C215B385E15337C6289B91B /* ImageLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageLayerModel.swift; path = Sources/Private/Model/Layers/ImageLayerModel.swift; sourceTree = ""; }; - 5FD85B1B451A0D803EAE3B5FA0006115 /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = ""; }; - 5FE0AF0A4A942C9B375AB754DEE35103 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 60011C2C50FFAEAC7F35E0F62890FDD6 /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = ""; }; - 6006D4E765AEC9D031BC10150FC24B63 /* ZXSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = ZXSDK.framework; sourceTree = ""; }; - 60468C1CDF1862AB603DFA2962774120 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 606B36089216BA9AAA95CC158D76FE49 /* PhotoTools+File.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoTools+File.swift"; path = "Sources/HXPHPicker/Core/Util/PhotoTools+File.swift"; sourceTree = ""; }; - 606D6DE0357D8862B257CC628D6256A6 /* SGScanView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGScanView.m; path = SGQRCode/ScanView/SGScanView.m; sourceTree = ""; }; - 6071B34947E92A5B38EF5EF37915B1E7 /* ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist"; sourceTree = ""; }; - 60BB1F68A42EFD825729CE824368D4A7 /* Archive+Progress.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Progress.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Progress.swift"; sourceTree = ""; }; - 60EDA73CDAB249744F8D82D94147C9E2 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - 6115E13375F7CD6D73AD6BF3A4D25C83 /* YBIBInteractionProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBInteractionProfile.m; path = YBImageBrowser/Image/YBIBInteractionProfile.m; sourceTree = ""; }; - 61262011F1BCB5A4C30594748F8200D5 /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = ""; }; - 612B3D3A7C5E1084E5EF5EC8A5C44A27 /* SGSoundEffect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGSoundEffect.h; path = SGQRCode/SoundEffect/SGSoundEffect.h; sourceTree = ""; }; - 615A1FD3776094E854318EE01C75786B /* CocoaLumberjack.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLumberjack.debug.xcconfig; sourceTree = ""; }; - 615A84F5D6E75DCDEE4DE6130DF59E85 /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = ""; }; - 616B42C1149DA62E1819065E55738C44 /* AnyValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueContainer.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift; sourceTree = ""; }; - 619D6D0BE97FAA6CFB40BDEB233BD739 /* GeYanSdk.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = GeYanSdk.xcframework; sourceTree = ""; }; - 61F309BD5CF7919F2B29498052D9B98C /* Diff.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Diff.swift; path = Sources/Differentiator/Diff.swift; sourceTree = ""; }; + 5E5BBE340E41A5864BF05B58060A75F6 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; + 5E6697D38397D54AD0F4753556ED8EEF /* PHLivePhotoView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PHLivePhotoView+Kingfisher.swift"; path = "Sources/Extensions/PHLivePhotoView+Kingfisher.swift"; sourceTree = ""; }; + 5E7BEBCBFE4F4167333289DF14E0C550 /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = ""; }; + 5EB365DD01B0CF9CC6DD2C3FBAD696AB /* RxSwiftExt-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxSwiftExt-Info.plist"; sourceTree = ""; }; + 5ED4C28A20C58BA223BDDBF5861D744E /* YBIBVideoActionBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoActionBar.h; path = Video/YBIBVideoActionBar.h; sourceTree = ""; }; + 5F03CEF900DCE98303D4027E3A2F7FB4 /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; + 5F121A1AF57280A390FE624572D35BAA /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + 5F2CAB5804E5C6FE12F21F2E73D0504C /* UISearchController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchController+Rx.swift"; path = "RxCocoa/iOS/UISearchController+Rx.swift"; sourceTree = ""; }; + 5F39BB06188020CC5D8E4980721C6AC2 /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = ""; }; + 5F41F37C01FE78AF3EB2EBE2C0063C55 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; + 5F5B52F8C128A08525589088D88B446A /* MGCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MGCDAsyncSocket.m; path = Source/GCD/MGCDAsyncSocket.m; sourceTree = ""; }; + 5F7A74C16497D9325EA8E175061E4488 /* RxRelay-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxRelay-Info.plist"; sourceTree = ""; }; + 5F7C7512CF2FDDA57441C76E292DFA54 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; + 5F862FDF6BDB6EA81D6FAD1A68F9B444 /* MATraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceManager.h; path = MAMapKit.framework/Headers/MATraceManager.h; sourceTree = ""; }; + 5F8CAE6D15F1B3B7A425CDAC4B3BEB3A /* Interpolatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Interpolatable.swift; path = Sources/Public/Keyframes/Interpolatable.swift; sourceTree = ""; }; + 5FB12255CE9417581E8B581894EB9660 /* SelectBoxView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SelectBoxView.swift; path = Sources/HXPHPicker/Core/View/SelectBoxView.swift; sourceTree = ""; }; + 5FCAFE810B996502DE8E815BB6C1AC95 /* YBIBSentinel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBSentinel.h; path = YBImageBrowser/Helper/YBIBSentinel.h; sourceTree = ""; }; + 5FE1963B6D2F054A9E8BFAFEB6F716FC /* AnimationKeypathExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypathExtension.swift; path = Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift; sourceTree = ""; }; + 600B0109CAD95BF5917C28BF3281115C /* YYSpriteSheetImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYSpriteSheetImage.m; path = YYImage/YYSpriteSheetImage.m; sourceTree = ""; }; + 601E4E3E77557AF9F95EFC7AA4B4CB27 /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = ""; }; + 602C74A8185EA5EE8350DAA128584F7F /* SelectBoxConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SelectBoxConfiguration.swift; path = Sources/HXPHPicker/Core/Config/SelectBoxConfiguration.swift; sourceTree = ""; }; + 603CC2BA472D5C652471FA248F2568B8 /* CocoaMQTTSocket.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTSocket.swift; path = Source/CocoaMQTTSocket.swift; sourceTree = ""; }; + 605153200D33EF84B07350CBDC5C1DCB /* MAParticleOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlay.h; path = MAMapKit.framework/Headers/MAParticleOverlay.h; sourceTree = ""; }; + 6092F696CF83DAF2A79FEC33407A7B6D /* RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCocoa.swift; path = RxCocoa/RxCocoa.swift; sourceTree = ""; }; + 60CA0BB648C2262B78659DA12DD51A2F /* RxWKNavigationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxWKNavigationDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift; sourceTree = ""; }; + 60FB2512EBA67C9E19A06A26644E2821 /* SolidLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidLayerModel.swift; path = Sources/Private/Model/Layers/SolidLayerModel.swift; sourceTree = ""; }; + 610421EA2DB40C1997A6697143D26FCD /* OIMManager+Friend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Friend.h"; path = "OpenIMSDK/Interface/OIMManager+Friend.h"; sourceTree = ""; }; + 614C8C7093D354C0AC700DB212837602 /* ShapeLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeLayerModel.swift; path = Sources/Private/Model/Layers/ShapeLayerModel.swift; sourceTree = ""; }; + 614D20EE3407F1CF8CF6E98954CC88DE /* BehaviorRelay+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BehaviorRelay+Driver.swift"; path = "RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift"; sourceTree = ""; }; + 616CBDDA5612B517A144C40409DE85D5 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; + 61831D41BCD7315F136D4DF2A5ADD114 /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; + 6198D280669473ACBA6A084A650DF4D8 /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; + 61CF6C543261C867ACCBC0ED36A257A1 /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 61FC40CC3CF376314F66F115AD76C8BD /* OpenIMCore.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenIMCore.xcframework; path = Framework/OpenIMCore.xcframework; sourceTree = ""; }; 62060F5D524AE8173817ADD9482A0FEB /* lottie-ios-LottiePrivacyInfo */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "lottie-ios-LottiePrivacyInfo"; path = LottiePrivacyInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 62068575E84E562D2715857256F195F2 /* RxSwiftExt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwiftExt.debug.xcconfig; sourceTree = ""; }; - 622275BE3CDED43E4D4D52732AFB6ECB /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; - 62416DA404529EE5F12AC66820968A42 /* SDCycleScrollView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDCycleScrollView-dummy.m"; sourceTree = ""; }; - 6261B6AFF7CE8B3C5FCA2DA3C060B8CA /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = ""; }; - 6268CFADCC4FF23E0CF60396A20648CA /* CameraConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/CameraConfiguration.swift; sourceTree = ""; }; - 6278C6F6E095466FC0747AED3A82DBAC /* TrimPathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrimPathNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift; sourceTree = ""; }; - 628023983AC1634CE080F49424225367 /* PhotoEditorContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorContentView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorContentView.swift; sourceTree = ""; }; - 62851F93EAD70B5DAEBEAE1D63184C5A /* RxSwiftExt-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwiftExt-umbrella.h"; sourceTree = ""; }; - 62991FC09198149F6AADD3A172559A80 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; - 629DDBA66E3F48E13DC130A55605CE82 /* SwiftDate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDate.debug.xcconfig; sourceTree = ""; }; - 62A9CAE160221A15F9869953E47C95D0 /* MJExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-prefix.pch"; sourceTree = ""; }; - 62AA6CBDC90F15752FBBFAD594E0DB65 /* StyledView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyledView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/StyledView.swift; sourceTree = ""; }; - 62AA96A19742574F4A188E5B86334BA6 /* PickerBottomViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerBottomViewConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PickerBottomViewConfiguration.swift; sourceTree = ""; }; - 62C76DB7DA654E7AD9D4B3B2FB18032C /* sharpyuv_gamma.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv_gamma.h; path = sharpyuv/sharpyuv_gamma.h; sourceTree = ""; }; - 62F44A98B2397C9F6E5B8CFED65CE453 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; - 630AE44EDCEF6C485BEB0D998AE18947 /* SingleValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleValueProvider.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift; sourceTree = ""; }; - 631D1F2FC1CAC25B4FC1DC7C9550FC6B /* RxCocoaRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoaRuntime.h; path = RxCocoa/Runtime/include/RxCocoaRuntime.h; sourceTree = ""; }; - 633767D8A7162E8C39BFE4FE885F0056 /* SDCycleScrollView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDCycleScrollView.debug.xcconfig; sourceTree = ""; }; - 635BD03226AC5A8DC2C0FCBBE2A1A271 /* CGColor+RGB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGColor+RGB.swift"; path = "Sources/Private/Utility/Extensions/CGColor+RGB.swift"; sourceTree = ""; }; - 63708D0683405A5887D1A15D39151805 /* Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Kingfisher-Info.plist"; sourceTree = ""; }; - 637A7313065D5EFD2C26D2F8C370607D /* Entry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Entry.swift; path = Sources/Private/EmbeddedLibraries/ZipFoundation/Entry.swift; sourceTree = ""; }; - 639CF52A40302ABAD0394A3F45CD9342 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 63D7A5446C347A4B7702583B88BBD745 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; - 63D81D87D9F9A845B326030633297628 /* OIMQuoteElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMQuoteElem.h; path = OpenIMSDK/Model/OIMQuoteElem.h; sourceTree = ""; }; - 63E347ABA937E1A86307E97B31D7E50C /* OIMReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMReachability.h; path = OpenIMSDK/Utils/OIMReachability.h; sourceTree = ""; }; - 641158A1573E7A37BD70DE32A4512D60 /* SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SnapKit-Info.plist"; sourceTree = ""; }; - 64219E8625D4757F4535A81DE9CC4D2F /* pausable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = pausable.swift; path = Source/RxSwift/pausable.swift; sourceTree = ""; }; - 642B181C4A56014302CB2E2CA604D881 /* ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist"; sourceTree = ""; }; + 620866CE6F644E71DD360A0EFAC1D7D4 /* KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KVORepresentable.swift; path = RxCocoa/Foundation/KVORepresentable.swift; sourceTree = ""; }; + 626BED7AFF918C2EB7C12F491DDB7BE7 /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; + 6286DBDC946A52B1E86BC5F2EB20BA19 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; + 6290E5C0F32B2229537B63C8028A89CA /* NSButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Rx.swift"; path = "RxCocoa/macOS/NSButton+Rx.swift"; sourceTree = ""; }; + 62D07C690BC24C555DF4B8EFE24DBD23 /* PhotoEditorFilter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorFilter.swift; path = Sources/HXPHPicker/Editor/Model/PhotoEditorFilter.swift; sourceTree = ""; }; + 63162572B5F40706944B6D4695746BA0 /* PhotoPickerController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerController.swift; path = Sources/HXPHPicker/Picker/Controller/PhotoPickerController.swift; sourceTree = ""; }; + 6325F793B5AC4E9D6C23999F997A27B3 /* MAMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapKit.h; path = MAMapKit.framework/Headers/MAMapKit.h; sourceTree = ""; }; + 632FFDAC6AD7D412F1BF8F1A913A0EF1 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; + 63321D54034C11DDB8981792A5761232 /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; }; + 6351AB2D7C8FD9BADEFC1065E0AEC081 /* IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; + 635325A329D375088E730F34019317A0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardReturnManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 636B07954D032239F42C35DE71D121DE /* Popover.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Popover.release.xcconfig; sourceTree = ""; }; + 637305295B526B7C505220CE2A7893E8 /* MJExtensionConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJExtensionConst.m; path = MJExtension/MJExtensionConst.m; sourceTree = ""; }; + 63881AFB6BB011EFCF1252118D2C46A8 /* zipWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = zipWith.swift; path = Source/RxSwift/zipWith.swift; sourceTree = ""; }; + 63A3A7CA60BE4D32F36898432CE921D0 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; + 63A719DFAC9452911312006859FB59BC /* ObservableConvertibleType+Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Infallible.swift"; path = "RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift"; sourceTree = ""; }; + 63AF11E68FBA31DEE361A30452C2B610 /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; + 63B4C977FA84E6204CA76F7CD5A2E079 /* TextLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextLayer.swift; path = Sources/Private/CoreAnimation/Layers/TextLayer.swift; sourceTree = ""; }; + 640F3024D486EF2882424829BADB5957 /* RepeaterLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RepeaterLayer.swift; path = Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift; sourceTree = ""; }; + 6427F96BC62F8B8E39CE8CBF47E01176 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; 642FEF38E132FB38DD2B59B88F069917 /* YBImageBrowser */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = YBImageBrowser; path = YBImageBrowser.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 643E20DC003F67757DE48602D2A7C2B6 /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = ""; }; - 64475ACC13391CED0E8F1895DFDB3F0E /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = ""; }; - 645AE5F27AA607A164905A55BE37FDA8 /* ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; sourceTree = ""; }; - 645B6195BA2EF0CC400908DC32A609F8 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 647F3A21C303D1F7A42AF9434D203869 /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; - 6491D6CBC9BF383CD1D2778BB5EE5732 /* SGScanView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGScanView.h; path = SGQRCode/ScanView/SGScanView.h; sourceTree = ""; }; - 64955DB2B6BD9D4B02B1D00905645B96 /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = ""; }; - 64A97DF1ECAA601838BDE6A51B36E743 /* DefaultsKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsKey.swift; path = Sources/DefaultsKey.swift; sourceTree = ""; }; - 64B047E4298457A88A20E186EB03E519 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; - 64DA66D7FA4D6D1DFF8EB0A3D5A1B537 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - 650CC4848DDBCCB81DCB6671B53274AE /* MABaseOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MABaseOverlay.h; path = MAMapKit.framework/Headers/MABaseOverlay.h; sourceTree = ""; }; - 65116B7F8B410E440874CCFA63662B20 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - 655F16E86C5BE41F3D3568111B89F78B /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift; sourceTree = ""; }; + 6448C33FD616D663955373268AD9800D /* UIPickerView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIPickerView+Rx.swift"; path = "RxCocoa/iOS/UIPickerView+Rx.swift"; sourceTree = ""; }; + 6458147C926E431087479B672BEAED5E /* AMapServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapServices.h; path = AMapFoundationKit.framework/Headers/AMapServices.h; sourceTree = ""; }; + 645B1D036F396C3C31884CF44074CB01 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; + 64916876656A6A9960FEB98C54459534 /* RxDataSources-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxDataSources-Info.plist"; sourceTree = ""; }; + 64C07CCD1BCB6C218B9CBFD402FD0BF6 /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; + 64C174FEED5DBDBD7E75CFF8B4BB3ABB /* SwiftyJSON.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.debug.xcconfig; sourceTree = ""; }; + 64C6220B00E5F0A013BFFA10F5EE99E1 /* MAPathShowRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPathShowRange.h; path = MAMapKit.framework/Headers/MAPathShowRange.h; sourceTree = ""; }; + 64CAD2C8FCCCCFB901AD99338C69EE1F /* PhotoTools.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoTools.swift; path = Sources/HXPHPicker/Core/Util/PhotoTools.swift; sourceTree = ""; }; + 64FDE768BCD110D76CA31416FCD660DB /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = ""; }; + 65029C092034F39CD83E5C58E0DA0B05 /* AssetManager+LivePhotoURL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+LivePhotoURL.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+LivePhotoURL.swift"; sourceTree = ""; }; + 650CBF9346AD732290BB7ED692D6B5F7 /* 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 = ""; }; + 651C41DEE47E984B8359AB6405881E02 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + 652AFE78F8E551FC43A6A45DC83A3681 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; + 6541D2507CA3DF55206B130B168633A7 /* SwiftKeychainWrapper.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftKeychainWrapper.modulemap; sourceTree = ""; }; + 6563437DD714E4651A54D5D9827E41BB /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; 6570EF80D3D9BAC37E653856E44EF351 /* RxSwiftExt */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RxSwiftExt; path = RxSwiftExt.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6588BE6EAD95A062EAD65E4406523B33 /* NetworkAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkAsset.swift; path = Sources/HXPHPicker/Picker/Model/NetworkAsset.swift; sourceTree = ""; }; - 659ABEE73565FB13D1D253ACC5C5F5EB /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - 659C2CC0C7E0DE1574B6730492D6AD01 /* LayerDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerDebugging.swift; path = Sources/Private/Utility/Debugging/LayerDebugging.swift; sourceTree = ""; }; - 65A15F4C96CAED1C108C40708EE87EF4 /* OIMSoundElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSoundElem.h; path = OpenIMSDK/Model/OIMSoundElem.h; sourceTree = ""; }; - 65AF056AC49D66AA67CE8E4CC5F7ABFC /* OIMManager+Conversation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Conversation.h"; path = "OpenIMSDK/Interface/OIMManager+Conversation.h"; sourceTree = ""; }; - 65C686468BAEE92162C48CCAA7C15D4C /* RxDataSources-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxDataSources-prefix.pch"; sourceTree = ""; }; - 65CC9309308C3EFA965298882EABE106 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - 65CE898D2BC17EA493AD82D9EBA94F4E /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; - 65CFE3481B5AC8650B206B3A373CA75D /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; }; - 65D71891D845159664180BE4751EE547 /* ControlEvent+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlEvent+Driver.swift"; sourceTree = ""; }; - 65EEC6191682ABA20B8A0411040B8329 /* Formatter+Protocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Formatter+Protocols.swift"; path = "Sources/SwiftDate/Formatters/Formatter+Protocols.swift"; sourceTree = ""; }; - 660B0D3207CDA50941350787E807EBF9 /* AMapLocation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapLocation.debug.xcconfig; sourceTree = ""; }; - 661FEE91FA7BA21B21CE0C49E062F54B /* DDMultiFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMultiFormatter.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDMultiFormatter.h; sourceTree = ""; }; - 6661F713463BAE855AF1063C2C8C4ADB /* DateInRegion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateInRegion.swift; path = Sources/SwiftDate/DateInRegion/DateInRegion.swift; sourceTree = ""; }; - 66632D9CC4BD0C730CF397F56806EA89 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/Core/SessionDelegate.swift; sourceTree = ""; }; - 6675C0D3C3E1B217343679BB2C28AF0F /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; - 66E1CD8AB08972115F770800608A1BDC /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; - 66F6E82115C5A0AA962FAE21C21F7884 /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = ""; }; - 66FE82E0510BC72FAD7C76AD60B9E90D /* IQKeyboardToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarManager.swift; path = IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager.swift; sourceTree = ""; }; - 6737E046AAEEC1377A37635597AD9339 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 673FBA63F9F3560B749DE95F0776152C /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; - 6746F5634973F191E0B1F6461DB1945D /* DropShadowNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/LayerEffectNodes/DropShadowNode.swift; sourceTree = ""; }; - 675B12B7CAD812ECF38A4EBD29B11E06 /* GroupOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift; sourceTree = ""; }; - 6777B5B9C83F2B2289CF20ACC0542106 /* OIMReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMReachability.m; path = OpenIMSDK/Utils/OIMReachability.m; sourceTree = ""; }; - 67BB983FB1DF61CE58E767CA5AACA670 /* Core+UIDevice.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIDevice.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIDevice.swift"; sourceTree = ""; }; - 67C09087FD721CE9595DAF45BC6B7889 /* Popover-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Popover-umbrella.h"; sourceTree = ""; }; - 67C415CE5B3DA27754A005F1E2626DEB /* LayerTransformNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerTransformNode.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift; sourceTree = ""; }; - 67DD08C8D8EFA5C605D522CD0B54141D /* MAOfflineMapViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMapViewController.h; path = MAMapKit.framework/Headers/MAOfflineMapViewController.h; sourceTree = ""; }; - 67E2AB0EB78B87ACFCF842238DC339AC /* IQKeyboardToolbarManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Debug.swift"; path = "IQKeyboardToolbarManager/Classes/Debug/IQKeyboardToolbarManager+Debug.swift"; sourceTree = ""; }; - 67E975FB8AAE5124E00FDEC64DB28529 /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = ""; }; - 680A5B1FAD29D5052E4E207406B38187 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 680A88CC00CB2961A0B5247C9F2AFDEB /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 680B5642427550EC87866C7A9D4FF32D /* MAGroundOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlay.h; path = MAMapKit.framework/Headers/MAGroundOverlay.h; sourceTree = ""; }; - 6815C778E5D2D39FDC2284C3868D2F07 /* YYFrameImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYFrameImage.m; path = YYImage/YYFrameImage.m; sourceTree = ""; }; - 68369891B9DD0673C54337D7AF5D5A22 /* MATerrainOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATerrainOverlayRenderer.h; path = MAMapKit.framework/Headers/MATerrainOverlayRenderer.h; sourceTree = ""; }; - 687267D7FB090DB33AAF5A62DA1D0495 /* CoreAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CoreAnimationLayer.swift; path = Sources/Private/CoreAnimation/CoreAnimationLayer.swift; sourceTree = ""; }; - 690512071EDC44B3B6B7DAC39FB28E74 /* PhotoEditorConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/PhotoEditorConfiguration.swift; sourceTree = ""; }; - 6929D9112D6D2BA2861A61C822056E89 /* View+ValueChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "View+ValueChanged.swift"; path = "Sources/Private/Utility/Helpers/View+ValueChanged.swift"; sourceTree = ""; }; + 65867AB26CF8515F87512779D35AAFE7 /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = ""; }; + 6586E0831A482865F4AE976D099C02EB /* GradientStrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift; sourceTree = ""; }; + 658B6C4630AA41F05C5A0BE18A041CEE /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = ""; }; + 65A438944C929D5F4B8B213A41EE08D7 /* OIMMessageInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMMessageInfo.m; path = OpenIMSDK/Model/OIMMessageInfo.m; sourceTree = ""; }; + 65C53CB62B4F7435CB3C693234CE5505 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + 65EB44BEDF8C30E6FF3250EEF9BC03B2 /* ObservableType+Weak.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Weak.swift"; path = "Source/RxSwift/ObservableType+Weak.swift"; sourceTree = ""; }; + 661B11CB82859F4F63BB986EEA203D75 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift"; sourceTree = ""; }; + 663A9AAB1644EDF5B89B050210D188AE /* PhotoEditorCropToolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorCropToolView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorCropToolView.swift; sourceTree = ""; }; + 6658B8DF65726B2667DA2082D95CDE2C /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/CocoaLumberjack/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 66B47605C4EF7FD85950E34EA826F013 /* ObjectMapper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ObjectMapper-dummy.m"; sourceTree = ""; }; + 66C8F6BD5C4F963CFF317253AB78D288 /* FrameSubscribe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FrameSubscribe.swift; path = Source/FrameSubscribe.swift; sourceTree = ""; }; + 66E59E81DC8FF48EDF585F8556EBF878 /* SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedSequence.swift; path = RxCocoa/Traits/SharedSequence/SharedSequence.swift; sourceTree = ""; }; + 670E69BFA8B8E794E20278DDDFCCFC1B /* PhotoAssetCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoAssetCollection.swift; path = Sources/HXPHPicker/Picker/Model/PhotoAssetCollection.swift; sourceTree = ""; }; + 671AC6BBB7E983A9C3A434F31B12481D /* UIControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIControl+Rx.swift"; path = "RxCocoa/iOS/UIControl+Rx.swift"; sourceTree = ""; }; + 675B4C11F7B590880C77E8AAEF1F3A60 /* Date+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Create.swift"; path = "Sources/SwiftDate/Date/Date+Create.swift"; sourceTree = ""; }; + 677FF7B4A892D4EB3B2AD9BB1F6B7379 /* BaseViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseViewController.swift; path = Sources/HXPHPicker/Core/Controller/BaseViewController.swift; sourceTree = ""; }; + 6795AF09F8D149285033AEB0BCED748D /* AMapURLSearchType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchType.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchType.h; sourceTree = ""; }; + 67B45AD70807BBDF6B47FDAA4390A5C5 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; + 67B8A8567DA6C52E64E59F0E24001910 /* VideoEditorMusicView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorMusicView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorMusicView.swift; sourceTree = ""; }; + 67F2EC575215EF8F36FE3332C7B8FAB5 /* Ellipse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Ellipse.swift; path = Sources/Private/Model/ShapeItems/Ellipse.swift; sourceTree = ""; }; + 682DF2A9B09E750ABE7655327548340F /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/Features/RequestInterceptor.swift; sourceTree = ""; }; + 682EED78D7F63416FF9CFDCA15743DCD /* PhotoPreviewContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewContentView.swift; path = Sources/HXPHPicker/Picker/View/PhotoPreviewContentView.swift; sourceTree = ""; }; + 6842A0E2A2DB80154F5F93850EF93F27 /* YBImageBrowser.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = YBImageBrowser.bundle; path = YBImageBrowser/YBImageBrowser.bundle; sourceTree = ""; }; + 684A7422DA5D5676B52EEDD2E28FC657 /* Diff.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Diff.swift; path = Sources/Differentiator/Diff.swift; sourceTree = ""; }; + 6860AFC57864328E2A00C39E5DCC17C9 /* MAUserLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocation.h; path = MAMapKit.framework/Headers/MAUserLocation.h; sourceTree = ""; }; + 687C03C1A0D5934231452CF86A151B5E /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; + 68CCF82D67A8D5BF212E5D1E132B0103 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; + 68D7AF3B74828F8C2BAC6CC02A1E9A83 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; + 68E69BFAD345E18146F7E60EB1231743 /* Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deprecated.swift; path = Sources/RxDataSources/Deprecated.swift; sourceTree = ""; }; + 691FEC0751A0CEA25959BCE082FC3B97 /* SGScanView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGScanView.m; path = SGQRCode/ScanView/SGScanView.m; sourceTree = ""; }; + 69233A166022F4FAA2349D49017EE68A /* SectionModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionModel.swift; path = Sources/Differentiator/SectionModel.swift; sourceTree = ""; }; + 692E73A19B4EEA1D680D9F67D5718114 /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = ""; }; 692F92D73EC27270EA9CC9575C3E65B6 /* RxDataSources */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RxDataSources; path = RxDataSources.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 693F8ECA090561B610BA6FF8274178DA /* PhotoEditorMosaicView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorMosaicView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorMosaicView.swift; sourceTree = ""; }; - 69987DF0C0EF80F634B3BFF7171C82B1 /* RxRelay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.debug.xcconfig; sourceTree = ""; }; - 69F0240DF73AE0C77CD3F808BF400356 /* CallbackProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallbackProxy.h; path = OpenIMSDK/CallbackProxy/CallbackProxy.h; sourceTree = ""; }; - 69FE14BC30CB5DB48553F5B2DF36AB77 /* AMapGeoFenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceManager.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceManager.h; sourceTree = ""; }; - 6A737601D8BFA149FD0B9B4EA32208D4 /* KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KVORepresentable.swift; path = RxCocoa/Foundation/KVORepresentable.swift; sourceTree = ""; }; - 6A82911D5CB0F6C7A32A79C0374FCDBC /* TAPageControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TAPageControl.h; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAPageControl.h; sourceTree = ""; }; - 6A87581B2556DBA6F40B051DD8E340A1 /* ProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProgressHUD.swift; path = Sources/HXPHPicker/Core/View/ProgressHUD.swift; sourceTree = ""; }; - 6AA2BDF2A6AEC64BE57DDA9A5A18B11A /* EditorToolViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorToolViewConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/EditorToolViewConfiguration.swift; sourceTree = ""; }; - 6AC42ACAF533936A9C6D02A3B360662A /* KingfisherWebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KingfisherWebP.h; path = Sources/KingfisherWebP.h; sourceTree = ""; }; - 6ADFC7217C94A6A33AADBE2C889E258A /* UIDatePicker+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDatePicker+Rx.swift"; path = "RxCocoa/iOS/UIDatePicker+Rx.swift"; sourceTree = ""; }; - 6B0442B2E380011F57D531EC0553CF0A /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - 6B06A8830BD9CA33C77A2D4E10375DDC /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = ""; }; - 6B34C0675FA28CE45E9A9E5129638E48 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 6B34EDD0EC5E729369F40418B69FA49F /* TimePeriod+Support.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TimePeriod+Support.swift"; path = "Sources/SwiftDate/TimePeriod/TimePeriod+Support.swift"; sourceTree = ""; }; - 6B5A3802C70E5FFA3157414C2F2DD188 /* IQKeyboardManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Deprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift"; sourceTree = ""; }; - 6B6F61BE674A89311CDDD88E71D4B831 /* RectangleAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RectangleAnimation.swift; path = Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift; sourceTree = ""; }; - 6B7A648559C518EA6DDF715D86F642BF /* PhotoAsset+Network.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoAsset+Network.swift"; path = "Sources/HXPHPicker/Picker/Model/PhotoAsset+Network.swift"; sourceTree = ""; }; - 6BB44B5239CC920575CAF69072F84164 /* RenderingEngineOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RenderingEngineOption.swift; path = Sources/Public/Configuration/RenderingEngineOption.swift; sourceTree = ""; }; - 6BE2132552A633B5B0604562F34FC8D0 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - 6BF72E2AF2147FA1AAC4682FE8CD2024 /* IQActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQActiveConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift; sourceTree = ""; }; - 6C0DB89854D24E5D70FDE2EA792BBCE4 /* YBIBVideoData+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBVideoData+Internal.h"; path = "Video/YBIBVideoData+Internal.h"; sourceTree = ""; }; - 6C64131280A69B51A01F471E184A6303 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; - 6C7351CB3EB502D83F5D34EE4B38D7D8 /* ItemsExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemsExtension.swift; path = Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift; sourceTree = ""; }; - 6C8F1BE5271921E4112CB6A96BB1E636 /* IQKeyboardCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-umbrella.h"; sourceTree = ""; }; - 6CA6F39A42F8F26B1001FC6ABA7D43B5 /* LottieAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationCache.swift; path = Sources/Public/AnimationCache/LottieAnimationCache.swift; sourceTree = ""; }; - 6CDDF5A118E717FCD167B130920711D2 /* AlbumView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumView.swift; path = Sources/HXPHPicker/Picker/View/AlbumView.swift; sourceTree = ""; }; - 6D1715A4AEA9E504CD864D3449B29041 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 6D1B3B65DA5FD5A5576321B0DF0050B4 /* YBIBToolViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBToolViewHandler.h; path = YBImageBrowser/ToolView/YBIBToolViewHandler.h; sourceTree = ""; }; - 6D36685DBD069796D57F250F298F4E12 /* DateComponents+Extras.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateComponents+Extras.swift"; path = "Sources/SwiftDate/Foundation+Extras/DateComponents+Extras.swift"; sourceTree = ""; }; - 6D36A4A7070EA83191C07AAA60853D10 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Features/Validation.swift; sourceTree = ""; }; - 6D432C2ACB4146286EE959013FE5D35A /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = ""; }; - 6D47897E34F522D3CF1F0C22AB710E89 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - 6D82AA88B834BBF20D1151E382DE67AF /* PhotoError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoError.swift; path = Sources/HXPHPicker/Core/Model/PhotoError.swift; sourceTree = ""; }; - 6D9E210B2205912E00A85821A655AFCA /* MAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapView.h; path = MAMapKit.framework/Headers/MAMapView.h; sourceTree = ""; }; - 6DAF66AF9A10C8CE260ACFC74496E828 /* AssetManager+LivePhoto.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+LivePhoto.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+LivePhoto.swift"; sourceTree = ""; }; - 6DC4BD17942F389D44EB543440F08338 /* IQKeyboardAppearanceManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceManager.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift; sourceTree = ""; }; - 6DC9646259FA259C0AA37E4E65914C55 /* MAParticleOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlay.h; path = MAMapKit.framework/Headers/MAParticleOverlay.h; sourceTree = ""; }; - 6DFB7C4372393229F1688792BAC624F6 /* SGQRCode.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SGQRCode.release.xcconfig; sourceTree = ""; }; - 6DFC47471DC57CA8A3990D13F5421EC2 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - 6E262E45D9D025FC0B1E6F5F63C96BAC /* HXPHPicker-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HXPHPicker-umbrella.h"; sourceTree = ""; }; - 6E2E823642914FC324B9D6472E687E6F /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; - 6E2F7CCC851477208D59289153C67F97 /* OIMPictureElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMPictureElem.h; path = OpenIMSDK/Model/OIMPictureElem.h; sourceTree = ""; }; - 6E39E259B8C3408A8E66B54ED16254B8 /* WechatOpenSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = WechatOpenSDK.xcframework; sourceTree = ""; }; - 6E5634D8FC150EAF451F26D4D2ACDD62 /* RxCollectionViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift; sourceTree = ""; }; + 6939A2F658A7053D427D8CA0499EEA5F /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; + 6946053ADEB795CA6BF8DC00F6E9818C /* RxCollectionViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift; sourceTree = ""; }; + 694EE45B9AE3A7575F8B867C9D6A78CC /* MaskCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MaskCompositionLayer.swift; path = Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift; sourceTree = ""; }; + 6972343F664C52CB3BBB9F28D004156A /* KeypathSearchable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeypathSearchable.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift; sourceTree = ""; }; + 69996CE0C975FE55FEB5941358F9A2D1 /* URLMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLMatcher.swift; path = Sources/URLMatcher/URLMatcher.swift; sourceTree = ""; }; + 69B4A7FF944AD82C79E440C8DF908199 /* NSObject+MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJProperty.m"; path = "MJExtension/NSObject+MJProperty.m"; sourceTree = ""; }; + 69C94D551311BF96B246137BE18B4214 /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; + 6A095D9FE603AEF527B68874E180B2A0 /* Archive+ZIP64.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+ZIP64.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+ZIP64.swift"; sourceTree = ""; }; + 6A6B3C05E2A7710AA4BB0C9B83E2BF36 /* RxCocoa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxCocoa-dummy.m"; sourceTree = ""; }; + 6A73073075D10A568A023F1D190E7925 /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; + 6AAD72F6BD76C26A980E1477F50D4DD7 /* SwiftKeychainWrapper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftKeychainWrapper.debug.xcconfig; sourceTree = ""; }; + 6ACF591CB08ABFD9EC45A948D394EBDD /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = ""; }; + 6AF7B1545843C9BBED27626503F185E9 /* PreviewViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewViewConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PreviewViewConfiguration.swift; sourceTree = ""; }; + 6AF85A1017DE15A4101657601A4C5A16 /* DDLogMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDLogMacros.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDLogMacros.h; sourceTree = ""; }; + 6B80BF427EA0435A2D0917C4A28181F7 /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; + 6B8BEC335BBBFC53C5753059CA075FB3 /* YBIBCellProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBCellProtocol.h; path = YBImageBrowser/Protocol/YBIBCellProtocol.h; sourceTree = ""; }; + 6B8DD93F892EB3A76FC4B0CC65600DED /* CustomDateFormatTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomDateFormatTransform.swift; path = Sources/CustomDateFormatTransform.swift; sourceTree = ""; }; + 6BB7796CE00BCED66E4B2F23431A73F6 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; + 6BC962C67B698BC716FD521FD0D1ADBB /* AMapLocationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationKit.h; path = AMapLocationKit.framework/Headers/AMapLocationKit.h; sourceTree = ""; }; + 6BCE8FAF2BD0D9BBF46A9D702C7C1CC5 /* CocoaMQTT.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTT.swift; path = Source/CocoaMQTT.swift; sourceTree = ""; }; + 6BD92912FCEB695DC98E049E3F1E663E /* YBIBImageData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageData.m; path = YBImageBrowser/Image/YBIBImageData.m; sourceTree = ""; }; + 6BE1232171B86E58A95A465EF0D69CEA /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/Core/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; + 6C08D86D054AFDEF0A223CD7A4B5015B /* Core+String.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+String.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+String.swift"; sourceTree = ""; }; + 6C0F1E0571EE5F74112DC26DEE1DB61D /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; + 6C1764349B4C733F6B7A6B68D67BC042 /* LivePhotoSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LivePhotoSource.swift; path = Sources/General/ImageSource/LivePhotoSource.swift; sourceTree = ""; }; + 6C25F665BB457D3486FF8820D7DAEFAD /* VideoEditorPlayerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorPlayerView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorPlayerView.swift; sourceTree = ""; }; + 6C2E793CB5C9B430F36FE3573B5EBAB4 /* OIMManager+User.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+User.m"; path = "OpenIMSDK/Interface/OIMManager+User.m"; sourceTree = ""; }; + 6C4D7FBD66D7474E6981A9772DBE9E40 /* MqttDecodeSubAck.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttDecodeSubAck.swift; path = Source/MqttDecodeSubAck.swift; sourceTree = ""; }; + 6C658557DD91AA8F899ABACC31226433 /* RxSwiftExt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwiftExt.release.xcconfig; sourceTree = ""; }; + 6C7A61E9DB82D02FEA27B03B819C2C7A /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; + 6C8171B585A7AB98F4DAC387B9569C8D /* MqttDecodePubAck.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttDecodePubAck.swift; path = Source/MqttDecodePubAck.swift; sourceTree = ""; }; + 6C98EBBA8FA597707BF0B50B83AE3CE9 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; + 6CA7E77AA99A3B25E82ACB1C03DE1AFF /* URL+Moya.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+Moya.swift"; path = "Sources/Moya/URL+Moya.swift"; sourceTree = ""; }; + 6CC9F61619926E872D28D902C1AF880B /* IQKeyboardManager+ToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManager.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift"; sourceTree = ""; }; + 6CCA2FE51D5FD515273072EB283E8F5D /* EllipseAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EllipseAnimation.swift; path = Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift; sourceTree = ""; }; + 6CEDFF8B9C44A6519EBCD6F47B0F262D /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = ""; }; + 6D3AFCC822EA201EE0774A79F8B66DF7 /* MaskContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MaskContainerLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift; sourceTree = ""; }; + 6D40C7E7A6B409DD2DD2897EE900996D /* SGScanViewConfigure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGScanViewConfigure.h; path = SGQRCode/ScanView/SGScanViewConfigure.h; sourceTree = ""; }; + 6D70119D576DA10861861869B0B91C91 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; + 6D8493AA193CAA6E09CB81F3D8A8C477 /* ShapeRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeRenderLayer.swift; path = Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift; sourceTree = ""; }; + 6D85D65A785DD11618ACCAF108CFE339 /* RxSwiftExt-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwiftExt-dummy.m"; sourceTree = ""; }; + 6DC8C41B7AB96DC700B00AEB39525F5C /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; + 6DD35593A8572CEFFF1D2C61579D97C6 /* LRUCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LRUCache.swift; path = Sources/Private/EmbeddedLibraries/LRUCache/LRUCache.swift; sourceTree = ""; }; + 6DE422219528B0F8C044E9C23AC7E206 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; + 6E0C12AE7D6E705E0AB3F100E94BDB07 /* ControlTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlTarget.swift; path = RxCocoa/Common/ControlTarget.swift; sourceTree = ""; }; + 6E2020960628625BDC018E48BA326EB2 /* Trim.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Trim.swift; path = Sources/Private/Model/ShapeItems/Trim.swift; sourceTree = ""; }; + 6E26B46220F7707A660D0AD6D5B62D5B /* RxRelay.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxRelay.modulemap; sourceTree = ""; }; + 6E431C8A3F91F378151064C20F5B3FED /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = ""; }; + 6E4DF96474119089881BF2A330AB1728 /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = ""; }; + 6E6F7400F823325A0BA8E1444E705B35 /* SGSoundEffect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGSoundEffect.m; path = SGQRCode/SoundEffect/SGSoundEffect.m; sourceTree = ""; }; + 6E797E34167479AB4C62BEF24C93CAAE /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; 6E897F35E5E27028AC58B14B552FBC8D /* IQKeyboardCore-IQKeyboardCore */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardCore-IQKeyboardCore"; path = IQKeyboardCore.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6EE4B63201F50240A5E467DFB9D59047 /* DDContextFilterLogFormatter+Deprecated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DDContextFilterLogFormatter+Deprecated.m"; path = "Sources/CocoaLumberjack/Extensions/DDContextFilterLogFormatter+Deprecated.m"; sourceTree = ""; }; - 6EEA47533FC8C4392A59226694906812 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = ""; }; - 6EECED2B41B3AE95453700ECC56AA3BB /* NSObject+MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJProperty.h"; path = "MJExtension/NSObject+MJProperty.h"; sourceTree = ""; }; + 6E9D7F05983C95E168849B51B28EC29C /* ShapeContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeContainerLayer.swift; path = Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift; sourceTree = ""; }; + 6ED83F2399718196583271FC686CBC4D /* IQKeyboardNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-prefix.pch"; sourceTree = ""; }; 6EFB05F1F29FAD078E29A839C5020799 /* MBProgressHUD-MBProgressHUD */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MBProgressHUD-MBProgressHUD"; path = MBProgressHUD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6F040177292504B70D8F778A5E3CD95B /* YBIBDataMediator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBDataMediator.m; path = YBImageBrowser/Base/YBIBDataMediator.m; sourceTree = ""; }; - 6F1D204D6DDAB229B632C8DE0C49CE0B /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = ""; }; - 6F733D4160D39073D45BC056455B855F /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - 6F774BD72D02B75021A7214A32F49A43 /* PreCompLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompLayer.swift; path = Sources/Private/CoreAnimation/Layers/PreCompLayer.swift; sourceTree = ""; }; - 6FA64DC127F889004374FBFEC2973DD1 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - 6FB2EC71F2E7CDFA675A35527736E651 /* IQTextView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-prefix.pch"; sourceTree = ""; }; - 6FB9C7E464A314BD63D92538B44F8A6D /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; - 6FCBBFB94C92AAF65512098808136293 /* MaskCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MaskCompositionLayer.swift; path = Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift; sourceTree = ""; }; - 6FE753BC375C0C5909BCC6A256CBBD0C /* OIMUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMUserInfo.h; path = OpenIMSDK/Model/OIMUserInfo.h; sourceTree = ""; }; - 6FF0DAC53114F5A38ED18BC9E4CFB6EF /* YBIBDataProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBDataProtocol.h; path = YBImageBrowser/Protocol/YBIBDataProtocol.h; sourceTree = ""; }; - 701AC824D35F7C99415ECEF8F3BF5AA5 /* MATraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceManager.h; path = MAMapKit.framework/Headers/MATraceManager.h; sourceTree = ""; }; - 705E66B46D3FB6C3860039695FEE7E45 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = WebImage/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 705E874F6D90A41BB91F8827850D08E5 /* once.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = once.swift; path = Source/RxSwift/once.swift; sourceTree = ""; }; - 707AC05913DB1E5066C5D4A3117A8D94 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 708DBDCABBB77C6D70637B96FB6FC314 /* GTCommonSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTCommonSDK.debug.xcconfig; sourceTree = ""; }; - 709352A78011CC2D4BE14AD43BFD8505 /* ItemEvents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemEvents.swift; path = RxCocoa/iOS/Events/ItemEvents.swift; sourceTree = ""; }; - 70DB28246BADC7873C92DF9506CFB0E9 /* OpenIMSDKCore-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OpenIMSDKCore-xcframeworks.sh"; sourceTree = ""; }; - 70EB9DECE01FBEF4BE7887739229CDA6 /* lottie-ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.release.xcconfig"; sourceTree = ""; }; - 715CB07F1E5C3BEAB5B768CF6A9DD872 /* HXPHPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HXPHPicker.release.xcconfig; sourceTree = ""; }; - 716510DE893831EBA6423B0D86C62DDB /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; - 716D4AEC881C597AE0F28479D16E71AE /* GradientFillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift; sourceTree = ""; }; - 71CAA31075A3F10488171E1B74FC8B0F /* SwiftyUserDefaults.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftyUserDefaults.modulemap; sourceTree = ""; }; - 71D2F825E8CB5F153CB1129FD6C30A14 /* RxCollectionViewSectionedReloadDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewSectionedReloadDataSource.swift; path = Sources/RxDataSources/RxCollectionViewSectionedReloadDataSource.swift; sourceTree = ""; }; - 71D663E2E1139410A15C558A6896C8C7 /* TagListView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TagListView-umbrella.h"; sourceTree = ""; }; - 71DF2431E6CA3D1CAA83A2C349EEFD5D /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; - 71E50B64226D3560CAF37B63F959E322 /* YYImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYImageCoder.m; path = YYImage/YYImageCoder.m; sourceTree = ""; }; - 71FD6427BA94D4884EC2B62E60E9E7A3 /* DefaultsKeys.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsKeys.swift; path = Sources/DefaultsKeys.swift; sourceTree = ""; }; - 722701F61A9A66CC4971FB3EA06BD853 /* LottieColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieColor.swift; path = Sources/Public/Primitives/LottieColor.swift; sourceTree = ""; }; - 722CBBE05AA45B4D4BCC2A8D48EC1CFB /* OIMCallbacker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMCallbacker.h; path = OpenIMSDK/Callbacker/OIMCallbacker.h; sourceTree = ""; }; - 725E391E4DD80A683204D50692D49254 /* AlbumViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumViewController.swift; path = Sources/HXPHPicker/Picker/Controller/AlbumViewController.swift; sourceTree = ""; }; - 72679461AA0F6BDFD187D5631DB82AEB /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; - 726A570EB3A764BD9182B257D8A9B086 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 728805FD0FBBD9E7F0C8D7E8AA79948C /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/Features/AuthenticationInterceptor.swift; sourceTree = ""; }; - 72CC42138666BE5E04A9735B223C6772 /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftyJSON.modulemap; sourceTree = ""; }; - 72D229FA5EF1F07B5006BB07983E73F3 /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = Sources/RxDataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; - 736BB63679A232597C9253B4A0B634D1 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 7373E895FB24690540181BFF56955312 /* URLPatchComponentMatchResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLPatchComponentMatchResult.swift; path = Sources/URLMatcher/URLPatchComponentMatchResult.swift; sourceTree = ""; }; - 7375C57236DEA3235E0F2EEB61FA4BC5 /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; - 7381A6E52759A60F4F9B92C1DE3B2E15 /* GradientRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientRenderLayer.swift; path = Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift; sourceTree = ""; }; - 73A10AD1404B88D834B5499FC7837CFD /* MACircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircle.h; path = MAMapKit.framework/Headers/MACircle.h; sourceTree = ""; }; - 73AAE64514CF9375B037045D901E983C /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = ""; }; - 73B1D5C56726F64AE0476C0C1DE058EC /* ColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorExtension.swift; path = Sources/Private/Utility/Primitives/ColorExtension.swift; sourceTree = ""; }; - 73BD189B4E00DFEAEDCFD2ED648BD5A6 /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = ""; }; - 73CA2DF5C48F1B7F05C3D4908C3F0563 /* AMapLocationRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationRegionObj.h; path = AMapLocationKit.framework/Headers/AMapLocationRegionObj.h; sourceTree = ""; }; - 73CD422A69C42F923FBDDB22D2266109 /* YBIBSentinel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBSentinel.h; path = YBImageBrowser/Helper/YBIBSentinel.h; sourceTree = ""; }; - 74108890315A63C8D0AA1EAC2AA753B1 /* RxSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-prefix.pch"; sourceTree = ""; }; - 7410C1DF2145BEBE0C7CD5DAAE9F1ADB /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = ""; }; - 744818E8CAF84E619740349AA8310B49 /* Differentiator.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Differentiator.modulemap; sourceTree = ""; }; - 745E49067846460E0A71AE45B322158C /* LayerModel+makeAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "LayerModel+makeAnimationLayer.swift"; path = "Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift"; sourceTree = ""; }; - 7462F84AB2989D3A2675AA6CA2CC540B /* YBIBVideoTopBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoTopBar.h; path = Video/YBIBVideoTopBar.h; sourceTree = ""; }; - 748290F58F89C4842B47E1474CAA8B3D /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = ""; }; - 74CF6920D0B4CFAC98C5DBF9737EA29D /* Differentiator.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Differentiator.debug.xcconfig; sourceTree = ""; }; - 74D831646F1721D18E9CB61D78B92424 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - 74E963FDBB2A72AA3EB7D60BB0724666 /* Driver+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Driver+Subscription.swift"; path = "RxCocoa/Traits/Driver/Driver+Subscription.swift"; sourceTree = ""; }; - 74ED30CF01D00C8356D9811523C8FB36 /* RxCocoa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.debug.xcconfig; sourceTree = ""; }; - 750F89B19E3F2994003AEED155F64886 /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQInvocation.swift; sourceTree = ""; }; - 753831899F12C2CB084FFE69415AB0DD /* MoyaProvider+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MoyaProvider+Internal.swift"; path = "Sources/Moya/MoyaProvider+Internal.swift"; sourceTree = ""; }; - 7545B30E10C04C8D4BE734F25C09CB15 /* ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist"; sourceTree = ""; }; - 75AB146FA8EACB2D7B8898EDB3F75A16 /* _RX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RX.h; path = RxCocoa/Runtime/include/_RX.h; sourceTree = ""; }; - 75BB2637D9DB872F6C846F83FBCD4A40 /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = ""; }; - 75E5014C5A20DE4797B4451A675607F3 /* OIMConversationInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMConversationInfo.h; path = OpenIMSDK/Model/OIMConversationInfo.h; sourceTree = ""; }; - 75FE13F045D517683751F241C2D07B5D /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 7631896C502615B6F84E4C67DA4FFCD8 /* libwebp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = libwebp.modulemap; sourceTree = ""; }; - 763E77216C850D70057D326B4A6BA473 /* UISearchController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchController+Rx.swift"; path = "RxCocoa/iOS/UISearchController+Rx.swift"; sourceTree = ""; }; - 769581DC9784BD5739E44A9BD1FEE12D /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - 76A218800E579334BACA61C598A34ED7 /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; - 76B335F9C1074A16DC6C649D6F834E5F /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = ""; }; - 76C66EEFD236908E007E71E3DEB9A2C1 /* NetworkActivityPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkActivityPlugin.swift; path = Sources/Moya/Plugins/NetworkActivityPlugin.swift; sourceTree = ""; }; - 76F3D82220A6BE6531EBF65472D2F31B /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; - 76F5FB9F41D1AC5CB74A20A5F1BCAB11 /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = ""; }; - 76F771CC8FF3EE94CAD251B016704D2B /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = ""; }; - 7736D9652CE71234ABED55D62ADBD35F /* AssetManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssetManager.swift; path = Sources/HXPHPicker/Core/Util/AssetManager.swift; sourceTree = ""; }; - 773911D3EAAE3F33A663F7CC1EC09005 /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; - 774303A6EF1A2EAA26EEB43E1E3F8342 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - 775230A1FA491738DF687BEEB0E36177 /* AnimationTime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationTime.swift; path = Sources/Public/Primitives/AnimationTime.swift; sourceTree = ""; }; - 77677AE1490EEECD80C448F28787D67E /* OIMSimpleResultInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSimpleResultInfo.m; path = OpenIMSDK/Model/OIMSimpleResultInfo.m; sourceTree = ""; }; - 777510880AE0C0FEC2BF99AC49794494 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; - 779A45EE4D8A55285225137A022FF947 /* DDASLLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDASLLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDASLLogger.h; sourceTree = ""; }; - 780859E89AEFB4AE5934635E23DD9F9E /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = ""; }; - 781602548FAD9A55430D9ACCCB6098CC /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON/SwiftyJSON.swift; sourceTree = ""; }; - 78936EC2DBF2CF8634C0CC3581635D28 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 78CB2111E31FA7D356C77E38AD4E7B19 /* UIView+ResignObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ResignObjc.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+ResignObjc.swift"; sourceTree = ""; }; - 78E82B74D1377FBBEC130E8053016A10 /* DictionaryTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DictionaryTransform.swift; path = Sources/DictionaryTransform.swift; sourceTree = ""; }; - 78EDEE5E177BF6DF888E2F685ABDAF79 /* NavigatorProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NavigatorProtocol.swift; path = Sources/URLNavigator/NavigatorProtocol.swift; sourceTree = ""; }; - 78F7A8987B24B2D899CBD7F38349871F /* KeyframeInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeInterpolator.swift; path = Sources/Private/Utility/Interpolatable/KeyframeInterpolator.swift; sourceTree = ""; }; - 79397AC7344C5EAFB7C39EC8AC865589 /* Observable+Alias.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Alias.swift"; path = "Source/Tools/Observable+Alias.swift"; sourceTree = ""; }; - 7943889E640D6E0573612C76BC2D55C7 /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = ""; }; - 797D2CF8D70578E3BCF39EF8F5D828CE /* YBIBImageData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageData.h; path = YBImageBrowser/Image/YBIBImageData.h; sourceTree = ""; }; - 79991E2B9E282CACD293EC27C823FE3E /* AMap.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMap.bundle; path = MAMapKit.framework/AMap.bundle; sourceTree = ""; }; - 79B1ECE0D7959F99866089A3071E708D /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = ""; }; - 79B611C17C06D5FF4CCB095774A495E9 /* Keyframe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keyframe.swift; path = Sources/Public/Keyframes/Keyframe.swift; sourceTree = ""; }; - 79D95A5C4EA4042D907803C45FFD333C /* MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtension.h; path = MJExtension/MJExtension.h; sourceTree = ""; }; - 79E707A863CA7859212FEFF8209B2C51 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; - 7A08D4E2AC3083940E2DD5AB50F42519 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - 7A4F33BE715AF8213D74710FD0599549 /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; - 7A5645C607400D64B7E1AB629322A90E /* ShapeLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeLayerModel.swift; path = Sources/Private/Model/Layers/ShapeLayerModel.swift; sourceTree = ""; }; - 7A5CF121F3B617D5C4A09D9BDD4D5011 /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; - 7A5D9C68C0A84DD8FEDB37BAD59E8E7C /* RectNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RectNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift; sourceTree = ""; }; - 7A63F0A1DA3294431A4B78D09A498914 /* RxCocoa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-prefix.pch"; sourceTree = ""; }; - 7AAC2C1B32FB6621960C9A8DA2B3F93B /* MJFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJFoundation.h; path = MJExtension/MJFoundation.h; sourceTree = ""; }; - 7AC1D8D7E70806DAFFF676321C42C9EC /* PhotoEditorFilterView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorFilterView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorFilterView.swift; sourceTree = ""; }; - 7AC464DFEB919BE05FB5409F4D33C4D3 /* MAPolygon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygon.h; path = MAMapKit.framework/Headers/MAPolygon.h; sourceTree = ""; }; - 7ACD8B678F457F12617E8F02C445A9F0 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 7AD087C00AE0A2CB66E870C10681C588 /* SharedSequence+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift"; sourceTree = ""; }; - 7B158E503EAACD9D43DEF7BA2586498A /* YBIBSentinel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBSentinel.m; path = YBImageBrowser/Helper/YBIBSentinel.m; sourceTree = ""; }; - 7B77DEB6A390666DF68E81ADE12F1BED /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; - 7B95BC3382D56B69F02F01E003F03796 /* ObservableType+Weak.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Weak.swift"; path = "Source/RxSwift/ObservableType+Weak.swift"; sourceTree = ""; }; - 7BA4DAE10AD47725EEC376152E05E20C /* IQKeyboardToolbar-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbar-dummy.m"; sourceTree = ""; }; - 7BB619052F7DA53A970B433F53AAEA9E /* not.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = not.swift; path = Source/RxSwift/not.swift; sourceTree = ""; }; - 7BC1184B394B0F1891FA39A297FFFEA0 /* MoyaProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MoyaProvider.swift; path = Sources/Moya/MoyaProvider.swift; sourceTree = ""; }; - 7BEFF4F4EB8D45BF83AE2F386D71FE70 /* IQKeyboardToolbar-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-umbrella.h"; sourceTree = ""; }; - 7BF5D4957693B5B5DBC61FAC96B2CF23 /* LottieAnimationSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationSource.swift; path = Sources/Private/Utility/LottieAnimationSource.swift; sourceTree = ""; }; - 7C10ED747514E81C114AB0F3CA16FEE2 /* OIMMessageInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMMessageInfo.m; path = OpenIMSDK/Model/OIMMessageInfo.m; sourceTree = ""; }; - 7C22CE4CD1F8C21C3216ED7B7D0E2880 /* DateInRegion+Compare.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Compare.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Compare.swift"; sourceTree = ""; }; - 7C262EC7FE9B7C5853A9BF656E7B4C31 /* Core+UIFont.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIFont.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIFont.swift"; sourceTree = ""; }; - 7C2D5F1FE3CA03C21F8415CE9CDE6383 /* MACustomCalloutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomCalloutView.h; path = MAMapKit.framework/Headers/MACustomCalloutView.h; sourceTree = ""; }; - 7C2E339CA969D2C5ED74BA6ECD6F69EE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardCore/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 7C37BD2829041D89916A260C97F51808 /* AMapFoundation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapFoundation.release.xcconfig; sourceTree = ""; }; - 7C431CF55C1DEA301F7009AC22BAF420 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; - 7C734560368C98DD1126AAEE26285B2F /* ignore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ignore.swift; path = Source/RxSwift/ignore.swift; sourceTree = ""; }; - 7C809857309C827761D59B9706AD5589 /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; + 6F21BA5E097A8DE88F83DD9522A9D0A0 /* CocoaMQTT.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CocoaMQTT.modulemap; sourceTree = ""; }; + 6F42108168E3827DDBA4CF6555E2306D /* AlbumTickView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTickView.swift; path = Sources/HXPHPicker/Picker/View/AlbumTickView.swift; sourceTree = ""; }; + 6F476A0F630588EC001BA726F7230DE0 /* MAAnimatedAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnimatedAnnotation.h; path = MAMapKit.framework/Headers/MAAnimatedAnnotation.h; sourceTree = ""; }; + 6F49859D2EBDF3619C22E8A959FF01BD /* YBImageBrowserVideo.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = YBImageBrowserVideo.bundle; path = Video/YBImageBrowserVideo.bundle; sourceTree = ""; }; + 6F8206ABFEFF019F1EA61DE7AADF9462 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Core/Request.swift; sourceTree = ""; }; + 6FB0A97444E8C7D469D5B0FF79C781D6 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; + 6FC3E4E3FE9B243927547B8B3D39931C /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Features/Concurrency.swift; sourceTree = ""; }; + 6FC8E717DED2B35BD1F66E0A8B62D552 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; + 706126F07CEBF1B19EAA3D54064C3002 /* TimePeriodProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodProtocol.swift; path = Sources/SwiftDate/TimePeriod/TimePeriodProtocol.swift; sourceTree = ""; }; + 709B926DD9D3886E0BA907D0A3655373 /* RxCocoa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.release.xcconfig; sourceTree = ""; }; + 70CEF74CF654DC40CAA98E45E03634BD /* OIMFileElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMFileElem.h; path = OpenIMSDK/Model/OIMFileElem.h; sourceTree = ""; }; + 70CF7B526B329D2F7D16A737DF3E72CA /* IQKeyboardToolbarManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbarManager.modulemap; sourceTree = ""; }; + 70DF95CF1A956131DE522B1EC58F5D47 /* OIMFullUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMFullUserInfo.m; path = OpenIMSDK/Model/OIMFullUserInfo.m; sourceTree = ""; }; + 7111115F1C55B2A19B14616B49223065 /* PhotoCroppingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCroppingConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/PhotoCroppingConfiguration.swift; sourceTree = ""; }; + 71223FB6D980C715AF98D520D963B6B5 /* MqttSubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttSubscription.swift; path = Source/MqttSubscription.swift; sourceTree = ""; }; + 712994A3D2CF6756C96528319EEF6AA9 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; + 715C3629D8ED7790147D9200459C63B8 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; + 7196CA4EF95950D8E1B0780E5CB73D1E /* IQTextView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-umbrella.h"; sourceTree = ""; }; + 7197893149C4441D96B6DD968118BD8C /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; + 719C9CE13C261293D1AE894B5DA81EB7 /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = ""; }; + 71A128A3C931B299C59408CB2AE87451 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; + 71A2C4C71126517C40B0DB66C220EBD7 /* MAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapView.h; path = MAMapKit.framework/Headers/MAMapView.h; sourceTree = ""; }; + 71A3AA46FA62EF3D23F05187F1EA1CD0 /* IQKeyboardAppearanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceConfiguration.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift; sourceTree = ""; }; + 71CEC01D5366F1D7433565AE23908319 /* IQTextView+Placeholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQTextView+Placeholderable.swift"; path = "IQTextView/Classes/IQTextView+Placeholderable.swift"; sourceTree = ""; }; + 7208DE5B0D75C8BD53D09473AD6743A6 /* MAIndoorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAIndoorInfo.h; path = MAMapKit.framework/Headers/MAIndoorInfo.h; sourceTree = ""; }; + 721C8DFB2C522F383CCF147731D6C8CE /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = ""; }; + 723B33791793F56BD5E9F38531D5874D /* Repeater.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeater.swift; path = Sources/Private/Model/ShapeItems/Repeater.swift; sourceTree = ""; }; + 7255A222C9A1437D1F742C8CBFEF988B /* Optional+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Optional+Extensions.swift"; path = "Sources/Differentiator/Optional+Extensions.swift"; sourceTree = ""; }; + 72580C48B12D84C13CB91FB803B3250C /* YYAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYAnimatedImageView.m; path = YYImage/YYAnimatedImageView.m; sourceTree = ""; }; + 725BEA8CF189D4B0B923DC15BD501A1C /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; + 72766BC56FB33D493A0DA75B5189A566 /* DecodingStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DecodingStrategy.swift; path = Sources/Public/Configuration/DecodingStrategy.swift; sourceTree = ""; }; + 727C62357BCC8E0AE55A67EC6658490C /* MBProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.debug.xcconfig; sourceTree = ""; }; + 727FFC6D0A7BEFB9E947E7D5FEB69455 /* MJExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJExtension-dummy.m"; sourceTree = ""; }; + 7282B196E51A3F4664251AA4023D0C02 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJRefresh/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 728E021DA9E63720A04C56E1FB52DA37 /* RxTabBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift; sourceTree = ""; }; + 728F4A0612FA1A63487666BF4A4B68DA /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; + 729C335AC4480787A0D8A171C363F055 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; + 72A1EAF3B2B93A6D388301B986ACB69E /* YYImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYImage.release.xcconfig; sourceTree = ""; }; + 72BC2659EE479F1DEDEA53D93AC18285 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; + 72CE3573CD388705660B27A2AF26D4C5 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; + 72DF4AA01E687D7B5FA55FD57819D458 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + 72EB134685BD981674EE5719D703B0E0 /* MAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeometry.h; path = MAMapKit.framework/Headers/MAGeometry.h; sourceTree = ""; }; + 7307E2DAAF66A2DA284CCE8C33EB8980 /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; + 731CEBC2B0AC7F996BF22CAFD8482D40 /* MATileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlayRenderer.h; path = MAMapKit.framework/Headers/MATileOverlayRenderer.h; sourceTree = ""; }; + 732C3D046DA1DDAADB427A51CFA8D702 /* URLTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLTransform.swift; path = Sources/URLTransform.swift; sourceTree = ""; }; + 735D6AE5E93EF5DB28F313B462B8620D /* sharpyuv_csp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_csp.c; path = sharpyuv/sharpyuv_csp.c; sourceTree = ""; }; + 7389364A0F9C4547DF6856032C109311 /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; + 73A9AFEB67D867F54621A8B038E14078 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; + 73C08A3172542E0D72BEEF579CA2F246 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; + 73FB8216CF2F66343E68F8498EADB79F /* PhotosUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PhotosUI.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/PhotosUI.framework; sourceTree = DEVELOPER_DIR; }; + 745F624AA53CEDAE08D3E89BB5C6DBED /* PhotoEditorViewController+Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoEditorViewController+Request.swift"; path = "Sources/HXPHPicker/Editor/Controller/PhotoEditorViewController+Request.swift"; sourceTree = ""; }; + 747D0903BDC62FE4C5DA5E8AA4342FAC /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; + 7494A83BA67A532F60523715329204DF /* WechatOpenSDK-XCFramework.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "WechatOpenSDK-XCFramework.release.xcconfig"; sourceTree = ""; }; + 749621F3F175B83BA32CAE04C651F4DF /* DDLog+LOGV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DDLog+LOGV.h"; path = "Sources/CocoaLumberjack/include/CocoaLumberjack/DDLog+LOGV.h"; sourceTree = ""; }; + 74B3D2B854D0C4E61AE93E1D37D28752 /* sharpyuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_neon.c; path = sharpyuv/sharpyuv_neon.c; sourceTree = ""; }; + 74C69FE3005EC8FA3F9D8FCEC50F6CC8 /* OIMPictureElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMPictureElem.h; path = OpenIMSDK/Model/OIMPictureElem.h; sourceTree = ""; }; + 74CA6CFA6A9272E68BB7A7285B05F588 /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; + 74ED59197619BCC0BC378F7696D9CF23 /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; + 74EF885F453A96CCB8817B3E6A482055 /* MoyaProvider+Defaults.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MoyaProvider+Defaults.swift"; path = "Sources/Moya/MoyaProvider+Defaults.swift"; sourceTree = ""; }; + 751C8796E14CDA48CEFF8C95250759A9 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = ""; }; + 7537436472ABFEAD772B0BF688824449 /* MainThreadAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainThreadAnimationLayer.swift; path = Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift; sourceTree = ""; }; + 754D0F51CD2EAF6A474BED8B1704DE6B /* CloseButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CloseButton.swift; path = TagListView/CloseButton.swift; sourceTree = ""; }; + 75705F5AA04E07912B9A7028B41CC240 /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = ""; }; + 75859D611A6F089B1FDC29D1AF73E27F /* ValidationType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValidationType.swift; path = Sources/Moya/ValidationType.swift; sourceTree = ""; }; + 7594C627631107EC787B010DDB216F87 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; + 75AA059908618543FD7A7E7DD4C6BEAA /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + 75CFF08BA767C49703863DFF96165154 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + 75D18C3514B0AB93334F121664FB2959 /* DropShadowStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowStyle.swift; path = Sources/Private/Model/LayerStyles/DropShadowStyle.swift; sourceTree = ""; }; + 75E672D2E3F85192FCB6AA5DB98E8607 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; + 761EDCF2FCF03DCA3D4AAE68F1AFF4F6 /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = ""; }; + 763616BE3E35702DEF0239BC9469B331 /* ShapeLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeLayer.swift; path = Sources/Private/CoreAnimation/Layers/ShapeLayer.swift; sourceTree = ""; }; + 7657F084D1FA639C2B0E06330CD5D367 /* CurveVertex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurveVertex.swift; path = Sources/Private/Utility/Primitives/CurveVertex.swift; sourceTree = ""; }; + 765D3D4E7343A74C9DAAC6872CCA30D6 /* YBIBImageCell+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBImageCell+Internal.h"; path = "YBImageBrowser/Image/YBIBImageCell+Internal.h"; sourceTree = ""; }; + 7675A584D15BA63139E519FD2CB2457A /* NSObject+Rx+RawRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+RawRepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift"; sourceTree = ""; }; + 767C6D24F65E9C5553D193CDDA8BAE82 /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = ""; }; + 768284F94C04D4AA181C44C6DABE481C /* DDContextFilterLogFormatter+Deprecated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DDContextFilterLogFormatter+Deprecated.h"; path = "Sources/CocoaLumberjack/include/CocoaLumberjack/DDContextFilterLogFormatter+Deprecated.h"; sourceTree = ""; }; + 7697809BBA99F7988F7FFD07178DF004 /* URLSession+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+Rx.swift"; path = "RxCocoa/Foundation/URLSession+Rx.swift"; sourceTree = ""; }; + 76CC33947A6F23A709A9F9686648B932 /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = ""; }; + 76D165A54C30392DFC0BBA605E58B93F /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + 76E48E1B8ED8E32B9FD17F6AF5FD4C19 /* DDMultiFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMultiFormatter.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDMultiFormatter.h; sourceTree = ""; }; + 76FB8636DE8E4F96063F7028E44A0E04 /* ErasedContentProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErasedContentProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ErasedContentProviding.swift; sourceTree = ""; }; + 77108217CD9670D65A815C85CAD4BC74 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; + 7739C14DC6B605D8F2466FFD82090ED7 /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = ""; }; + 773F9B01882667DE86F6CA4CE8008AF1 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + 775A6AD8F59EB8B8134F15DF8752882A /* libwebp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "libwebp-Info.plist"; sourceTree = ""; }; + 7772449672CBE48D3FFA0D9317D8AD48 /* EpoxyModelStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelStorage.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelStorage.swift; sourceTree = ""; }; + 777F31EBF8D1DD8526D7F094EE35DAF4 /* sharpyuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv.h; path = sharpyuv/sharpyuv.h; sourceTree = ""; }; + 779B2359143D01352428D637B66ABB03 /* YBIBTopView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBTopView.h; path = YBImageBrowser/ToolView/YBIBTopView.h; sourceTree = ""; }; + 77A1006A98BEC8471B208887084BC2DC /* SwiftDate-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftDate-dummy.m"; sourceTree = ""; }; + 77D36BE38B7CA86985F86993EB76ED85 /* KeyframeGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeGroup.swift; path = Sources/Private/Model/Keyframes/KeyframeGroup.swift; sourceTree = ""; }; + 77F14C85DC9D13A5DDC84E594EEA8EA7 /* AnimationTime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationTime.swift; path = Sources/Public/Primitives/AnimationTime.swift; sourceTree = ""; }; + 77FD67ABAAE7C891D12DD57D0E9D1D83 /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/Features/RetryPolicy.swift; sourceTree = ""; }; + 783FC12BAED041F378F97768D2B28B8C /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; + 78407664800D43DC47B50BE2A39D946A /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = ""; }; + 78663799850368AB5C48ED1F8C841B69 /* PhotoEditorDrawView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorDrawView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorDrawView.swift; sourceTree = ""; }; + 78A70A14941070D7C9E513ECE7ECCF02 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + 78C01105638592D5D6B38F6C58CC2EE0 /* AnimatableSectionModelType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatableSectionModelType.swift; path = Sources/Differentiator/AnimatableSectionModelType.swift; sourceTree = ""; }; + 78C694E50921AD52B782E980CAE66D3D /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + 78F45D1A1EB720928FAD6EFDCCBE1536 /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainItemAccessibility.swift; path = SwiftKeychainWrapper/KeychainItemAccessibility.swift; sourceTree = ""; }; + 7928401BE8E30C66EE3ADE8DD8F0B52D /* IQPlaceholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPlaceholderable.swift; path = IQKeyboardToolbar/Placeholderable/IQPlaceholderable.swift; sourceTree = ""; }; + 797F1309BF0507E755025835173DA3E3 /* Core+UIImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIImage.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIImage.swift"; sourceTree = ""; }; + 7983D53E055B37FF8E25038B02CC164D /* OIMCallbacker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMCallbacker.h; path = OpenIMSDK/Callbacker/OIMCallbacker.h; sourceTree = ""; }; + 79B63F73A0E96CFFC29D7CA1F042FF88 /* WithUnretained.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithUnretained.swift; path = RxSwift/Observables/WithUnretained.swift; sourceTree = ""; }; + 79B7929EC24027379B0B163DA94A6AFA /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; + 7A15C785772B2FB9827145D163C5E770 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; + 7A3BD5869D2B1C7A4FBF323D773D9E1C /* SwiftDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftDate.swift; path = Sources/SwiftDate/SwiftDate.swift; sourceTree = ""; }; + 7A4BFE94DC6BB805A8659EF7C8C4D022 /* Infallible+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Operators.swift"; path = "RxSwift/Traits/Infallible/Infallible+Operators.swift"; sourceTree = ""; }; + 7A538427ACB5E54D82B9758C7B881AFA /* HXPHPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HXPHPicker.release.xcconfig; sourceTree = ""; }; + 7A8C2DD3A2C1D03AAA15596C4B5EC68C /* Transform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Transform.swift; path = Sources/Private/Model/Objects/Transform.swift; sourceTree = ""; }; + 7A8F1EA5A5A4DAA6EBB99FAC4B0D994C /* MqttDecodePubComp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttDecodePubComp.swift; path = Source/MqttDecodePubComp.swift; sourceTree = ""; }; + 7AA65DC4296085382ABB031FFD4FDBAD /* SwiftKeychainWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwiftKeychainWrapper.h; path = SwiftKeychainWrapper/SwiftKeychainWrapper.h; sourceTree = ""; }; + 7AC9E6CA74830BF0C4F0A5DEB598B368 /* DDDispatchQueueLogFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDDispatchQueueLogFormatter.m; path = Sources/CocoaLumberjack/Extensions/DDDispatchQueueLogFormatter.m; sourceTree = ""; }; + 7AEC81D4CEAFD3F38E344F8311FE012D /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; + 7B4C1E7106CBA77D0D297129D49B1EB3 /* YYFrameImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYFrameImage.m; path = YYImage/YYFrameImage.m; sourceTree = ""; }; + 7B6958855F647734EBB24E8340EEC38B /* LottiePlaybackMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottiePlaybackMode.swift; path = Sources/Public/Animation/LottiePlaybackMode.swift; sourceTree = ""; }; + 7B7E3FC6BDBCDDF8FE344D514AFA47BC /* RxCollectionViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + 7B82EBD3E153DBD61BEBCBDBDA0605C7 /* CocoaLumberjack-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaLumberjack-dummy.m"; sourceTree = ""; }; + 7B842D2FB9E52687A1AF54CD9740A769 /* OIMGroupApplicationInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMGroupApplicationInfo.m; path = OpenIMSDK/Model/OIMGroupApplicationInfo.m; sourceTree = ""; }; + 7BD34BB4551BFE8B66525915EEC8A279 /* ZXSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZXSDK.release.xcconfig; sourceTree = ""; }; + 7C427136B27DC559447F9182284C8042 /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; + 7C5F5574EA447F3EFFBEBB60DEA304A5 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 7C6318E30F642CCF4DCF9EB42BEBE4A9 /* TakeWithPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWithPredicate.swift; path = RxSwift/Observables/TakeWithPredicate.swift; sourceTree = ""; }; + 7C8894A5DD9B48BB8E9CAA4880FE51C1 /* ResourceBundle-MJExtension-MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJExtension-MJExtension-Info.plist"; sourceTree = ""; }; + 7C8FAD9863B07762E14BEC17A1AD179E /* IQKeyboardToolbarConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConfiguration.swift; path = IQKeyboardToolbarManager/Classes/Configuration/IQKeyboardToolbarConfiguration.swift; sourceTree = ""; }; + 7C922F108D85E1DA2A7D649B99419548 /* ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist"; sourceTree = ""; }; 7CA3B05F07B063827B34AD2B0DB23706 /* SwiftyJSON-SwiftyJSON */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "SwiftyJSON-SwiftyJSON"; path = SwiftyJSON.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7CA4413BD540BFE68830E04D0B5F80B6 /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; - 7CC518F434B48E1EC17CB97405E4AAE6 /* OIMConversationInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMConversationInfo.m; path = OpenIMSDK/Model/OIMConversationInfo.m; sourceTree = ""; }; - 7CCC9D719AB7E41B97FDF91B409B1579 /* DDFileLogger+Buffering.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DDFileLogger+Buffering.m"; path = "Sources/CocoaLumberjack/Extensions/DDFileLogger+Buffering.m"; sourceTree = ""; }; - 7CCD874AE1FC5B522BA3D50B6F03D7B2 /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = ""; }; - 7CE41C5B80EA05791BE83C7126E9D35C /* AnimatableSectionModelType+ItemPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AnimatableSectionModelType+ItemPath.swift"; path = "Sources/Differentiator/AnimatableSectionModelType+ItemPath.swift"; sourceTree = ""; }; - 7CE5A9E99CE471E9A158B19E7DA75F2C /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = ""; }; - 7CF512563DEBEF3926ED04F7296DA8B0 /* OIMMessageElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMMessageElem.h; path = OpenIMSDK/Model/OIMMessageElem.h; sourceTree = ""; }; - 7CFD834B07B9BC8B466E8ACB23CF66F7 /* TransformOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformOf.swift; path = Sources/TransformOf.swift; sourceTree = ""; }; - 7D03309A81B860C0AC7EB6F7702CDC78 /* MAMapStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapStatus.h; path = MAMapKit.framework/Headers/MAMapStatus.h; sourceTree = ""; }; - 7D21B5AC77BB1F5C1839961C7C149A4F /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - 7D2727537199FB03475AF85FAF421215 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; - 7D2B336DD1382EE765ACAE769343CFE2 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - 7D32944BBFF391634E35F8A5B7F4936F /* Core+URL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+URL.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+URL.swift"; sourceTree = ""; }; - 7D3DCF34621F9247483D8AC14424E3D9 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 7D50688D55F92F226672A561EA59EFC4 /* RxCollectionViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift; sourceTree = ""; }; - 7D5D3CD64711395EDE1E0558AA48CB7F /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - 7D5EC839402CC9058163D064D0B5E9CD /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; - 7D638901CE9A00B98FD0FD8D2DADCB2A /* WillDisplayProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WillDisplayProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/WillDisplayProviding.swift; sourceTree = ""; }; - 7D915E50F6FCDF1F827027D737E68CB8 /* RxTabBarControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift; sourceTree = ""; }; - 7DA0874C875EC9052754A0E09B82B4E6 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - 7DAD49D64090D08FBC52E7C52FFBFF8A /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; - 7DB6990AB0882562E03133DB23E906A8 /* URLMatchResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLMatchResult.swift; path = Sources/URLMatcher/URLMatchResult.swift; sourceTree = ""; }; - 7DB99949480CB8A0B0DF10697A19BAF6 /* OIMNotificationElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMNotificationElem.m; path = OpenIMSDK/Model/OIMNotificationElem.m; sourceTree = ""; }; - 7DCB1E01613F7B40578A36E6266BC0B7 /* OpenIMSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenIMSDK.debug.xcconfig; sourceTree = ""; }; - 7E04BB4D8359BD5A95AAD8B56BFE57B6 /* DDAssertMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDAssertMacros.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDAssertMacros.h; sourceTree = ""; }; - 7E23A30B365807329D25B8ECAF0D6DF3 /* OIMFileElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMFileElem.h; path = OpenIMSDK/Model/OIMFileElem.h; sourceTree = ""; }; - 7E28567FB181BF2D15FA053910918A9B /* DateInRegion+Math.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Math.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Math.swift"; sourceTree = ""; }; + 7CA97CA9D5066B3D28CB8DF6B80E1E22 /* Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Alamofire-Info.plist"; sourceTree = ""; }; + 7CB02546BA5EAF3A87B631DFDF1A12A9 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; + 7CB54E37C3D8E8221EED74772BBAB72B /* MATraceLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceLocation.h; path = MAMapKit.framework/Headers/MATraceLocation.h; sourceTree = ""; }; + 7D50006193AC7916C53011FD30B6B91F /* IQKeyboardReturnManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-umbrella.h"; sourceTree = ""; }; + 7D5F7D75A5F16DE8ED73EAB9D1681EE0 /* DDFileLogger+Buffering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DDFileLogger+Buffering.h"; path = "Sources/CocoaLumberjack/include/CocoaLumberjack/DDFileLogger+Buffering.h"; sourceTree = ""; }; + 7D60BD316ED3AAEB173CD7E6D10C500B /* YBIBPhotoAlbumManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBPhotoAlbumManager.h; path = YBImageBrowser/Helper/YBIBPhotoAlbumManager.h; sourceTree = ""; }; + 7D736B3283334F545C8A8931A8795A4C /* Popover-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Popover-Info.plist"; sourceTree = ""; }; + 7D90B17797653D7003F3F7A500E74D96 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/RxRelay/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 7DDD2C1AD91FF951A9A5F3D2E8D0913F /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + 7DDECA542B8616BF9C2AD135D1790970 /* SwiftDate-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDate-prefix.pch"; sourceTree = ""; }; + 7E0BB18C9D64642FF39EC8D976EF900D /* IQTextInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputView.swift; path = IQKeyboardCore/Classes/IQTextInputView.swift; sourceTree = ""; }; + 7E2DC49BDFE9EC35541E7552286CEF5E /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = ""; }; 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MJRefresh-MJRefresh.Privacy"; path = MJRefresh.Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E33D64E680019C177618308CB75EF6A /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; - 7E377318D40E300ABE825A4367FCBD80 /* EditorImageResizerControlView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorImageResizerControlView.swift; path = Sources/HXPHPicker/Editor/View/Photo/EditorImageResizerControlView.swift; sourceTree = ""; }; - 7E5A66AF3F7558F7194F9003783F97B0 /* EditorType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorType.swift; path = Sources/HXPHPicker/Editor/Model/EditorType.swift; sourceTree = ""; }; - 7E5D68AE59A4587387B9319DF7CF3358 /* DictionaryInitializable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DictionaryInitializable.swift; path = Sources/Private/Model/DictionaryInitializable.swift; sourceTree = ""; }; - 7E6C39A78E34CAF91FE894770A29339E /* Differentiator-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Differentiator-dummy.m"; sourceTree = ""; }; - 7E75BE039ECDC5C98B1B3366AB223FFE /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - 7E794613B7B4967B7E315E58575C19E8 /* FileManager+ZIP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FileManager+ZIP.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/FileManager+ZIP.swift"; sourceTree = ""; }; - 7E9CDCE5F0043FB2C6DB3BCFEA9F9D6C /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; - 7F033F3D3DD2BD7F88B3CFEBDF396ED5 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - 7F0F6780D0E884D4DD549CB1A7C14CCA /* RxCocoa.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxCocoa.modulemap; sourceTree = ""; }; - 7F1D4C539840D1E04C5FFAAA34A578BC /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = ""; }; - 7F5CFA1AE264D0A7CC41E863C86C294C /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - 7F6E07FC92F07EE8755B8F09EA81360F /* AlbumTickView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTickView.swift; path = Sources/HXPHPicker/Picker/View/AlbumTickView.swift; sourceTree = ""; }; - 7F851682E599767E9AA044FB11D2D5E4 /* Commons.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Commons.swift; path = Sources/SwiftDate/Supports/Commons.swift; sourceTree = ""; }; - 7FAA15A80E3EE70FB8617B72A76C5C99 /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; - 7FB7CFB34CBF3DE8D9065DC420ED9447 /* Diffable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Diffable.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Diffable.swift; sourceTree = ""; }; - 7FE1BA63F690470C059660AF0B0F5AC8 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - 801C736CBB37EF2A92BFFF9A8DFBDC70 /* LottieView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieView.swift; path = Sources/Public/Animation/LottieView.swift; sourceTree = ""; }; - 803551D524EB59D9A654D4CB1D25BE8F /* Archive+WritingDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+WritingDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+WritingDeprecated.swift"; sourceTree = ""; }; - 8062C80A2CDAA60C796028D49DDD5B04 /* DDAbstractDatabaseLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDAbstractDatabaseLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDAbstractDatabaseLogger.h; sourceTree = ""; }; - 8068E8070D96B799FC962E5A1BC5511B /* OIMCallbacker+Closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMCallbacker+Closure.h"; path = "OpenIMSDK/Callbacker/OIMCallbacker+Closure.h"; sourceTree = ""; }; - 8071246364071191EF7E463371025B98 /* DDLoggerNames.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDLoggerNames.m; path = Sources/CocoaLumberjack/DDLoggerNames.m; sourceTree = ""; }; + 7E30CE0389A560241FCA8FE83FE0B440 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = ""; }; + 7E4A8A666F6AF1C7AB6EF523E556900E /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/Core/HTTPMethod.swift; sourceTree = ""; }; + 7E4E9F77E3B93C448A645B6A373107EF /* FrameUnsubAck.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FrameUnsubAck.swift; path = Source/FrameUnsubAck.swift; sourceTree = ""; }; + 7EC8F3147D548524F2105F1B4D734059 /* PolygonNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PolygonNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift; sourceTree = ""; }; + 7ED05F749374B2ECD29E17E6726B4D21 /* Picker+UIViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+UIViewController.swift"; path = "Sources/HXPHPicker/Picker/Extension/Picker+UIViewController.swift"; sourceTree = ""; }; + 7EE7CE374C8D7614210D1BBF61EE6A98 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = ""; }; + 7EEA8F70494527CB93A38C74F7982F83 /* GradientFillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift; sourceTree = ""; }; + 7EF8EEB5237176128E14B293533A72C8 /* Commons.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Commons.swift; path = Sources/SwiftDate/Supports/Commons.swift; sourceTree = ""; }; + 7EF9D3B110D82B8135F84345D73A0B28 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/Core/ParameterEncoding.swift; sourceTree = ""; }; + 7F7204C6CC49121008516C4035FC5C9F /* SGPermissionPhoto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGPermissionPhoto.h; path = SGQRCode/Permission/SGPermissionPhoto.h; sourceTree = ""; }; + 7F75D1EC0E1C320D3F9EFC4E8509D719 /* Core+URL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+URL.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+URL.swift"; sourceTree = ""; }; + 7F7C4E38E4607F8008E79A6434ADB1C0 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Sources/Moya/Response.swift; sourceTree = ""; }; + 7F89B5CA6977567E0293D9A72DCB921A /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = ""; }; + 7F9D6946F90005D408F0F33D2D99A653 /* MAHeatMapVectorGridOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlayRenderer.h; path = MAMapKit.framework/Headers/MAHeatMapVectorGridOverlayRenderer.h; sourceTree = ""; }; + 7FAFB9102A7821804A603A0AC1AE1A19 /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = ""; }; + 7FB09B2B5E42E2CEDD4C919D77689C08 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; + 800097F58750AAC2B2BAF8E599AD7AEF /* Differentiator.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Differentiator.release.xcconfig; sourceTree = ""; }; + 801F815AE21CA3F75E4A08CD741E3FBC /* ViewTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewTransition.swift; path = Sources/RxDataSources/ViewTransition.swift; sourceTree = ""; }; + 803F8F55A8F17B4D7652541124C612C4 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; + 80462D2D5DC6C1F74F611C1A70FA0A5F /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Features/Validation.swift; sourceTree = ""; }; + 805779FF7031E298D79B68E54C435A67 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; + 80618672C78CE395D2916A8BD993BDAE /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Core/Response.swift; sourceTree = ""; }; + 807E9A40B51599207F28141B41ACF379 /* KingfisherWebP-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KingfisherWebP-dummy.m"; sourceTree = ""; }; + 808561ABAB1F1D752523D18D433D1913 /* RxPickerViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift; sourceTree = ""; }; + 808C026501781567CD3AA43ABB6D5AD5 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Source/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 8095762029B20322EA90B44A9EC7A0B2 /* SGQRCodeLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGQRCodeLog.h; path = SGQRCode/SGQRCodeLog.h; sourceTree = ""; }; 809C5FAB588354C9BA37DC3EAB8CB45C /* RxSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RxSwift; path = RxSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 80A40EDA3AF0499BDBCFF09467BB49AD /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; path = IQKeyboardToolbarManager.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 80A87EEF8234577813707C2B05EA16DC /* DDASLLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDASLLogger.m; path = Sources/CocoaLumberjack/DDASLLogger.m; sourceTree = ""; }; - 80B6A76BDBFB76C791769481A45315DB /* RxRelay.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.release.xcconfig; sourceTree = ""; }; - 80DEFE3B1718E8C2DAB2BE3561944DAD /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; - 80F00122FF7CD557F71EDB6CD73DCE0D /* sharpyuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_neon.c; path = sharpyuv/sharpyuv_neon.c; sourceTree = ""; }; - 80FC60B5A2EE8A0941AF06CB71BD4601 /* Asset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Asset.swift; path = Sources/Private/Model/Assets/Asset.swift; sourceTree = ""; }; - 812C339FF35298294B26DF3F2FC34F31 /* Group.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Group.swift; path = Sources/Private/Model/ShapeItems/Group.swift; sourceTree = ""; }; - 812CB0666B267F4A5171B774F6D0D99B /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; - 815C778FCFC9DF9AB4BB867705E3D701 /* MarqueeLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MarqueeLabel.release.xcconfig; sourceTree = ""; }; - 816BB0C72A261BD1EB7BD6894E8AA38F /* YYImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YYImage-umbrella.h"; sourceTree = ""; }; - 8197324FD9D31411E29F1E332EA7C8CB /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; - 81B6E91C3E6BDDC7B05E43C0052936B6 /* UIView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; - 81EEAD77C593182D302DEC7E521078E3 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - 8203A43BF6030189020CD4BD6F61CE28 /* PhotoEditorViewController+Animation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoEditorViewController+Animation.swift"; path = "Sources/HXPHPicker/Editor/Controller/PhotoEditorViewController+Animation.swift"; sourceTree = ""; }; - 8217A6F4149F4322FC3BFDAF3B20D784 /* Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signal.swift; path = RxCocoa/Traits/Signal/Signal.swift; sourceTree = ""; }; - 82431D0B15FED817380B6ECAC0135BCC /* Archive+MemoryFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+MemoryFile.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+MemoryFile.swift"; sourceTree = ""; }; - 825A9E0CAE8058BD30562436EABB04A3 /* Changeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Changeset.swift; path = Sources/Differentiator/Changeset.swift; sourceTree = ""; }; - 829687B94722C4B27AE1F6A929C38A8A /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = ""; }; - 82DA9A393789D615C04307DCC37C663F /* DDTTYLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDTTYLogger.m; path = Sources/CocoaLumberjack/DDTTYLogger.m; sourceTree = ""; }; - 82DC469C28323FCEAC87DA19052CFFE9 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - 82E339D953808BCD8DE3A8DE42F2039B /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - 831ED1AC3678AC789F64583BA59A14C5 /* Atomic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Atomic.swift; path = Sources/Moya/Atomic.swift; sourceTree = ""; }; - 835D71EFA384E013530022C4ED5D6DED /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; - 837E21014C5382624DE0924B4AA99FE0 /* SGGenerateQRCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGGenerateQRCode.m; path = SGQRCode/QRCode/SGGenerateQRCode.m; sourceTree = ""; }; - 83CB43A9B03D8918FD5DE9A913C744DE /* UISwitch+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISwitch+Rx.swift"; path = "RxCocoa/iOS/UISwitch+Rx.swift"; sourceTree = ""; }; - 83EDBA00E11125390D155B70ADD10B3F /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = ""; }; - 83F042965F53FBDB5EA105FFEEBF54BF /* CocoaLumberjack-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaLumberjack-prefix.pch"; sourceTree = ""; }; - 83FC585A2073635F19A93B8712ADFCDE /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; - 84364ADC8106E744D74626D2D0AEC0B7 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; }; - 845BD000FE8A9E1EB45F78DC1E70E618 /* Mappable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mappable.swift; path = Sources/Mappable.swift; sourceTree = ""; }; - 846B243885678469AE5CDB8168133AEA /* NodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodeProperty.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/NodeProperty.swift; sourceTree = ""; }; + 80B0158484445E6EEDCB488111857C96 /* RxCocoaRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoaRuntime.h; path = RxCocoa/Runtime/include/RxCocoaRuntime.h; sourceTree = ""; }; + 80B2C73E9BDABA3F11BF3DB85DAD250A /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; + 80F422D9CF7F73BDD80C55E658E8103F /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + 80F95906923E1515A2AD4F0F6690D8F6 /* Infallible+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Driver.swift"; path = "RxCocoa/Traits/Driver/Infallible+Driver.swift"; sourceTree = ""; }; + 81270878AE486291AC7784104E82FF1B /* PhotoEditorFilterView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorFilterView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorFilterView.swift; sourceTree = ""; }; + 8157ECA13835DD29BFB8AE4885DE404D /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; + 815A9A68FC8F5D4B8295C60201EA3607 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; + 8168F54744B4E03AC915F62D17CB4288 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + 8174B2C2A98517B4AD3D5FEF87B40F58 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; + 818F80EEBE82BB7416E478C26E7995D2 /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; + 81A904CC270F40DAD1A3F3B872317F74 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbarManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 81EBE4E4D49DF7168E5925FA02B2916A /* Date.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Date.swift; path = Sources/SwiftDate/Date/Date.swift; sourceTree = ""; }; + 81F7D3FF1C6A6BA4CF4343A1D488E223 /* TagView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TagView.swift; path = TagListView/TagView.swift; sourceTree = ""; }; + 82230FEA00350BC8F56EB5BC44AD1C77 /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDWebImage.modulemap; sourceTree = ""; }; + 825816BFA5ED9EA8E09C4414305D084D /* UIViewConfiguringSwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIViewConfiguringSwiftUIView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIViewConfiguringSwiftUIView.swift; sourceTree = ""; }; + 8260423FE880738627BA58E39088AE6C /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = ""; }; + 826DA11AB28DAD5B0EB7826B29CFC100 /* KeyframeData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeData.swift; path = Sources/Private/Model/Keyframes/KeyframeData.swift; sourceTree = ""; }; + 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 82C0724C0421CBE94F5889AF088B58AD /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; + 82E48720FDE1FD73E9188821ABBDEB63 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; + 8354BEF8A173F7C560C84148593F0CD7 /* and.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = and.swift; path = Source/RxSwift/and.swift; sourceTree = ""; }; + 836002A544C87F9B72FD7E93C2F30BB1 /* PropertyWrappers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertyWrappers.swift; path = Sources/PropertyWrappers.swift; sourceTree = ""; }; + 8360D5277A3EBD251BE1D7B8B657CBB2 /* ControlEvent+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlEvent+Driver.swift"; sourceTree = ""; }; + 836495F110F408D974AF64E8A7A6D754 /* IQTextInputViewInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfo.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewInfo.swift; sourceTree = ""; }; + 837CE453DD68FD5980A53849C6B2FDE2 /* VectorsExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VectorsExtensions.swift; path = Sources/Private/Utility/Primitives/VectorsExtensions.swift; sourceTree = ""; }; + 83921C9664E047ECE321FD559ED72F36 /* YBIBAuxiliaryViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBAuxiliaryViewHandler.h; path = YBImageBrowser/AuxiliaryView/YBIBAuxiliaryViewHandler.h; sourceTree = ""; }; + 839BCE2FB3C9925AE8EBE4D4E23D267B /* SingleValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleValueProvider.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift; sourceTree = ""; }; + 83A1F2D48A891A026C113A34ED4483E3 /* RxSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-umbrella.h"; sourceTree = ""; }; + 83A7C22E3795619790A213E6D8DC23DB /* UIStepper+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIStepper+Rx.swift"; path = "RxCocoa/iOS/UIStepper+Rx.swift"; sourceTree = ""; }; + 83BABF10DDCA2F56F8F22F97844ED531 /* NSTextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextView+Rx.swift"; path = "RxCocoa/macOS/NSTextView+Rx.swift"; sourceTree = ""; }; + 83E92D4FF772347A353FB627EFF684DD /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; + 840A962BED1D9BADAEDE3E7E183A317D /* PreCompLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompLayerModel.swift; path = Sources/Private/Model/Layers/PreCompLayerModel.swift; sourceTree = ""; }; + 84315F79BA3DE29DC734A52F0D9418E9 /* UIView+IQKeyboardExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionObjc.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionObjc.swift"; sourceTree = ""; }; + 843DE0B172D56D4DE04CED8FE9C2717D /* UIApplication+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Rx.swift"; path = "RxCocoa/iOS/UIApplication+Rx.swift"; sourceTree = ""; }; + 844DF282F910BCA1C2789FDB5A2CB231 /* UIBarButtonItem+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIBarButtonItem+Rx.swift"; path = "RxCocoa/iOS/UIBarButtonItem+Rx.swift"; sourceTree = ""; }; + 8461B294FCAEA798CE2751EEA8891991 /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; + 846DE591BA61F5776BFB4F91E09C69AE /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/Features/RedirectHandler.swift; sourceTree = ""; }; + 846E1E84BB431FCF9858146EC42AB802 /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = ""; }; + 846EDE56DA946ACF6FAB843EB29A21BA /* IQKeyboardToolbar.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.release.xcconfig; sourceTree = ""; }; + 846FD9A1A5BAE3A6EF9143279169E011 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQTextView-IQTextView"; path = IQTextView.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8472C6305564D304D3D3D434D7191E22 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 847FB0FA98CE4AC2E60D73CCAC2CF1AF /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - 84934C95F8FF400D99A7515B8C780AAE /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = ""; }; - 84A69E76676E2422A40553AA70F4B9AF /* ShapeContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeContainerLayer.swift; path = Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift; sourceTree = ""; }; - 84F2C96DF432D64FEF247DDD154D10AB /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; - 850578387A0EBC9B04FB5459FE3B3212 /* DefaultsBridges.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsBridges.swift; path = Sources/DefaultsBridges.swift; sourceTree = ""; }; - 850D41C7AEEAD377501D1391EFF8CD50 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; - 854DC1FA592D76A8399A8D23776140FD /* IQKeyboardToolbarManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-prefix.pch"; sourceTree = ""; }; - 8552E5A9E1DCA523D27BEF65DF4E6F35 /* AlbumTitleArrowView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleArrowView.swift; path = Sources/HXPHPicker/Picker/View/AlbumTitleArrowView.swift; sourceTree = ""; }; - 8587D011AA0593CFF7A1B84EEE2FB3F1 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - 85AB9F198071F4FFFD3967362E9EDB76 /* RxTableViewSectionedAnimatedDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewSectionedAnimatedDataSource.swift; path = Sources/RxDataSources/RxTableViewSectionedAnimatedDataSource.swift; sourceTree = ""; }; - 85CEF0B57610430DC6C0900DC77AC6F5 /* SDCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCollectionViewCell.m; path = SDCycleScrollView/Lib/SDCycleScrollView/SDCollectionViewCell.m; sourceTree = ""; }; - 85D1B0A1709FD35727940D11722F80FA /* Calendars.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Calendars.swift; path = Sources/SwiftDate/Supports/Calendars.swift; sourceTree = ""; }; - 85DC559A3ADB0AF3A0CC24573A6D4F03 /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; + 847E7B1F0A19709036E3E46F2089857E /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = ""; }; + 8493E3C56E90747096AE38907297A71A /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = ""; }; + 84AF2338B277983050F3CAFD5B36E2D8 /* UIView+Responders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responders.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+Responders.swift"; sourceTree = ""; }; + 850C6A13A8188DD67C782628C68BEC21 /* MGCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MGCDAsyncUdpSocket.h; path = Source/GCD/MGCDAsyncUdpSocket.h; sourceTree = ""; }; + 8510A31B20023A5D55194501EEC480F3 /* CocoaMQTT.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaMQTT.release.xcconfig; sourceTree = ""; }; + 852A16226F156C32AEDD3A6649B83421 /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; + 854D2B733043533D0537C10C8D8EE81C /* CocoaMQTTTimer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTTimer.swift; path = Source/CocoaMQTTTimer.swift; sourceTree = ""; }; + 858555FE5CD415E9FE0DE9EB2A7AFCFF /* IQKeyboardToolbarManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Toolbar.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Toolbar.swift"; sourceTree = ""; }; + 858773D1E33A099C96526441A987E2ED /* MAHeatMapTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapTileOverlay.h; path = MAMapKit.framework/Headers/MAHeatMapTileOverlay.h; sourceTree = ""; }; + 859AB61AB5CAC4F8321CE1373C70291B /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = ""; }; + 85A7CF7AFC03C91AFB98EF5022FB97AC /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; + 85BEE30BD1FC651C5184A49AFD512A6C /* EnumTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnumTransform.swift; path = Sources/EnumTransform.swift; sourceTree = ""; }; + 85C8B51DA0770D817281FCCB4771C0A0 /* AnimatableSectionModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatableSectionModel.swift; path = Sources/Differentiator/AnimatableSectionModel.swift; sourceTree = ""; }; + 85C907F746C2788FC9A636D9BA502E2E /* Group.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Group.swift; path = Sources/Private/Model/ShapeItems/Group.swift; sourceTree = ""; }; 85E4C71ED52304F1AB0503E80CD9CB1E /* TagListView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TagListView; path = TagListView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 85E4F42510ABF2029629F2E5D9765775 /* MATileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlayRenderer.h; path = MAMapKit.framework/Headers/MATileOverlayRenderer.h; sourceTree = ""; }; - 8644E0F97A0F7E3524191228AA9D3074 /* TagListView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TagListView.debug.xcconfig; sourceTree = ""; }; - 86450CB64F3B277D05E16E3FCFBDDDC6 /* EpoxyLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyLogger.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Logging/EpoxyLogger.swift; sourceTree = ""; }; - 865E473975582293F0FE384ACE2EC425 /* CocoaLumberjack-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaLumberjack-dummy.m"; sourceTree = ""; }; - 86886A733B89F9C049C049AF30166EE7 /* Moya-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Moya-dummy.m"; sourceTree = ""; }; - 86A3B7CF5EAD9973DAF3C6FFBAEE5AFE /* YBIBVideoTopBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoTopBar.m; path = Video/YBIBVideoTopBar.m; sourceTree = ""; }; - 86CDC89A868B6D3092C6F3EE456FC553 /* DecodingStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DecodingStrategy.swift; path = Sources/Public/Configuration/DecodingStrategy.swift; sourceTree = ""; }; - 86EE28E7DEABA7E24637E97FC9F503A5 /* TextLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextLayerModel.swift; path = Sources/Private/Model/Layers/TextLayerModel.swift; sourceTree = ""; }; - 871E714FD37A86D38B34456ADD948A3D /* filterMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = filterMap.swift; path = Source/RxSwift/filterMap.swift; sourceTree = ""; }; - 872036297568467805CDE1401346D2B1 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 8725CA960AAD21EBB246DB58314B33CB /* ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist"; sourceTree = ""; }; - 872E8E52ECD0CD6B77BAAB141EA3389D /* AnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypath.swift; path = Sources/Public/DynamicProperties/AnimationKeypath.swift; sourceTree = ""; }; - 8735CA7CBEA3EC29C13590FB46722BD3 /* IQKeyboardReturnManager+UITextFieldDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextFieldDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextFieldDelegate.swift"; sourceTree = ""; }; - 8763DABE5287013A3C662DD1707CD9F1 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Core/Response.swift; sourceTree = ""; }; - 87661C0964375E9E5AE8195C668A957E /* SGScanViewConfigure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGScanViewConfigure.h; path = SGQRCode/ScanView/SGScanViewConfigure.h; sourceTree = ""; }; - 87ACE2C6A3A01ED7E5CD2D9E5B2B24CD /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = ""; }; - 87C0F85799A80C00E166826442DB6D27 /* AssetManager+AssetCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+AssetCollection.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+AssetCollection.swift"; sourceTree = ""; }; - 87DDD42375DF8D0404926440BA144451 /* CodableTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CodableTransform.swift; path = Sources/CodableTransform.swift; sourceTree = ""; }; - 87E096F7DF0D7E8ACA28A30A1DEBB9EC /* ObjectMapper-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ObjectMapper-Info.plist"; sourceTree = ""; }; - 88004E06395845BEC822BA9C445BA387 /* _RXDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXDelegateProxy.h; path = RxCocoa/Runtime/include/_RXDelegateProxy.h; sourceTree = ""; }; - 882FA463C133D41CD8499FE6FB7A999F /* LayerStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerStyle.swift; path = Sources/Private/Model/LayerStyles/LayerStyle.swift; sourceTree = ""; }; - 8839B71D73943CF891974FAA99B0A1FC /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardManagerSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 884E6940DA4CC32666F2FCBF618682DB /* SGTorch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGTorch.m; path = SGQRCode/Torch/SGTorch.m; sourceTree = ""; }; - 886EDE3EF4D2E04DC332BE8E363F892F /* UIView+IQKeyboardExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionObjc.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionObjc.swift"; sourceTree = ""; }; - 8871BF84E79608846B442F26D2DED761 /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = ""; }; + 85FAC75B5F2BEA1511718CAA480E2ADC /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = ""; }; + 862203B641B5E8B956897660DF943C86 /* LayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerModel.swift; path = Sources/Private/Model/Layers/LayerModel.swift; sourceTree = ""; }; + 8623EF65FEC6BFD426123019DFB996B6 /* CocoaMQTTProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTProperty.swift; path = Source/CocoaMQTTProperty.swift; sourceTree = ""; }; + 865A4BFB2CB8DB37C3E1407B2C8BB4AC /* IQKeyboardToolbarConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConstants.swift; path = IQKeyboardToolbarManager/Classes/Constants/IQKeyboardToolbarConstants.swift; sourceTree = ""; }; + 869253C90A9E318D5E478170C21006FD /* MarqueeLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MarqueeLabel.debug.xcconfig; sourceTree = ""; }; + 869279DCDFEC7F94D90F59FA986A08DE /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 86A0D05E1B1AF9C0E4BDE710355585D3 /* Star.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Star.swift; path = Sources/Private/Model/ShapeItems/Star.swift; sourceTree = ""; }; + 86A7C1E882BC355EE233177C35BD2FE3 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; + 86CE596122BF5B193D2C94C75BF941B4 /* IQKeyboardResignHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardResignHandler.swift; path = IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift; sourceTree = ""; }; + 86D333D81D219F0C8A1F7714AD9A1C6E /* Moya-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Moya-prefix.pch"; sourceTree = ""; }; + 8705446677A2D4792E7CE527DD558989 /* CameraConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/CameraConfiguration.swift; sourceTree = ""; }; + 879A2E2A67F78CCEFE0F10240CE24FF9 /* DropShadowEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowEffect.swift; path = Sources/Private/Model/LayerEffects/DropShadowEffect.swift; sourceTree = ""; }; + 87CF4E5FA9EF74820C9D72AF08A6E3DF /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; + 87D4B044B9175BC06CC0B9475C219755 /* OIMSoundElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSoundElem.m; path = OpenIMSDK/Model/OIMSoundElem.m; sourceTree = ""; }; + 87DF08BF0E16E2F0B672516B99521229 /* YBIBToastView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBToastView.m; path = YBImageBrowser/AuxiliaryView/YBIBToastView.m; sourceTree = ""; }; + 87F5684EEAC16057EE7CFC5BACC763C4 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = WebImage/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 87F6C0AAEA5D49B14D1E594B55985BB8 /* YBIBSheetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBSheetView.h; path = YBImageBrowser/ToolView/YBIBSheetView.h; sourceTree = ""; }; + 88467EFBA0FCF30687E23912DE9B7DD0 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; 887BAFDF5875E4C49937F4B27AA714C4 /* Pods-QuickLocation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-QuickLocation.debug.xcconfig"; sourceTree = ""; }; - 889EAD92A301DE400B16BA95A2544CF0 /* ISO8601DateTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISO8601DateTransform.swift; path = Sources/ISO8601DateTransform.swift; sourceTree = ""; }; - 88A1873E1B4111D07E4764F077BE2840 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - 88CF94B26432761AD7272FFDA7D98646 /* DidSelectProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidSelectProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidSelectProviding.swift; sourceTree = ""; }; - 89178DBDEDAE6B75FB7DB74297B2681C /* SGTorch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGTorch.h; path = SGQRCode/Torch/SGTorch.h; sourceTree = ""; }; - 89242402665F619FFC3F3B24AE76ADD2 /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = ""; }; - 89492CD7805184F37D66C74AF64E60D5 /* LottieAnimationViewBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationViewBase.swift; path = Sources/Public/iOS/LottieAnimationViewBase.swift; sourceTree = ""; }; - 896165C77437B3E3CA729B4CF267209E /* PathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/PathNode.swift; sourceTree = ""; }; - 896804512E5A54D3F12A3A1AE837AD8B /* ObservableConvertibleType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift"; sourceTree = ""; }; - 8972DB9B808F51AD03B118F63A9E4520 /* MAHeatMapVectorOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlay.h; path = MAMapKit.framework/Headers/MAHeatMapVectorOverlay.h; sourceTree = ""; }; - 89A49B541760965E76940F9AFC9F361A /* TransformAnimations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformAnimations.swift; path = Sources/Private/CoreAnimation/Animations/TransformAnimations.swift; sourceTree = ""; }; - 89A5CE11CC57889F540004F21A563342 /* Core+DispatchQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+DispatchQueue.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+DispatchQueue.swift"; sourceTree = ""; }; - 89D6F4F353F9668ECBCBFBCFF03BAB81 /* Core+PHAssetCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+PHAssetCollection.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+PHAssetCollection.swift"; sourceTree = ""; }; - 89EF7D735951E4D80CDBC73A687206F8 /* AnyEquatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEquatable.swift; path = Sources/Private/Utility/Helpers/AnyEquatable.swift; sourceTree = ""; }; - 89EFF37CC53F11B002498B5B55AB037F /* OIMManager+User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+User.h"; path = "OpenIMSDK/Interface/OIMManager+User.h"; sourceTree = ""; }; - 89FBF678997C1BFF8175EAE7C1115228 /* MAHeatMapTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapTileOverlay.h; path = MAMapKit.framework/Headers/MAHeatMapTileOverlay.h; sourceTree = ""; }; - 89FDADBEBF7D7F7E8ED56EA6D6D96604 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; - 89FEA5369C0F85B6777E7EBA3581AD4F /* AMapURLSearchType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchType.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchType.h; sourceTree = ""; }; - 8A09E695B709DD7B53EE9791CFE0DA7E /* LRUAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LRUAnimationCache.swift; path = Sources/Public/AnimationCache/LRUAnimationCache.swift; sourceTree = ""; }; - 8A289C4B349FC18182B850690A731B54 /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapSearchKit.framework; sourceTree = ""; }; - 8A28EAFBBFB2489AD46E0091B00B767E /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = ""; }; - 8A5BAB2182C418AA259E530EC867EDDB /* RxCocoaObjCRuntimeError+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RxCocoaObjCRuntimeError+Extensions.swift"; path = "RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift"; sourceTree = ""; }; - 8A6D3F93903A36CC1E65DB8B7D188ED1 /* MAUserLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocation.h; path = MAMapKit.framework/Headers/MAUserLocation.h; sourceTree = ""; }; - 8A8670B27DF4CBC108E75715DC9B290A /* PhotoPickerControllerProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerControllerProtocol.swift; path = Sources/HXPHPicker/Picker/Controller/PhotoPickerControllerProtocol.swift; sourceTree = ""; }; - 8A955D35D02642C236DB7120C844EACE /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDWebImage.modulemap; sourceTree = ""; }; - 8AB155993BA6DDCE5BC7CA20A1D6668C /* MAPathShowRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPathShowRange.h; path = MAMapKit.framework/Headers/MAPathShowRange.h; sourceTree = ""; }; - 8B02944BAFEBFE6942DBA3EA87B8E5AF /* TimePeriodProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodProtocol.swift; path = Sources/SwiftDate/TimePeriod/TimePeriodProtocol.swift; sourceTree = ""; }; - 8B1969DDA8CB584F16A88D1B0AB032B1 /* OIMVideoElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMVideoElem.m; path = OpenIMSDK/Model/OIMVideoElem.m; sourceTree = ""; }; - 8B4487F9BD655C90D5A3542E1EEF1E9B /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SDWebImage-SDWebImage-Info.plist"; sourceTree = ""; }; + 887BD66AA7441D8A73D87321B6F17CBB /* YBIBInteractionProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBInteractionProfile.h; path = YBImageBrowser/Image/YBIBInteractionProfile.h; sourceTree = ""; }; + 888BE989F91C6C44101C700B8DEBA649 /* OIMAtElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMAtElem.h; path = OpenIMSDK/Model/OIMAtElem.h; sourceTree = ""; }; + 889A561130AB6E4C8C73F23593C54B4D /* StarNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StarNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift; sourceTree = ""; }; + 88A88BE7352DE9732931C54A38F9936B /* DateFormatterTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateFormatterTransform.swift; path = Sources/DateFormatterTransform.swift; sourceTree = ""; }; + 88F9C67E13D04AECC7D6EF209630A8E3 /* VideoCroppingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoCroppingConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/VideoCroppingConfiguration.swift; sourceTree = ""; }; + 8929295E55D3A7956A8FBB2AF64C3CEA /* DDLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDLog.m; path = Sources/CocoaLumberjack/DDLog.m; sourceTree = ""; }; + 893433AAE0EC3F67963A11E6F861691E /* YBIBImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageScrollView.m; path = YBImageBrowser/Image/YBIBImageScrollView.m; sourceTree = ""; }; + 8949E81B22A5BA6D918960149D5B3E4C /* YBIBVideoCell+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBVideoCell+Internal.h"; path = "Video/YBIBVideoCell+Internal.h"; sourceTree = ""; }; + 89594ACC4AC688E569CADE30241012CB /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJKeyValue.m"; path = "MJExtension/NSObject+MJKeyValue.m"; sourceTree = ""; }; + 8960813343F218D2D666299190D67ABE /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; + 8AA70B6D54C3434DE9C65E169C333587 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; + 8AFE49130DC59D5BB417170BC6782E91 /* OIMVideoElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMVideoElem.m; path = OpenIMSDK/Model/OIMVideoElem.m; sourceTree = ""; }; + 8B202162B632B08EE2812503526E54FC /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; + 8B4B42635EF69EE9862334DD24CC3566 /* SDCycleScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCycleScrollView.h; path = SDCycleScrollView/Lib/SDCycleScrollView/SDCycleScrollView.h; sourceTree = ""; }; 8B6CF5C20C32EE9F7F0862FF892524DE /* SDCycleScrollView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDCycleScrollView; path = SDCycleScrollView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 8B8FAB0D627B17EDE1366984278705D9 /* MBProgressHUD */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MBProgressHUD; path = MBProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8BCADFC48E2D3683403AE676EBB1FAB3 /* YBIBVideoActionBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoActionBar.m; path = Video/YBIBVideoActionBar.m; sourceTree = ""; }; - 8BDA68A4AB4B1C7ACD7A370540F816C1 /* ItemPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemPath.swift; path = Sources/Differentiator/ItemPath.swift; sourceTree = ""; }; - 8C0385510E7B13F5AF7511624C9E5C9F /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = ""; }; - 8C0A1312B50C17A4C611BA04975FA59D /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - 8C686BCF3D7F28862D9F8F441539A7BA /* IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; - 8C69CF0F0BF608B7192C8C2D478D58D4 /* materialized+elements.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "materialized+elements.swift"; path = "Source/RxSwift/materialized+elements.swift"; sourceTree = ""; }; - 8C6DF38B89C797731652AD83F26B9E11 /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/Features/AlamofireExtended.swift; sourceTree = ""; }; - 8C7772A4DD34FF5F3A20C6153B961319 /* UIView+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+Resign.swift"; sourceTree = ""; }; - 8CA76143A5698109811F6465625A7D19 /* RxSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.release.xcconfig; sourceTree = ""; }; - 8CA871A837C87D6CD87F1EF2EC8ED612 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - 8CB579539F7E67A543281235A347A0DD /* WechatOpenSDK-XCFramework.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "WechatOpenSDK-XCFramework.release.xcconfig"; sourceTree = ""; }; - 8CBC7A052D892803E76D2FFEAC1C3E83 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - 8CD15BB092F57C56BCAA6B4B7F799504 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 8D2F58F6D75CD6EAC8B4645270447959 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - 8D38B1AD3D58D53753B87B7C2A825199 /* CocoaLumberjack.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CocoaLumberjack.modulemap; sourceTree = ""; }; - 8D3D018125621B4BB8BD7ED705778350 /* IndexChangeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IndexChangeset.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/IndexChangeset.swift; sourceTree = ""; }; - 8D455E3561CAE1B6B583C060084663C0 /* TagListView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TagListView-prefix.pch"; sourceTree = ""; }; - 8D589F9274BAFDCFA26362A2DA2F9EB0 /* OIMUpdateFriendsReq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMUpdateFriendsReq.h; path = OpenIMSDK/Model/OIMUpdateFriendsReq.h; sourceTree = ""; }; - 8D6DC81BAFA296758CF20F117E7A283A /* AnimationConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationConfiguration.swift; path = Sources/RxDataSources/AnimationConfiguration.swift; sourceTree = ""; }; + 8BC62A822F138AAB14F1F2BBD4FE0620 /* sharpyuv_csp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv_csp.h; path = sharpyuv/sharpyuv_csp.h; sourceTree = ""; }; + 8BE3802244F0F467A022E91DB6B2B712 /* AnimationContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationContext.swift; path = Sources/Private/Utility/Helpers/AnimationContext.swift; sourceTree = ""; }; + 8C0661ACD87A5C3E6324F3D7E16411DE /* YBIBAnimatedTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBAnimatedTransition.m; path = YBImageBrowser/Base/YBIBAnimatedTransition.m; sourceTree = ""; }; + 8C4E81CAF61B893EC5CDB1338F44D9DA /* PhotoEditorBrushColorView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorBrushColorView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorBrushColorView.swift; sourceTree = ""; }; + 8C6C1C2CD09F3D826E6B56CD9CA8EED3 /* RxDataSources.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxDataSources.release.xcconfig; sourceTree = ""; }; + 8C71DAEAD1ACD3A2CF92620FB0B243ED /* UIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Hierarchy.swift"; path = "IQKeyboardCore/Classes/UIKitExtensions/UIView+Hierarchy.swift"; sourceTree = ""; }; + 8C73556EF652E6AAF642783546B02DB0 /* AnimatableSectionModelType+ItemPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AnimatableSectionModelType+ItemPath.swift"; path = "Sources/Differentiator/AnimatableSectionModelType+ItemPath.swift"; sourceTree = ""; }; + 8C79119E0FD1944C9FBEC3DBA813288B /* GradientFillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift; sourceTree = ""; }; + 8C9BE70FD7A9924081AB7126CF05E791 /* 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 = ""; }; + 8C9D5E2A219C95745FAF204B1E3FC92A /* CGPointExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CGPointExtension.swift; path = Sources/Private/Utility/Primitives/CGPointExtension.swift; sourceTree = ""; }; + 8C9E8A9D320DDF6866142EBCF0AB17D3 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; + 8CCA2E44E59981BE0EACCD1B13A784DC /* MAParticleOverlayOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayOptions.h; path = MAMapKit.framework/Headers/MAParticleOverlayOptions.h; sourceTree = ""; }; + 8CF7E9B4E27E9DB75877750C9B8021F9 /* Image+WebP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Image+WebP.swift"; path = "Sources/Image+WebP.swift"; sourceTree = ""; }; + 8D04DBC093A142D706FC40A9EBD11889 /* AnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/AnimatorNode.swift; sourceTree = ""; }; + 8D0909F96D750E913B07F7DFB71BDC38 /* SDCycleScrollView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SDCycleScrollView-Info.plist"; sourceTree = ""; }; + 8D0EC04DD6C08373446E1739FED2DFC3 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = ""; }; + 8D35101D07B11F5698DC173C735AC6B7 /* Mapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mapper.swift; path = Sources/Mapper.swift; sourceTree = ""; }; + 8D4A842BE2E110919CE40363C5F007E2 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; + 8D61DEE548FF6B9874EB886B0630F353 /* ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist"; sourceTree = ""; }; 8D8069D3964814114ACEC3084C010B59 /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; path = IQKeyboardManagerSwift.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8D8796D991AF7C66B8FE87145BE2DEFD /* IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextView-Info.plist"; sourceTree = ""; }; + 8D9E14EEDE501EE2045A8F5EF26EDD10 /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = ""; }; + 8DCCA16221D7CCCCB0947FEC9E1C1F3A /* DDOSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDOSLogger.m; path = Sources/CocoaLumberjack/DDOSLogger.m; sourceTree = ""; }; + 8DE841174DFB947091CC9730CC27A4D7 /* RxSwiftExt-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwiftExt-umbrella.h"; sourceTree = ""; }; + 8DEF1FCE593F12623DE48F3406DF7003 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; 8E14307D6C734974BE9A14B2E56B296E /* Pods-QuickLocation-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-QuickLocation-acknowledgements.plist"; sourceTree = ""; }; - 8E22F8ED0B0260D140F7BE3E0E75344A /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 8E3FE23EA4FA88C546AC8A32561D0DF2 /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = ""; }; - 8E4F0EB967D731167573C0D43015BE39 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; - 8E6324703E1125DF8EE3BBB0953D938B /* ImageCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift; sourceTree = ""; }; - 8E64F4612761F1A967A05BC539DAF105 /* MaskContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MaskContainerLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift; sourceTree = ""; }; - 8EA47A05577E8BB8A9BF4102A2A8F1DA /* TagListView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = TagListView.modulemap; sourceTree = ""; }; - 8EA54F0BF8E86197CCAC3BD763221B5F /* BaseCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseCompositionLayer.swift; path = Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift; sourceTree = ""; }; - 8EAE8C6CF498E05099DE24B18C3560DD /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = ""; }; - 8EBAEB62E0BC6BBD2A99A9FFC0297E16 /* ShapeItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeItem.swift; path = Sources/Private/Model/ShapeItems/ShapeItem.swift; sourceTree = ""; }; - 8EF5D80D80065619CED3075AD992270A /* DDAbstractDatabaseLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDAbstractDatabaseLogger.m; path = Sources/CocoaLumberjack/DDAbstractDatabaseLogger.m; sourceTree = ""; }; - 8F085795F289B5BEEE1A9F7E1FFCAA53 /* VideoEditorFrameMaskView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorFrameMaskView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorFrameMaskView.swift; sourceTree = ""; }; - 8F10B233277A6683E58EBB3023563848 /* AMapGeoFenceError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceError.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceError.h; sourceTree = ""; }; - 8F139EC6DC9A823AD2A7358AE25AA685 /* KVORepresentable+CoreGraphics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+CoreGraphics.swift"; path = "RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift"; sourceTree = ""; }; - 8F2242BE854DD9C19EF4B71CA79AE6F2 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - 8F23207FD91B4D58996E1529198654DB /* SolidLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidLayer.swift; path = Sources/Private/CoreAnimation/Layers/SolidLayer.swift; sourceTree = ""; }; - 8F37D52910A532640524D149440D7052 /* IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; - 8F420C010C7336A4B964E0E4223E96D7 /* ObjectMapper-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ObjectMapper-umbrella.h"; sourceTree = ""; }; - 8F42F145897CD3CFBDA60FB0264DB501 /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = ""; }; - 8F5DBC544730FD8223729C38F6CB1F5B /* DateRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateRepresentable.swift; path = Sources/SwiftDate/DateRepresentable.swift; sourceTree = ""; }; - 8F878A7EA007A0B25D711F68CEC2F467 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 8F8F9A75D00E6A2AE71D19B551AD747C /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - 8F9DAB514C5BF79351540417F249261B /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; - 8FFDD175562EA9E04F00CB58EBF9A6D7 /* DDLog+LOGV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DDLog+LOGV.h"; path = "Sources/CocoaLumberjack/include/CocoaLumberjack/DDLog+LOGV.h"; sourceTree = ""; }; - 8FFE248620888CCBBC57FC0D85239779 /* NSString+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+MJExtension.m"; path = "MJExtension/NSString+MJExtension.m"; sourceTree = ""; }; - 9013133C38E66F88D918BAA5D7105F92 /* PickerCamerViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerCamerViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PickerCamerViewCell.swift; sourceTree = ""; }; - 905D38CB18C6D7D4FCFE589AE6168BA5 /* sharpyuv_dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv_dsp.h; path = sharpyuv/sharpyuv_dsp.h; sourceTree = ""; }; - 907CC3064F74B222E3E0073D5AD8B602 /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Extensions/Result+Alamofire.swift"; sourceTree = ""; }; - 90ABBE9D63AD78104E5DACFD423F724C /* AnimatedControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedControl.swift; path = Sources/Public/Controls/AnimatedControl.swift; sourceTree = ""; }; - 9167B3FF06763D714F9660F54885ECEF /* SDCycleScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCycleScrollView.m; path = SDCycleScrollView/Lib/SDCycleScrollView/SDCycleScrollView.m; sourceTree = ""; }; - 91C413DA11BA0A2F7D5DE3F394B6B61F /* YBImageBrowser-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YBImageBrowser-umbrella.h"; sourceTree = ""; }; - 91C711A1DC0B3F501774D59914B427DF /* YBImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBImage.m; path = YBImageBrowser/Image/YBImage.m; sourceTree = ""; }; - 91C802E651BCE006BD4115AB9D594543 /* OIMFaceElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMFaceElem.h; path = OpenIMSDK/Model/OIMFaceElem.h; sourceTree = ""; }; - 91E03E21D00A0CFC8BB4829B9104C22F /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = ""; }; - 91FB2EE0D18C43ED23BA513E80509BEA /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = ""; }; - 91FDF1CAA6188BB76D061C1A1A292B80 /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = ""; }; - 9223CD5E46678235221233277EDFE02D /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - 9245CE764CFC8D2EE878F9982D8D7E40 /* AlbumViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/AlbumViewCell.swift; sourceTree = ""; }; - 924741FD99920A8D329E493A5868847A /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 9258CFF7C85CF79A431C334C91C49A73 /* DataStreamRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataStreamRequest.swift; path = Source/Core/DataStreamRequest.swift; sourceTree = ""; }; - 92848CB8CEF981C9B3BC395EEC10733C /* OpenIMSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenIMSDK.h; path = OpenIMSDK/OpenIMSDK.h; sourceTree = ""; }; - 92F1C3BA22F62F1CFB1DE61364BA3A00 /* IQKeyboardNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.debug.xcconfig; sourceTree = ""; }; - 92F5E3708E512F20F2F3931DF742408D /* SchedulerType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift"; sourceTree = ""; }; - 93608F9DC483D379F667A4F03EDE2D96 /* IQTextInputViewNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.debug.xcconfig; sourceTree = ""; }; - 9361EDCF72DA935BC195CF2F2E7FEEB1 /* DataSources.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataSources.swift; path = Sources/RxDataSources/DataSources.swift; sourceTree = ""; }; - 937ADC586D7A9572D0499B091531BB27 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; - 937BB6E663A5DDF84A196EB20804E1C1 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; - 937D966D88196EC775BA025C4832B900 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Sources/Moya/MultipartFormData.swift; sourceTree = ""; }; - 938E1CDDDC030960A63016E0B7190652 /* MarqueeLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MarqueeLabel.swift; path = Sources/MarqueeLabel.swift; sourceTree = ""; }; - 939FD9EE67CE7F1E53A18F47AA4723E6 /* MAMultiTexturePolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiTexturePolylineRenderer.h; path = MAMapKit.framework/Headers/MAMultiTexturePolylineRenderer.h; sourceTree = ""; }; - 93EAA2A959A3EA70624A72F2FB588943 /* SwiftDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftDate.swift; path = Sources/SwiftDate/SwiftDate.swift; sourceTree = ""; }; - 93EB8108EBFD809D4BA7DD0D01AC8F2F /* RxTextViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift; sourceTree = ""; }; - 93F96F1B2F72E1AF5CB8D5EB7411DC8F /* MAShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAShape.h; path = MAMapKit.framework/Headers/MAShape.h; sourceTree = ""; }; - 9421E603875C52CCF37AA01A75D831F8 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - 944D14CC3340E5906FB0AE787C227F8A /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 94801563DB532EDC0D80A3BCEE705193 /* IQKeyboardCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.release.xcconfig; sourceTree = ""; }; - 949664818DDAAF8B27BABD5A314AE777 /* MAMapAccessibilityIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapAccessibilityIdentifier.h; path = MAMapKit.framework/Headers/MAMapAccessibilityIdentifier.h; sourceTree = ""; }; - 94D516F270368ACF9D94D50BA45877D7 /* LayerEffectNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerEffectNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/LayerEffectNodes/LayerEffectNode.swift; sourceTree = ""; }; - 94E6EE5AEC188C24CA3F770D37E635EC /* PhotoEditorDrawView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorDrawView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorDrawView.swift; sourceTree = ""; }; - 94F7F3E3105E990CC2499FF7816AE311 /* PrecompAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrecompAsset.swift; path = Sources/Private/Model/Assets/PrecompAsset.swift; sourceTree = ""; }; - 9529091C803AAABDBA7281A7BC067C73 /* IQKeyboardToolbar.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbar.modulemap; sourceTree = ""; }; - 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 95443C107F9AEEA2EE018985A7D23387 /* LayerImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerImageProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift; sourceTree = ""; }; - 956D08303C546C8822DB0DCBD148CF06 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; - 9591005EF300740D15A68DC41F123102 /* CameraViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraViewController.swift; path = Sources/HXPHPicker/Picker/Controller/CameraViewController.swift; sourceTree = ""; }; - 959731C5E318724CF5BC5D4444F684D1 /* DDContextFilterLogFormatter+Deprecated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DDContextFilterLogFormatter+Deprecated.h"; path = "Sources/CocoaLumberjack/include/CocoaLumberjack/DDContextFilterLogFormatter+Deprecated.h"; sourceTree = ""; }; - 95F037BC936089687A0571DF3857C90B /* RxRelay-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxRelay-dummy.m"; sourceTree = ""; }; - 95FBC83924660AF9550D968A6631AD5A /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; - 961625FA203A229009E5377F960B59F0 /* MultiTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultiTarget.swift; path = Sources/Moya/MultiTarget.swift; sourceTree = ""; }; - 96280EB941ACB84F13C3D03EFD21D089 /* MAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeometry.h; path = MAMapKit.framework/Headers/MAGeometry.h; sourceTree = ""; }; - 963E16D80DDA6E3F39317FBEEF4A019F /* IQKeyboardToolbarManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Internal.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Internal.swift"; sourceTree = ""; }; - 96438B90C1831FEF8FEAD0F9265BB943 /* MAOfflineItemMunicipality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemMunicipality.h; path = MAMapKit.framework/Headers/MAOfflineItemMunicipality.h; sourceTree = ""; }; - 96A774383BDFCF0DCC96A12872CBD4BB /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 972CC00CAA521E6FA780F098E389470A /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 9748FAB56C967BFAED8A26117036C999 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; - 975ECCBDDA389719AEC4E54DB0112147 /* CAAnimation+TimingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAAnimation+TimingConfiguration.swift"; path = "Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift"; sourceTree = ""; }; - 977D96FA02CBC7EE86913380335CAEE9 /* SGPermissionCamera.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGPermissionCamera.m; path = SGQRCode/Permission/SGPermissionCamera.m; sourceTree = ""; }; - 97847B9AE08AA8C0D6CD270E39CDC0E2 /* OIMManager+Message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Message.h"; path = "OpenIMSDK/Interface/OIMManager+Message.h"; sourceTree = ""; }; + 8E228DE53A7843A9B62E323CFFB04240 /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; + 8E25ED01381098B01A662D40ED3B1C5E /* URLPathComponent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLPathComponent.swift; path = Sources/URLMatcher/URLPathComponent.swift; sourceTree = ""; }; + 8E579505C72B45CC000E8E91927E7A5B /* PickerTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerTypes.swift; path = Sources/HXPHPicker/Picker/Model/PickerTypes.swift; sourceTree = ""; }; + 8E69D9DD0B6099895F3D54842186DC5A /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; + 8E7634E51DE590157C8F535EA1D247B4 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; + 8ED125D7528257024B809AC5B68197AE /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; + 8EFDC55D9C77B32C3928B5308CA1A0C3 /* LayerModel+makeAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "LayerModel+makeAnimationLayer.swift"; path = "Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift"; sourceTree = ""; }; + 8F244BB88E281861AA961B0B8B7F3FAC /* MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJExtension-Info.plist"; sourceTree = ""; }; + 8F2ABB2AEB2CB29DE8F616DDE208CB10 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; + 8F648C5A78D49866F4428026C3DBC0FF /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; + 8F6C4B32F8545FD29CC3B33741AFBEDF /* SGQRCode.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SGQRCode.release.xcconfig; sourceTree = ""; }; + 8F7CC255B973DED6704CF75AA5652653 /* _RXDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXDelegateProxy.h; path = RxCocoa/Runtime/include/_RXDelegateProxy.h; sourceTree = ""; }; + 8F8D5B1A459FAE61EDF4337A132BB5AF /* AnyNodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyNodeProperty.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift; sourceTree = ""; }; + 8FA1F9EE893754FCB88034C3F53B9134 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; + 8FDCC95F21DE5E485AAE4A6AFC3ECDE3 /* AssetManager+Authorization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+Authorization.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+Authorization.swift"; sourceTree = ""; }; + 8FECF4078450642BEA0A9B39AB4BE98C /* LottieAnimationViewInitializers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationViewInitializers.swift; path = Sources/Public/Animation/LottieAnimationViewInitializers.swift; sourceTree = ""; }; + 9005A4BA6A695B43606F43DA74AF0ED0 /* Core+Dictionary.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+Dictionary.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+Dictionary.swift"; sourceTree = ""; }; + 901DB6006F9C44DE01F74CB94CF76648 /* Asset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Asset.swift; path = Sources/Private/Model/Assets/Asset.swift; sourceTree = ""; }; + 9026790117C43E79599D121A106C2214 /* NotificationCenter+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NotificationCenter+Rx.swift"; path = "RxCocoa/Foundation/NotificationCenter+Rx.swift"; sourceTree = ""; }; + 904B48D203DDC37F7BD33F40FE034271 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 906D0A72EE028674565F0303DE1D205A /* ProgressImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProgressImageView.swift; path = Sources/HXPHPicker/Core/View/ProgressImageView.swift; sourceTree = ""; }; + 908DC03A3D9216AB6FE7FE902C573A81 /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = ""; }; + 909BD42DC3755A52936AECE9F677FAC7 /* EditorChartlet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorChartlet.swift; path = Sources/HXPHPicker/Editor/Model/EditorChartlet.swift; sourceTree = ""; }; + 909D62EF63BD78A83AC24163EEE78816 /* Data+Compression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Compression.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Compression.swift"; sourceTree = ""; }; + 90B5BC834A2DCAECF1A45B2A40BF12F8 /* Core+CALayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+CALayer.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+CALayer.swift"; sourceTree = ""; }; + 90C7FFBD13E7069D7CDB43E2A9F7F81D /* OIMCallbacker+Closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMCallbacker+Closure.h"; path = "OpenIMSDK/Callbacker/OIMCallbacker+Closure.h"; sourceTree = ""; }; + 90E2AEDE3DA3F9A2A9D53BFD34D9D235 /* IQKeyboardCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-prefix.pch"; sourceTree = ""; }; + 9108431DE0EE65E182C641811F6F644A /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; + 910B1455FE142F868DB22A1E2D94066D /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; + 913C06E86762583AA08FA9981CC07752 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = ""; }; + 914D1DC48410EEA11DC4146D823176F8 /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; + 914F74DC9A660B3CCD6B5049FA3E857E /* RxRelay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.debug.xcconfig; sourceTree = ""; }; + 917B5AE204AB6A982EF8CB9D8A5555E1 /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = ""; }; + 918ECADF5BF52E258972BF447F8A10EF /* IQKeyboardCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardCore.modulemap; sourceTree = ""; }; + 91AED5A00B8A2452332D3796039AFA18 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + 91B0431B844DD4BC6EA015F23F666DBB /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; + 91F40D000DF542C6D6257B1B433BAA8B /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; + 91F9B1A6C9A789429ABD96817E09C218 /* TableViewSectionedDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TableViewSectionedDataSource.swift; path = Sources/RxDataSources/TableViewSectionedDataSource.swift; sourceTree = ""; }; + 92045CC4A14841CF942F7D0EE8B79E7D /* TagListView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TagListView-prefix.pch"; sourceTree = ""; }; + 924B109D0B5D6A53163A686247653238 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; + 925963B6762F7EDD3F4B025942C781DD /* PreviewLivePhotoViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewLivePhotoViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PreviewLivePhotoViewCell.swift; sourceTree = ""; }; + 92825D18FFC3CBC0A7BD59C44FACD099 /* AssetManager+ImageData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+ImageData.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+ImageData.swift"; sourceTree = ""; }; + 9291056517CD88E650D02DBF191884B9 /* SGPermission.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGPermission.h; path = SGQRCode/Permission/SGPermission.h; sourceTree = ""; }; + 92ED2EB695BF51A59A9309EFCD8B7BAA /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = ""; }; + 92EDBF8FFCFE5EE0F3E29D0ED7298030 /* ResourceBundle-IQTextView-IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextView-IQTextView-Info.plist"; sourceTree = ""; }; + 92EFF684FDFA11D0956B96DD55C639A3 /* Plugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Plugin.swift; path = Sources/Moya/Plugin.swift; sourceTree = ""; }; + 930A966769BFBCE4E38BBE706B3106C9 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + 932301FE559406FA40A9042558D4F7DC /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; + 9338849C2BBC91DD9D38114527BD13B0 /* RxSearchBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift; sourceTree = ""; }; + 935291735FD863A36C3BB6A8BDF7A2F9 /* OIMQuoteElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMQuoteElem.m; path = OpenIMSDK/Model/OIMQuoteElem.m; sourceTree = ""; }; + 936CB7B4BDC58080C1761D5802B3F961 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; + 937527F6AC0ACCCA2F3FE296E1CEAA54 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; + 93AC70A2D46A8E4C52484F59DCF920FD /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; }; + 93D1007188695E58DB2F07BDFDF18D71 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; + 93D67B4D138C469D66869335FAC4A656 /* TagListView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TagListView.debug.xcconfig; sourceTree = ""; }; + 93D9B635C959143CB4FFDC5AFF2342A0 /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = ""; }; + 93E12D74AA92766FA145737CB1FF4B12 /* AssetManager+Asset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+Asset.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+Asset.swift"; sourceTree = ""; }; + 94057504769A3A6E724B5B40972FC141 /* Moya-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Moya-dummy.m"; sourceTree = ""; }; + 940C74F803A7278DA8A603C8A4C8CE5A /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; + 9427F04B99D87CA5595F70B09E854EDC /* RxTableViewSectionedReloadDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewSectionedReloadDataSource.swift; path = Sources/RxDataSources/RxTableViewSectionedReloadDataSource.swift; sourceTree = ""; }; + 94441A97766437C85EA2053848569EA5 /* DDContextFilterLogFormatter+Deprecated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DDContextFilterLogFormatter+Deprecated.m"; path = "Sources/CocoaLumberjack/Extensions/DDContextFilterLogFormatter+Deprecated.m"; sourceTree = ""; }; + 944736B27436A346B72E1922E58C113A /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = ""; }; + 946F64F2974C5F3D0BEDE60786B551E5 /* Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Kingfisher-Info.plist"; sourceTree = ""; }; + 94AFF6B159156CF9FB52FA537C9D048A /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = ""; }; + 94C3D7F5F5DD3200C6843026A2749F7E /* DotLottieCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieCache.swift; path = Sources/Public/DotLottie/Cache/DotLottieCache.swift; sourceTree = ""; }; + 950AF206CB2131B94A4913E8D6D73802 /* OIMReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMReachability.m; path = OpenIMSDK/Utils/OIMReachability.m; sourceTree = ""; }; + 953299ECE8729913D60E8FE4347C81B9 /* RxSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxSwift.modulemap; sourceTree = ""; }; + 953DA43EB13E30AF8D9D972941D5826F /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; + 956F909BA66A7652F595667B35B52BFF /* ProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProgressHUD.swift; path = Sources/HXPHPicker/Core/View/ProgressHUD.swift; sourceTree = ""; }; + 957ABD5CBD7C6C587953F24C9B4801B8 /* MARouteOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MARouteOverlay.h; path = MAMapKit.framework/Headers/MARouteOverlay.h; sourceTree = ""; }; + 957C981964A435BDF75AB5CB24C17F0B /* OIMGroupMemberInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMGroupMemberInfo.h; path = OpenIMSDK/Model/OIMGroupMemberInfo.h; sourceTree = ""; }; + 957FB55BA840E6DCA8B080C66EA98A00 /* AMapCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapCommonObj.h; path = AMapSearchKit.framework/Headers/AMapCommonObj.h; sourceTree = ""; }; + 958AA68B7BB3D260BE27D937E76C9710 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; + 95A4FDAF241C16930F812761D74FCEF5 /* AppearanceStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppearanceStyle.swift; path = Sources/HXPHPicker/Core/Model/AppearanceStyle.swift; sourceTree = ""; }; + 95B4863B9298753CB8613C21E39C9B27 /* YBIBUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBUtilities.m; path = YBImageBrowser/Helper/YBIBUtilities.m; sourceTree = ""; }; + 95C9B78922BE02FFF53369884C14F1FB /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + 95CC0C8C9DF91B6EEC6755575144D1BE /* UIScrollView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; + 95E8FA08C357760274FBE094F7121F08 /* Mappable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mappable.swift; path = Sources/Mappable.swift; sourceTree = ""; }; + 964E1CEEC8EEF50447125EFF8F2C54A9 /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = ""; }; + 9668DF6256ACD7532AE815424C1276DB /* MathKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MathKit.swift; path = Sources/Private/Utility/Extensions/MathKit.swift; sourceTree = ""; }; + 967D6286ECF8DBBE843AB35C9E2CF2B4 /* NSDecimalNumberTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSDecimalNumberTransform.swift; path = Sources/NSDecimalNumberTransform.swift; sourceTree = ""; }; + 969C95064469988CF9DD2C0988D5721B /* GradientValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift; sourceTree = ""; }; + 96F3E5D9B2FF0D6AA2D5960343BEE699 /* MAMultiPointOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlay.h; path = MAMapKit.framework/Headers/MAMultiPointOverlay.h; sourceTree = ""; }; + 97404EDD54B128EB9F21CCA4CC58A92B /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; + 976B64416E3016008D42A1E155509FD3 /* mapTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = mapTo.swift; path = Source/RxSwift/mapTo.swift; sourceTree = ""; }; 979486118B3E90C08386079D57962701 /* SnapKit */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SnapKit; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 97A7803B1238FF4874E59DBF1A7ADE7E /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = ""; }; - 97A94F41128644A73B8BB322379AD1AB /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = ""; }; - 97D599D0C0EA915D51D3C2779E4B546F /* HXPHPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HXPHPicker.debug.xcconfig; sourceTree = ""; }; - 97DE3A82457FECCDA36D235A9A527121 /* NotAuthorizedConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotAuthorizedConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/NotAuthorizedConfiguration.swift; sourceTree = ""; }; - 97F0DF9B08CCA8D2A5749BBA40C04F42 /* GradientStrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift; sourceTree = ""; }; - 986D3638256A93D202D509D2EA916718 /* mapAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = mapAt.swift; path = Source/RxSwift/mapAt.swift; sourceTree = ""; }; - 988C977871E4F16B43124775C5442980 /* PhotoAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoAsset.swift; path = Sources/HXPHPicker/Picker/Model/PhotoAsset.swift; sourceTree = ""; }; - 989D623AF0CB634DB11052E3FC4DC617 /* IdentifiableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentifiableType.swift; path = Sources/Differentiator/IdentifiableType.swift; sourceTree = ""; }; - 98C65967D7AEF74EAC5A85711A296395 /* sharpyuv_csp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_csp.c; path = sharpyuv/sharpyuv_csp.c; sourceTree = ""; }; - 98CB8DA217C5930EC3944F99F5D655D7 /* YBIBOrientationReceiveProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBOrientationReceiveProtocol.h; path = YBImageBrowser/Protocol/YBIBOrientationReceiveProtocol.h; sourceTree = ""; }; - 98D78C9FF90C7172E103F3D42D122546 /* YBIBPhotoAlbumManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBPhotoAlbumManager.h; path = YBImageBrowser/Helper/YBIBPhotoAlbumManager.h; sourceTree = ""; }; - 990707B203C5928699E7AAADC40C85D6 /* TAAbstractDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TAAbstractDotView.h; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAAbstractDotView.h; sourceTree = ""; }; - 991D1386E3E848056EA3B4E051FE493E /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - 9923D74C7DCC4CC752F4502C4B9F4AB3 /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; - 993FD35E999A7AB78E66C8B6CB9FDB35 /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQTitleBarButtonItem.swift; sourceTree = ""; }; - 9949D2F039C26335E06B4DEDB869C47F /* HXPHPicker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HXPHPicker.swift; path = Sources/HXPHPicker/Core/HXPHPicker.swift; sourceTree = ""; }; - 99A0AB85281536E0E545FFA662C432F5 /* YBIBImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageScrollView.h; path = YBImageBrowser/Image/YBIBImageScrollView.h; sourceTree = ""; }; - 99DADE9DE147112FECFE409CD724C123 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; - 99DBBEE27AA60246E2BFF5947C21C49F /* apply.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = apply.swift; path = Source/RxSwift/apply.swift; sourceTree = ""; }; - 99DE9108716840253E3172EC905024FC /* YBIBTopView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBTopView.m; path = YBImageBrowser/ToolView/YBIBTopView.m; sourceTree = ""; }; - 9A226DD5B5DE35D44F9321FEA69D7502 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; - 9A2A7C5D27987780C1AD46450EB28461 /* ValueProviderStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueProviderStore.swift; path = Sources/Private/CoreAnimation/ValueProviderStore.swift; sourceTree = ""; }; - 9A4D97DA05C3A8E92FE31917D35A2473 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 9A610F8E5A523D74EB02337C66D2442C /* IQKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardNotification.swift; path = IQKeyboardNotification/Classes/IQKeyboardNotification.swift; sourceTree = ""; }; - 9A835D487FD056ED86C09488FF6297B8 /* MACustomBuildingOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlayRenderer.h; path = MAMapKit.framework/Headers/MACustomBuildingOverlayRenderer.h; sourceTree = ""; }; - 9A866A6512ACC69E4827C91B2C8E59B7 /* Popover-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Popover-Info.plist"; sourceTree = ""; }; - 9AACEF2C953C3C0DBC735A19E819E97D /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 9AE453074B44CE425E74E7005ECD4AE8 /* DotLottieUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieUtils.swift; path = Sources/Private/Model/DotLottie/DotLottieUtils.swift; sourceTree = ""; }; - 9AFF3A2C20A0878A9F0BD547D0C6006C /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = ""; }; - 9B10279D7918F58546A902DD776F193D /* RenderNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RenderNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/RenderNode.swift; sourceTree = ""; }; - 9B38CA1B256C4DC4578E9BED9368B736 /* HasImageComponent+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "HasImageComponent+Kingfisher.swift"; path = "Sources/Extensions/HasImageComponent+Kingfisher.swift"; sourceTree = ""; }; - 9B47B0F33ADB52865D45F738C9337602 /* AnimatableSectionModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatableSectionModel.swift; path = Sources/Differentiator/AnimatableSectionModel.swift; sourceTree = ""; }; - 9BC029F6B78235F5DBCA8BEA669E6064 /* MoyaError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MoyaError.swift; path = Sources/Moya/MoyaError.swift; sourceTree = ""; }; - 9BC0A20DD2D47C97E991C418B88BE2C5 /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; - 9BC42012201F6578E940392397D5E5F8 /* IQKeyboardReturnManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-umbrella.h"; sourceTree = ""; }; - 9BD6B4F346C99BD856693783A8C59593 /* CombinedShapeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedShapeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift; sourceTree = ""; }; - 9C13E6FBDDAB97317E0522724037E9E2 /* Moya.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Moya.release.xcconfig; sourceTree = ""; }; - 9C247ABAB37F0C054419181BFC3D3E7E /* LivePhotoError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LivePhotoError.swift; path = Sources/HXPHPicker/Core/Model/LivePhotoError.swift; sourceTree = ""; }; - 9C4BD1FDD57389DDABA93B25B1F33C60 /* ResourceBundle-RxSwift_Privacy-RxSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-RxSwift_Privacy-RxSwift-Info.plist"; sourceTree = ""; }; - 9C6F8597CB530F782630CE04406C2C19 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; - 9C9DAE1505A940BA7AE87B8FD412527B /* UIView+WebCacheState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheState.h"; path = "SDWebImage/Core/UIView+WebCacheState.h"; sourceTree = ""; }; - 9CA16EE1A89EBCA3540FF1842B65A1F0 /* NSObject+YBImageBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+YBImageBrowser.m"; path = "YBImageBrowser/Base/NSObject+YBImageBrowser.m"; sourceTree = ""; }; - 9CB8B56D6AF6C0096630403D14A6A2F8 /* Infallible+CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+CombineLatest+Collection.swift"; path = "RxSwift/Traits/Infallible/Infallible+CombineLatest+Collection.swift"; sourceTree = ""; }; - 9CCA7A792E4A6A2B6109301CC66A69A9 /* RxNavigationControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxNavigationControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift; sourceTree = ""; }; - 9CECC955C1BC5B80B4C9603E67AF9B13 /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = ""; }; - 9CF168F773685B0F062B7011CD49245B /* UIViewPropertyAnimator+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewPropertyAnimator+Rx.swift"; path = "Source/RxCocoa/UIViewPropertyAnimator+Rx.swift"; sourceTree = ""; }; - 9D0884D8E461C506BA1299415A08D8E6 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 9D25EE96F04C43612DF2FA22177EB0C8 /* AMapFoundationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationKit.h; path = AMapFoundationKit.framework/Headers/AMapFoundationKit.h; sourceTree = ""; }; - 9D30F72ABB0E7C0638BD31E4CE7840A3 /* Moya+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Moya+Alamofire.swift"; path = "Sources/Moya/Moya+Alamofire.swift"; sourceTree = ""; }; - 9D5ECA710EB149367627C0ECCCD88F67 /* Infallible+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Bind.swift"; path = "RxCocoa/Common/Infallible+Bind.swift"; sourceTree = ""; }; + 979C891C173C4B89C451458A3F545DCC /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; + 97AA22B3EFF347E5FA01A0D40617FA36 /* TimePeriod+Support.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TimePeriod+Support.swift"; path = "Sources/SwiftDate/TimePeriod/TimePeriod+Support.swift"; sourceTree = ""; }; + 97D74D3A2081E4658E8D782F0DFB43C2 /* LayerProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerProperty.swift; path = Sources/Private/CoreAnimation/Animations/LayerProperty.swift; sourceTree = ""; }; + 97D8DC7E7FCCA6B36A398A4130916FF5 /* WebSocketRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebSocketRequest.swift; path = Source/Core/WebSocketRequest.swift; sourceTree = ""; }; + 97EF826E6048C875FF0150EBB63D62DA /* YBImageBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YBImageBrowser.release.xcconfig; sourceTree = ""; }; + 98026ABD4730AD0D7DE536A7F513DDB3 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; + 9823236B88743EB6A4D25D711237C722 /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = ""; }; + 9827171C80049752294AD9E3E7618E0C /* ReducedMotionOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReducedMotionOption.swift; path = Sources/Public/Configuration/ReducedMotionOption.swift; sourceTree = ""; }; + 98675E3A1A2936ED5AD80EDCA005B45A /* StrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift; sourceTree = ""; }; + 98AD5468026B6327AC1AC789C55E2B66 /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; + 98C70EAA109E0E04638FA1D75DD9F750 /* AMapNearbyUploadInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbyUploadInfo.h; path = AMapSearchKit.framework/Headers/AMapNearbyUploadInfo.h; sourceTree = ""; }; + 98CDBE58C4CEDB9BD1550333B927C91D /* YBIBLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBLoadingView.h; path = YBImageBrowser/AuxiliaryView/YBIBLoadingView.h; sourceTree = ""; }; + 98D77213A7C4320F6008B30A82AE41CE /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; + 98E65BD4ED51C14C9AEED0810840CC1C /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + 98FE132ACD16AAAFCB4C2207A360977B /* Archive+WritingDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+WritingDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+WritingDeprecated.swift"; sourceTree = ""; }; + 9909A72F16EE2DC3ABF5C0F04E9ACEC3 /* StrokeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift; sourceTree = ""; }; + 99239440EF284973039A0999DC626537 /* distinct.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = distinct.swift; path = Source/RxSwift/distinct.swift; sourceTree = ""; }; + 992563FFA7421581C3FDF8EA91BA1F9C /* DotLottieImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieImageProvider.swift; path = Sources/Private/Model/DotLottie/DotLottieImageProvider.swift; sourceTree = ""; }; + 993E3A197E04AE42791F78A4570F6478 /* LottieAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationCache.swift; path = Sources/Public/AnimationCache/LottieAnimationCache.swift; sourceTree = ""; }; + 9945C30FA08BD9EC319748ED2D43517F /* AnyEquatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEquatable.swift; path = Sources/Private/Utility/Helpers/AnyEquatable.swift; sourceTree = ""; }; + 99499D0EE1F54DD810D25785B2CEF644 /* IQKeyboardNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardNotification.modulemap; sourceTree = ""; }; + 99527D922C5842B63773D4E636CAF2A6 /* Mask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mask.swift; path = Sources/Private/Model/Objects/Mask.swift; sourceTree = ""; }; + 996E52A9F81C41390E20DE3A4592D278 /* PhotoEditResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditResult.swift; path = Sources/HXPHPicker/Editor/PhotoEditResult.swift; sourceTree = ""; }; + 997167D7CBCAD446D8B3CDD072502918 /* IQTextInputViewNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextInputViewNotification-dummy.m"; sourceTree = ""; }; + 99865637FCFF7B1AA28FC0923C3042EE /* TransformAnimations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformAnimations.swift; path = Sources/Private/CoreAnimation/Animations/TransformAnimations.swift; sourceTree = ""; }; + 99A13D9C8041EE3BD62071DAE3F0C6B2 /* Keyframes+combined.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Keyframes+combined.swift"; path = "Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift"; sourceTree = ""; }; + 99A57B66940EB146F742E55C77359AA8 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/Features/URLEncodedFormEncoder.swift; sourceTree = ""; }; + 99A5D487DE1C7561340E93F71231A048 /* HasImageComponent+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "HasImageComponent+Kingfisher.swift"; path = "Sources/Extensions/HasImageComponent+Kingfisher.swift"; sourceTree = ""; }; + 9A0653D24FED7922043E4E7661E6A56B /* MBProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MBProgressHUD-Info.plist"; sourceTree = ""; }; + 9A0F856E93522334178410DBF24E676D /* PhotoAsset+Network.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoAsset+Network.swift"; path = "Sources/HXPHPicker/Picker/Model/PhotoAsset+Network.swift"; sourceTree = ""; }; + 9A29D87B1DD0597A8C888EE5B31EB730 /* FrameSubAck.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FrameSubAck.swift; path = Source/FrameSubAck.swift; sourceTree = ""; }; + 9A2CE0AF51BE27F12200078A93A6C66E /* YBIBOperateBrowserProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBOperateBrowserProtocol.h; path = YBImageBrowser/Protocol/YBIBOperateBrowserProtocol.h; sourceTree = ""; }; + 9A3AB5C61F217707706D0EE32CFEA319 /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; + 9A41343F97BF0D399ADC1E9711D86A22 /* SGScanViewConfigure.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGScanViewConfigure.m; path = SGQRCode/ScanView/SGScanViewConfigure.m; sourceTree = ""; }; + 9A45467E991A7D1E26A9A9CDD47E4EC3 /* sharpyuv_dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv_dsp.h; path = sharpyuv/sharpyuv_dsp.h; sourceTree = ""; }; + 9A58F10CA935A050138ADEC85D511540 /* DateTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateTransform.swift; path = Sources/DateTransform.swift; sourceTree = ""; }; + 9A60D3136A08EC0C773382CEE7C49B14 /* NavigatorDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NavigatorDelegate.swift; path = Sources/URLNavigator/NavigatorDelegate.swift; sourceTree = ""; }; + 9A6F311555A73BB737010366B0CDEEDE /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; + 9A82381F95A0B1C9085F0DC4DCDEE26B /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; + 9ABFFC2EF84C27BEA54CF8DD10F38B28 /* SGTorch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGTorch.m; path = SGQRCode/Torch/SGTorch.m; sourceTree = ""; }; + 9AD40EA1CF3BDED2A363F76D9B6911F2 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; + 9B26973B3CBD32429FC5B8671E715F12 /* HXPHPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HXPHPicker-prefix.pch"; sourceTree = ""; }; + 9B46A5D19E97AE6984F675B88762077E /* NetworkLoggerPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkLoggerPlugin.swift; path = Sources/Moya/Plugins/NetworkLoggerPlugin.swift; sourceTree = ""; }; + 9BA3D3A4D6E0BDD3AE5425664D8746EE /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + 9BC67518006B19DC55658D20E4359695 /* LayerImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerImageProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift; sourceTree = ""; }; + 9C3603E52BD81ED0DFEA15C65199D20C /* DotLottieAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieAnimation.swift; path = Sources/Private/Model/DotLottie/DotLottieAnimation.swift; sourceTree = ""; }; + 9C419E6E04DBFE2E3EFEB4AD94165FA9 /* CALayer+addAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+addAnimation.swift"; path = "Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"; sourceTree = ""; }; + 9C4D23E4B97E5589131E460C9DAE5009 /* _RX.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RX.m; path = RxCocoa/Runtime/_RX.m; sourceTree = ""; }; + 9C4D61F01CE840F45DF6982F78033302 /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = ""; }; + 9C5F06A8E927D1486C8E2BE4C3CEF5B2 /* SGSoundEffect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGSoundEffect.h; path = SGQRCode/SoundEffect/SGSoundEffect.h; sourceTree = ""; }; + 9C7EEF7FD983ACD669C21EC0404713ED /* LottieAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationView.swift; path = Sources/Public/Animation/LottieAnimationView.swift; sourceTree = ""; }; + 9C881CC130CEB757F00BBCE825670589 /* PhotoPreviewSelectedViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewSelectedViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPreviewSelectedViewCell.swift; sourceTree = ""; }; + 9C9D1DC3A8237ADFBC76223E5E1932BB /* TagListView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TagListView-dummy.m"; sourceTree = ""; }; + 9CD16763011689F5599A9449C0100867 /* IQScrollViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQScrollViewConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift; sourceTree = ""; }; + 9CF9B4F936F9017EE6FE6902E94AAAEC /* Collection+Diff.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Collection+Diff.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Collection+Diff.swift"; sourceTree = ""; }; + 9D185FE7B7678520832236B38A00E369 /* RenderNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RenderNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/RenderNode.swift; sourceTree = ""; }; + 9D230BB4BBC629C4AD808FB6819CFE89 /* IQBarButtonItemConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItemConfiguration.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItemConfiguration.swift; sourceTree = ""; }; + 9D2C92E71F92957D93A3E7A0F3E1C393 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; + 9D3F97F68C76452A9B412F4F0553D559 /* TagListView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TagListView.release.xcconfig; sourceTree = ""; }; + 9D5338B11E142296D30DC453C617E8F4 /* CropConfirmViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CropConfirmViewConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/CropConfirmViewConfiguration.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; }; - 9DD1638A7E851D89BA5A60B16C3122AA /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; }; - 9E1546130068EEAD3189EC41869D6F14 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 9E3C9772593EC36053DCE3AD21CDA16D /* StrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift; sourceTree = ""; }; - 9E4F572F034A1B90543745C038E95B6A /* ObjectMapper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ObjectMapper-prefix.pch"; sourceTree = ""; }; - 9E519B15CCB12F735F0129579FF286E3 /* DelegateProxyType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxyType.swift; path = RxCocoa/Common/DelegateProxyType.swift; sourceTree = ""; }; - 9E8AF1331E01EDB4F004F4129550A574 /* DotLottieCacheProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieCacheProvider.swift; path = Sources/Public/DotLottie/Cache/DotLottieCacheProvider.swift; sourceTree = ""; }; - 9EB164560DE3677F1DA177D4DC5B5447 /* NSObject+Rx+KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+KVORepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift"; sourceTree = ""; }; - 9EC2C9B5255FD1BD8E427E9A7A199580 /* LottieSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieSwitch.swift; path = Sources/Public/Controls/LottieSwitch.swift; sourceTree = ""; }; - 9F09F941B55860CCB56708CB4F1FDA5F /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = ""; }; - 9F2A1EB79C2BE2EA918A66FEF777D04D /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; - 9F2F63F0B03B6BFA25E6C141689BD633 /* AssetManager+ImageData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+ImageData.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+ImageData.swift"; sourceTree = ""; }; - 9F376FE855AF22F30019CB36BAA7A1E8 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - 9F4DD82FA503C00D1869D0680B76A86C /* LottieAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimation.swift; path = Sources/Public/Animation/LottieAnimation.swift; sourceTree = ""; }; - 9F63ADBEB6601A1586154D53C923B5D4 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - 9F7376569D3C3F89560606F792EFCAE3 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - 9F8AF2C5A4BBDB77E38E045AFFEBF172 /* SGQRCode.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SGQRCode.debug.xcconfig; sourceTree = ""; }; - 9FB522F4C7C47BA527C5E509E78B4350 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - 9FBB552DBF10EEAB3DC15F5C4727EF3D /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = ""; }; - 9FC8B0D7C9DF7F1E28698FF3993A1672 /* VideoEditorViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorViewController.swift; path = Sources/HXPHPicker/Editor/Controller/VideoEditorViewController.swift; sourceTree = ""; }; - 9FE22C52F3EFE4A4578ABF3C37C14741 /* YBIBCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBCollectionView.h; path = YBImageBrowser/Base/YBIBCollectionView.h; sourceTree = ""; }; - A01BB5837F881970519254C3F1F0B175 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/Features/EventMonitor.swift; sourceTree = ""; }; - A0A2D3C3FF94DFA55B6240A4E3F7EF71 /* cascade.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = cascade.swift; path = Source/RxSwift/cascade.swift; sourceTree = ""; }; - A0B615FCCC02CD636E8D81ADC0F6C65A /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; - A10D88129CFDA405482F878874F048F1 /* SGScanViewConfigure.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGScanViewConfigure.m; path = SGQRCode/ScanView/SGScanViewConfigure.m; sourceTree = ""; }; - A120227F9F4B625771EBD96F015D8008 /* RxSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxSwift-Info.plist"; sourceTree = ""; }; - A12071B705466F16A1CF14EA2B9CDFFC /* AMapSearch.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapSearch.debug.xcconfig; sourceTree = ""; }; - A124C9F3769D0065B20BB49855542106 /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = ""; }; - A132C1553C8DE2206B733C062A0E2D83 /* EpoxyModelProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelProperty.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift; sourceTree = ""; }; - A1603778C0EE3DA3ECCBEBA945D3B01F /* OIMFileElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMFileElem.m; path = OpenIMSDK/Model/OIMFileElem.m; sourceTree = ""; }; - A1688BEE8D8DD531A4FF9FB8214FE03E /* MAMapVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapVersion.h; path = MAMapKit.framework/Headers/MAMapVersion.h; sourceTree = ""; }; + 9D95D57DFF072259B98628A58665039F /* UIView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; + 9DAD00461B83C200FA915645CDB0E2C6 /* DefaultsKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsKey.swift; path = Sources/DefaultsKey.swift; sourceTree = ""; }; + 9DAFE69F3F304AC496F03B746D4F05B7 /* KingfisherWebP-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "KingfisherWebP-Info.plist"; sourceTree = ""; }; + 9DCED5C705FE63535A256328BB0E994A /* NSObject+Rx+KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+KVORepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift"; sourceTree = ""; }; + 9DEB529B2C777502325ABEA4D9CFF4A9 /* MAArcRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArcRenderer.h; path = MAMapKit.framework/Headers/MAArcRenderer.h; sourceTree = ""; }; + 9E09E8D0DDB0127275867B6DB66EAC96 /* SolidLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidLayer.swift; path = Sources/Private/CoreAnimation/Layers/SolidLayer.swift; sourceTree = ""; }; + 9E8B5C0110F4223411274CE6A011F364 /* SDCallbackQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCallbackQueue.h; path = SDWebImage/Core/SDCallbackQueue.h; sourceTree = ""; }; + 9EC2A9DDAB7BEE8FDC3EACBC3C4C1D1E /* MAPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolyline.h; path = MAMapKit.framework/Headers/MAPolyline.h; sourceTree = ""; }; + 9ED7FC1A30A3ECB192352380A7A874A3 /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; + 9EDCD3AB67527112F13D7113124CC91D /* URLNavigator.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = URLNavigator.modulemap; sourceTree = ""; }; + 9EE62403F3E6512DC6CF16E7A5F5C68E /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/CoreFoundation.framework; sourceTree = DEVELOPER_DIR; }; + 9EEC0659E54BABA5CEDC5C8D6F2B82C0 /* TAPageControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TAPageControl.h; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAPageControl.h; sourceTree = ""; }; + 9F98F9817B280E58C08FC6A1993D49FA /* MarqueeLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MarqueeLabel.swift; path = Sources/MarqueeLabel.swift; sourceTree = ""; }; + 9FF9DE9D91C58B32C61967930F1A4A42 /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = ""; }; + A00EA2624DD142E40DE0ADF47D2A0AB3 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; + A01FFB1189079876A3BE427E2D58D934 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + A0219DE9E829EB25509BB1E2C6F67F4C /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; + A0526BE677EE80BEB8B8F270EBF0711B /* MAMultiTexturePolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiTexturePolylineRenderer.h; path = MAMapKit.framework/Headers/MAMultiTexturePolylineRenderer.h; sourceTree = ""; }; + A05278B9761105500CD055B4C550BDC2 /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = ""; }; + A06B171ACB56AD93E1BD1EBEF5864588 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; + A06D2EBC68A9A66C6DECE0BA1D733FA3 /* Entry+ZIP64.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Entry+ZIP64.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Entry+ZIP64.swift"; sourceTree = ""; }; + A0754BE3F77591C44FFAB586747F773C /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + A0A7A20E96488707B469EF7CBE0AEF37 /* String+Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Parser.swift"; path = "Sources/SwiftDate/Foundation+Extras/String+Parser.swift"; sourceTree = ""; }; + A0BC8E970B9984DFA602426BCBC66226 /* String+SHA256.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+SHA256.swift"; path = "Sources/Utility/String+SHA256.swift"; sourceTree = ""; }; + A0CBE9B053F9FC8D9F31828C0584A37D /* EditorToolViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorToolViewCell.swift; path = Sources/HXPHPicker/Editor/View/EditorToolViewCell.swift; sourceTree = ""; }; + A0D118785D957509F43768C5F4E0C6CA /* YYImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "YYImage-Info.plist"; sourceTree = ""; }; + A0DB6C7F3D7CF810502FB403BE2D852D /* PhotoPickerBottomView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerBottomView.swift; path = Sources/HXPHPicker/Picker/View/PhotoPickerBottomView.swift; sourceTree = ""; }; + A0E60F83DE43BBBF924BEF72B94D7D88 /* IQKeyboardToolbarManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbarManager-dummy.m"; sourceTree = ""; }; + A0EDB4D93155CAEB727C0AB45713F6D5 /* SetBehaviorsProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetBehaviorsProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetBehaviorsProviding.swift; sourceTree = ""; }; + A10CD0E8D82FD587766DE98C4C52DA77 /* YBImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBImage.m; path = YBImageBrowser/Image/YBImage.m; sourceTree = ""; }; + A11B776E936D8D46C6A528A1CE11FAC3 /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = RxRelay/Utils.swift; sourceTree = ""; }; + A1249BF2812DDEF7380FB54875C83716 /* Navigator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Navigator.swift; path = Sources/URLNavigator/Navigator.swift; sourceTree = ""; }; + A1458B5A431F562E12F39408D20AACD5 /* MAMultiPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPolyline.h; path = MAMapKit.framework/Headers/MAMultiPolyline.h; sourceTree = ""; }; + A166E25A3C3451C37A3AB8D76235D632 /* DotLottieConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieConfiguration.swift; path = Sources/Public/DotLottie/DotLottieConfiguration.swift; sourceTree = ""; }; A16FD016E18EACCF6B23F219F2E236FE /* IQKeyboardToolbar-IQKeyboardToolbar */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardToolbar-IQKeyboardToolbar"; path = IQKeyboardToolbar.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A18CEDAEF818C6AB48438A2230736E32 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - A1A4FD150E8969054E33120D391A51C8 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - A22DC8E59A81000BBA63235416889042 /* IQTextInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputView.swift; path = IQKeyboardCore/Classes/IQTextInputView.swift; sourceTree = ""; }; - A22E4F69C2B5364D39225FE8A26D6D52 /* IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardCore-Info.plist"; sourceTree = ""; }; - A2333B9AC870862E2D29C8F94BF1F89A /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; - A23D984530015E18E2F4B38BB459C1FD /* IQKeyboardAppearanceManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardAppearanceManager+Internal.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift"; sourceTree = ""; }; - A23F8B3C6F7CCF478BCF4BAE56BD4DF9 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; - A2739ABA43794B9409EE2F3DDA37D1A7 /* DotLottieImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieImageProvider.swift; path = Sources/Private/Model/DotLottie/DotLottieImageProvider.swift; sourceTree = ""; }; - A28212BF67021DCC567895F90F42F3B3 /* RxTextStorageDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextStorageDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift; sourceTree = ""; }; - A2AAA811CAAF000CD5110DE8E1FF8B85 /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; - A2BDBC359068D4ABAE82394D74FB8523 /* IQTextView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextView.modulemap; sourceTree = ""; }; - A2C6981FB90E9DB2786F343976922ECA /* OIMManager+Login.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Login.m"; path = "OpenIMSDK/Interface/OIMManager+Login.m"; sourceTree = ""; }; - A2CE242AF1F10BE3EF9A73779447424E /* YBImageBrowserDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBImageBrowserDelegate.h; path = YBImageBrowser/Protocol/YBImageBrowserDelegate.h; sourceTree = ""; }; - A2E05EB2A16264EE344D5C57B626E0E7 /* IQKeyboardToolbarManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Toolbar.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Toolbar.swift"; sourceTree = ""; }; - A2E935C69715E7BEAA6E8BB816DE0032 /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/Core/RequestTaskMap.swift; sourceTree = ""; }; - A30602900EAAC1E60D74FCEEB0960916 /* AMapServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapServices.h; path = AMapFoundationKit.framework/Headers/AMapServices.h; sourceTree = ""; }; - A30F967339486C931FF72A91349018AC /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItem.swift; sourceTree = ""; }; - A34655F0A811AB3A87F04E2474CB58B5 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextInputViewNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - A35504DC759D1D6D581B34A9591AB9F4 /* YBIBImageCache+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBImageCache+Internal.h"; path = "YBImageBrowser/Image/YBIBImageCache+Internal.h"; sourceTree = ""; }; - A3789559DC432ABA817A4958988A7DE5 /* TagView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TagView.swift; path = TagListView/TagView.swift; sourceTree = ""; }; - A3AF198343EDA479FAEFF07AB3155C1A /* OIMCallbacker+Closure.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMCallbacker+Closure.m"; path = "OpenIMSDK/Callbacker/OIMCallbacker+Closure.m"; sourceTree = ""; }; - A3ED3DE1B23ED24A4AD3B102497F472B /* SetContentProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetContentProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetContentProviding.swift; sourceTree = ""; }; - A3F2F6B8CB2B809BBF697237FB094086 /* DDTTYLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDTTYLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDTTYLogger.h; sourceTree = ""; }; - A41EF41F02941532EE13C414E23DEEDD /* PhotoManager+Download.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoManager+Download.swift"; path = "Sources/HXPHPicker/Core/Util/PhotoManager+Download.swift"; sourceTree = ""; }; - A453B6D8197404FC1374D7F63F8B640E /* MJPropertyType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyType.h; path = MJExtension/MJPropertyType.h; sourceTree = ""; }; - A468180CC8FED21C9CBCF714A602BA70 /* TimePeriodCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodCollection.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodCollection.swift; sourceTree = ""; }; - A46B954BDFF657B2EB27B561A75FD56B /* MAMultiPointOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlayRenderer.h; path = MAMapKit.framework/Headers/MAMultiPointOverlayRenderer.h; sourceTree = ""; }; - A4BFCEEC214B513B2C016565E852579F /* MAIndoorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAIndoorInfo.h; path = MAMapKit.framework/Headers/MAIndoorInfo.h; sourceTree = ""; }; - A5579C794B8B2149F7FF896EA599A88A /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = ""; }; - A57FD2A0791CC337715FFD68EBC59025 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Sources/Moya/Response.swift; sourceTree = ""; }; - A598A01BE8C27F0423DB78EB55F82E42 /* MeasuringViewRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MeasuringViewRepresentable.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/MeasuringViewRepresentable.swift; sourceTree = ""; }; - A59E29643218DB83EB446596CF3A4210 /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift"; sourceTree = ""; }; - A5BFBD150FA1FFD5F8206A024E6D8015 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - A5C635E55F5A6DFE07FD9D482A1443A7 /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = ""; }; - A6169659CBED06CD788319B06F6437EF /* OIMAtElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMAtElem.h; path = OpenIMSDK/Model/OIMAtElem.h; sourceTree = ""; }; - A63CABC0DE1372702B329D3C31A8F207 /* DDOSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDOSLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDOSLogger.h; sourceTree = ""; }; - A66D9F8A28B2D8B918FF71CBEC6E5BC5 /* PhotoEditorViewController+Export.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoEditorViewController+Export.swift"; path = "Sources/HXPHPicker/Editor/Controller/PhotoEditorViewController+Export.swift"; sourceTree = ""; }; - A66DF04928172288AAF39431F1258403 /* BuiltIns.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BuiltIns.swift; path = Sources/BuiltIns.swift; sourceTree = ""; }; - A67326A62BBF7678EA70AC35CB159929 /* IQTextView+Placeholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQTextView+Placeholderable.swift"; path = "IQTextView/Classes/IQTextView+Placeholderable.swift"; sourceTree = ""; }; - A677DBA18E68A3B1473D33FD77407ADD /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - A6C5691B4B9FEB2303C898F704D97B3F /* CallbackContextEpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackContextEpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/CallbackContextEpoxyModeled.swift; sourceTree = ""; }; - A70960A456CC7B878B6BE0A13B941DBE /* _RX.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RX.m; path = RxCocoa/Runtime/_RX.m; sourceTree = ""; }; - A70FED667384419D528193F57E48A8F1 /* Mapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mapper.swift; path = Sources/Mapper.swift; sourceTree = ""; }; - A746BA66E73C424E8AAAA83B4F93FEBB /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = ""; }; - A76FDED2A38259CFBEF42A7E0ADA24C1 /* SwiftyUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyUserDefaults-prefix.pch"; sourceTree = ""; }; - A77598EF3EBC00300D5A3F9E4B15F065 /* TextLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextLayer.swift; path = Sources/Private/CoreAnimation/Layers/TextLayer.swift; sourceTree = ""; }; - A7B95A9E68D6B1BFC0187CCA4BC88B13 /* DDLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDLog.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDLog.h; sourceTree = ""; }; - A7CAC3DB04F7ADB64B8499A90B77C74B /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - A7CC3C827AC34942AB71C3500296EC33 /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; - A7D400804C9D63E6FC3EC09C0CDDD6D2 /* CompatibilityTracker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibilityTracker.swift; path = Sources/Private/CoreAnimation/CompatibilityTracker.swift; sourceTree = ""; }; - A7E16049507CC03B9090F2AF6AA72E29 /* YBIBScreenRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBScreenRotationHandler.h; path = YBImageBrowser/Base/YBIBScreenRotationHandler.h; sourceTree = ""; }; - A7E6A17940D1B64025EF4866E44EB716 /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; - A8167F7A91C1C9DD4217753A632852CD /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - A8212076E19A3552BC329E458689B1B1 /* VideoEditorMusicAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorMusicAnimationView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorMusicAnimationView.swift; sourceTree = ""; }; - A8386269616E7CE007CD245147A27BFC /* SwiftDate-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDate-prefix.pch"; sourceTree = ""; }; - A852BD96FBC53D4DB881E0209211A72C /* NSDecimalNumberTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSDecimalNumberTransform.swift; path = Sources/NSDecimalNumberTransform.swift; sourceTree = ""; }; - A85F7BFA6933B34EAFBDDE988DB2A8A9 /* AMap3DMap.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMap3DMap.release.xcconfig; sourceTree = ""; }; - A89C8E12857A90B1C389AB823B07BD56 /* BehaviorRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorRelay.swift; path = RxRelay/BehaviorRelay.swift; sourceTree = ""; }; - A8D92D190853671E509BAA5E005AAD97 /* PhotoPreviewSelectedView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewSelectedView.swift; path = Sources/HXPHPicker/Picker/View/PhotoPreviewSelectedView.swift; sourceTree = ""; }; + A1DA6E0CC1D2FAF481390FDF49CB9EE8 /* SGScanCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGScanCode.h; path = SGQRCode/QRCode/SGScanCode.h; sourceTree = ""; }; + A1DACC2DC8AD21EC30FE9C39863EC883 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + A1DCF093CA16431C64ED20AF66EAB4DC /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = ""; }; + A21AF33BAC1856A8747F2733F50DB38C /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; + A229AE0D21491B82D7E0DAE152DE073D /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; + A22F13325BAECE5E89A7635E627B97CB /* SwiftKeychainWrapper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftKeychainWrapper-dummy.m"; sourceTree = ""; }; + A233DB53169F833FF0DC8F0A5692710F /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = ""; }; + A2434F3EB6290F8CE20AB41821143D16 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; + A26A017981C2551A9932A411A10D8C13 /* Differentiator.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Differentiator.debug.xcconfig; sourceTree = ""; }; + A27735D73BDAF35198BF15B74CAFA479 /* AMapSearchAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchAPI.h; path = AMapSearchKit.framework/Headers/AMapSearchAPI.h; sourceTree = ""; }; + A27A11E0906C1DEC75B5B18E610C9434 /* RxRelay-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxRelay-dummy.m"; sourceTree = ""; }; + A27AA83F2845140359A4DB58C644F78A /* SDCycleScrollView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDCycleScrollView.release.xcconfig; sourceTree = ""; }; + A287BBD95D2A3CE560410E6AAEFD0C82 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; + A29BD49A7C76A70FC93ED9BBE634D6A2 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; + A2A3A2F1F37FF6F5C217BD219BA3DCFA /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; + A2CD2E3BBF844A6612B4784DF5C04CFA /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; + A2FB51B9742FF46DD5E6F6CC65B93B6B /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + A3BC31B6E58488D20D1E01F30A6E36A5 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; + A4003189831C8739B8012FBB644D89F4 /* SGQRCode-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SGQRCode-Info.plist"; sourceTree = ""; }; + A42061DFC6E2B374C142A8DB9B3289E6 /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = ""; }; + A45C3161BC7648F62303036FF3B350C5 /* OIMGroupInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMGroupInfo.h; path = OpenIMSDK/Model/OIMGroupInfo.h; sourceTree = ""; }; + A462FD5A5791151FAF19DE1A2BB6CAF8 /* IQKeyboardReturnManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.debug.xcconfig; sourceTree = ""; }; + A4739742911C8301AAE3EF467466767F /* DotNetParserFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotNetParserFormatter.swift; path = Sources/SwiftDate/Formatters/DotNetParserFormatter.swift; sourceTree = ""; }; + A48AE4B983D1A1F6626A2B7F77DFA6B2 /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = ""; }; + A49386E944B025DD42EE8A1F8EB38266 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = ""; }; + A49A6F4E09E1DE49F95B7C7B5F769716 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + A49D1842DD970A77A3B0D605617890B8 /* Editor+UIImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Editor+UIImage.swift"; path = "Sources/HXPHPicker/Editor/Extension/Editor+UIImage.swift"; sourceTree = ""; }; + A4A7F2883A127431D6E6E825F82B1CD1 /* SwiftDate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDate.debug.xcconfig; sourceTree = ""; }; + A50464F051FFAD36C579BF994F2EE62A /* Core+PHAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+PHAsset.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+PHAsset.swift"; sourceTree = ""; }; + A509ACD41593F9645F64E6E501A170B4 /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = ""; }; + A564302709C6F613C097FCA7C36410B8 /* YBIBContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBContainerView.m; path = YBImageBrowser/Base/YBIBContainerView.m; sourceTree = ""; }; + A57A3781B2D11ED00B067F77C51CD911 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; + A5855B017DB303D2A1DBEC7EFDEEBEF7 /* AlipaySDK-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AlipaySDK-iOS.release.xcconfig"; sourceTree = ""; }; + A58B86B87E69679760C7B7E8604BB766 /* PhotoEditorMosaicToolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorMosaicToolView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorMosaicToolView.swift; sourceTree = ""; }; + A5D91DB00869FD3D156C8E656E0146BE /* DotLottieUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieUtils.swift; path = Sources/Private/Model/DotLottie/DotLottieUtils.swift; sourceTree = ""; }; + A6231FD2D37A52E5BFE0B866D8EB940C /* SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUIView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/SwiftUIView.swift; sourceTree = ""; }; + A63D5EC5608CA5FC91E9F28422C4C1E7 /* KVORepresentable+Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+Swift.swift"; path = "RxCocoa/Foundation/KVORepresentable+Swift.swift"; sourceTree = ""; }; + A653B0A60B5E5A8FEC71EC7CA4A3EB5F /* AssetManager+Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+Image.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+Image.swift"; sourceTree = ""; }; + A66A31893F6C7863209C97E72EC09DF9 /* unwrap+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "unwrap+SharedSequence.swift"; path = "Source/RxCocoa/unwrap+SharedSequence.swift"; sourceTree = ""; }; + A66FBF950048189A9BC5A7C43078F25B /* SwiftyUserDefaults.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyUserDefaults.release.xcconfig; sourceTree = ""; }; + A6883A58E11528E040F55C0325D7B37F /* LayerEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerEffect.swift; path = Sources/Private/Model/LayerEffects/LayerEffect.swift; sourceTree = ""; }; + A6B15A87F23CED5AFFB3908396D1AD38 /* UIView+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+Resign.swift"; sourceTree = ""; }; + A73D10EE0B3B95755803C56234B8C194 /* UITabBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBar+Rx.swift"; path = "RxCocoa/iOS/UITabBar+Rx.swift"; sourceTree = ""; }; + A74A7D2A8E145C693B70DF164CC44062 /* AMapSearchVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchVersion.h; path = AMapSearchKit.framework/Headers/AMapSearchVersion.h; sourceTree = ""; }; + A781D796BB0C79520A672AE004474165 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; + A7AF6E104842D1D774F95573E8ACDFC4 /* CoreAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CoreAnimationLayer.swift; path = Sources/Private/CoreAnimation/CoreAnimationLayer.swift; sourceTree = ""; }; + A7C8BB5332F80E96E8D6A4B4D6AA10A0 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; + A7D52DBF5B8B5DD78B762AC31DF025DE /* KingfisherWebP.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KingfisherWebP.release.xcconfig; sourceTree = ""; }; + A7E0219D96D197D256967A214677AE6B /* UIViewControllerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIViewControllerType.swift; path = Sources/URLNavigator/UIViewControllerType.swift; sourceTree = ""; }; + A80EC926E501D239E1C011FDAC48CB5B /* SGQRCode-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SGQRCode-prefix.pch"; sourceTree = ""; }; + A81A9BF5594B5731597BBC2E2B350AE5 /* CocoaMQTT-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CocoaMQTT-Info.plist"; sourceTree = ""; }; + A826013E455DCB77EA899538B69425BF /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/dsp/cpu.h; sourceTree = ""; }; + A830E1FCCBFF0E3E0CB9AC490BA68B14 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; + A8363BA837F7E198BFBCA2B3BCA30959 /* Archive+Helpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Helpers.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Helpers.swift"; sourceTree = ""; }; + A84F997BE9F6903E8E03618EBBA3FB65 /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; + A85C1FB7E970597CDEA090223148461D /* MqttDecodeConnAck.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttDecodeConnAck.swift; path = Source/MqttDecodeConnAck.swift; sourceTree = ""; }; + A89DFF6BEF600D2FD437FB469EB3876D /* lossless_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse41.c; path = src/dsp/lossless_sse41.c; sourceTree = ""; }; + A89F0017E752468FC04ED5B3CB8071A4 /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = ""; }; + A8BEB8AC75C51F307499646F3B4C0DF2 /* CocoaMQTTLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTLogger.swift; path = Source/CocoaMQTTLogger.swift; sourceTree = ""; }; + A8DDCF4864693C73E1125B4AF69B2DA3 /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; + A8E0AFB41829ABCBA41B2E4A12FC1FF8 /* OIMManager+Login.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Login.h"; path = "OpenIMSDK/Interface/OIMManager+Login.h"; sourceTree = ""; }; + A8E337169F44377E81115D90C19F1BC0 /* InterpolatableExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InterpolatableExtensions.swift; path = Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift; sourceTree = ""; }; A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardManagerSwift; path = IQKeyboardManagerSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A8F92E2A7462A6E9C1EBE6F316F7E10B /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - A8FE3A0CAF8782AEB054AD93A654B274 /* TagListView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "TagListView-Info.plist"; sourceTree = ""; }; - A90426A3569DFD849BCC6A1F9C5CCD8D /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - A91F2AA5FE62815A42F8020A333595DE /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/Features/CachedResponseHandler.swift; sourceTree = ""; }; - A95AA6726D0817E43DE36A9CDFFAF8DB /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - A96C05B637BDA477BEE511BDBAF925FE /* _RXKVOObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXKVOObserver.h; path = RxCocoa/Runtime/include/_RXKVOObserver.h; sourceTree = ""; }; - A96E31FD91560DE1C982C3A2F559FB6B /* SwiftKeychainWrapper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftKeychainWrapper.release.xcconfig; sourceTree = ""; }; - A9717FEB35D2D2F9A59EC9D64C1C3CAE /* DDASLLogCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDASLLogCapture.m; path = Sources/CocoaLumberjack/DDASLLogCapture.m; sourceTree = ""; }; - A9A5A6309F39C14ADCA5F233F829C0AB /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - A9B1C90D6A160806DBC532F191101F7B /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = ""; }; - A9B48004DE11AD5F7D92BCECE9169620 /* MAOfflineProvince.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineProvince.h; path = MAMapKit.framework/Headers/MAOfflineProvince.h; sourceTree = ""; }; - A9C59615FF8BA2E341509BA2898E468F /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/Core/HTTPMethod.swift; sourceTree = ""; }; - A9EAC8FC1287A9C24DA5BC7D31F39F91 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - A9EB2433B6E7A927FB90C619CB9BAF2F /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; - A9EC385B4E999D9713BD79006E2B9E7C /* IQTextView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.debug.xcconfig; sourceTree = ""; }; - AA0BB7AB446A12933B77D4C0AE7B8AA8 /* UIColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColorExtension.swift; path = Sources/Public/iOS/UIColorExtension.swift; sourceTree = ""; }; - AA2009BD31AB4862C0F522D1157D1B11 /* SGQRCode-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SGQRCode-prefix.pch"; sourceTree = ""; }; - AA285ADE8A6A7FDFFE668150218D3D8C /* CurveVertex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurveVertex.swift; path = Sources/Private/Utility/Primitives/CurveVertex.swift; sourceTree = ""; }; - AA79DD3CDCB73818B02AC1D089A6D543 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - AAD0FAC7FA408BC1FCB711EFCEDAB743 /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; - AADD4B026F6027AF572D51A25BD61D10 /* UITableView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift"; sourceTree = ""; }; - AAED5794D1814F1E87DB3BBCE6FBE1B2 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = ""; }; - AAF22B492F23B4CFC20A5E24D1E91905 /* SDCycleScrollView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SDCycleScrollView-Info.plist"; sourceTree = ""; }; - AB13A26BC6750B3E62BC905FFE398E3C /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; - AB2DDA3D7CBE2D21345D27AC7AF3D8B6 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - AB3AF5015C0B68FB788983C3D31F518B /* UICollectionView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift"; sourceTree = ""; }; - AB53487CE53F8FB4D70D0221212EC78E /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; - AB564C754205CD3493687FA26FF26303 /* IQKeyboardReturnManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-prefix.pch"; sourceTree = ""; }; - AB7FA079A6480E26839E652C739D968A /* LottieAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationLayer.swift; path = Sources/Public/Animation/LottieAnimationLayer.swift; sourceTree = ""; }; - ABAA3CDFB336842D51FBF95ABD577DDB /* OIMAttachedInfoElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMAttachedInfoElem.m; path = OpenIMSDK/Model/OIMAttachedInfoElem.m; sourceTree = ""; }; - ABAA6161220738159EA6407CD6D75B1C /* SGPermission.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGPermission.h; path = SGQRCode/Permission/SGPermission.h; sourceTree = ""; }; - ABC97A3BC2FAB2610A09174860B90436 /* LottieAnimationHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationHelpers.swift; path = Sources/Public/Animation/LottieAnimationHelpers.swift; sourceTree = ""; }; - ABDDA2F98E6FF243C9EAAF78BE220BA3 /* UIView+IQKeyboardExtensionDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionDeprecated.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionDeprecated.swift"; sourceTree = ""; }; - ABDF1BFBE98F3670973FDD3336644BFE /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = ""; }; - AC1E1F787958CC63A2481A4849213576 /* MAPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolyline.h; path = MAMapKit.framework/Headers/MAPolyline.h; sourceTree = ""; }; - AC2AD7BD30CB7339F736B669B8A956DF /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - AC3BD5DF5C448ECFA97F2D14FD13D728 /* GradientAnimations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientAnimations.swift; path = Sources/Private/CoreAnimation/Animations/GradientAnimations.swift; sourceTree = ""; }; - AC5247F475E31AF3FCDD129E145E5EA2 /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; - AC62F1FD8293CE55DC16776968CD8EFA /* LottieConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieConfiguration.swift; path = Sources/Public/Configuration/LottieConfiguration.swift; sourceTree = ""; }; - AC74A3DD06D0A473754208FC64517B43 /* Date.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Date.swift; path = Sources/SwiftDate/Date/Date.swift; sourceTree = ""; }; - AC806792CC71E85249287A955EF3507D /* Date+Compare.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Compare.swift"; path = "Sources/SwiftDate/Date/Date+Compare.swift"; sourceTree = ""; }; - AC83235E9EDBD10A36F3E1F871D63BF3 /* SwiftKeychainWrapper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftKeychainWrapper-dummy.m"; sourceTree = ""; }; - AC86EDE9FF4EF53151A9DBC007517513 /* NSObject+MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJProperty.m"; path = "MJExtension/NSObject+MJProperty.m"; sourceTree = ""; }; - AC8A56E876CE12D362A2C2E78A8D3CCE /* OIMUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMUserInfo.m; path = OpenIMSDK/Model/OIMUserInfo.m; sourceTree = ""; }; - ACA84D9FD7A30E84D64FDD5B306DE077 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardReturnManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - ACC3F849100B4177C338AEEF424E627F /* StarAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StarAnimation.swift; path = Sources/Private/CoreAnimation/Animations/StarAnimation.swift; sourceTree = ""; }; - ACC681D108A8345F492BADBED19B1FA5 /* WechatOpenSDK-XCFramework-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "WechatOpenSDK-XCFramework-xcframeworks.sh"; sourceTree = ""; }; - ACCCADC954162C87B199D3E8C5D94DA0 /* YBIBPhotoAlbumManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBPhotoAlbumManager.m; path = YBImageBrowser/Helper/YBIBPhotoAlbumManager.m; sourceTree = ""; }; - ACFDC59C4D51BAC7D448516B4133A38B /* DDLog+Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DDLog+Combine.swift"; path = "Sources/CocoaLumberjackSwift/DDLog+Combine.swift"; sourceTree = ""; }; - AD03CCC56A646093FE8F14113693E9AE /* CompositionLayersInitializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayersInitializer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift; sourceTree = ""; }; - AD0CEA64153A7C2D5E5C9DBB44A63976 /* OpenIMSDKCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenIMSDKCore.release.xcconfig; sourceTree = ""; }; - AD14CB3A9622BD754B4DDE7ACDA1BA7A /* IntegerOperators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IntegerOperators.swift; path = Sources/IntegerOperators.swift; sourceTree = ""; }; - AD1C37483F1765480EA3F2E60B78344D /* SDCallbackQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCallbackQueue.m; path = SDWebImage/Core/SDCallbackQueue.m; sourceTree = ""; }; - AD27972448441D5FB6107C986BEBBE74 /* AnyValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueProvider.swift; path = Sources/Public/DynamicProperties/AnyValueProvider.swift; sourceTree = ""; }; - AD2D1327000C70FC0BBAA01C490E011C /* lottie-ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-prefix.pch"; sourceTree = ""; }; - AD3691342BA64611F087DB419A91ACBB /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; - AD3F046E6A26BC1343E61DFF8913EEBD /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; - AD4BBD0CD593005DCB8ECA0DEAF875E4 /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = ""; }; - AD658EEF20E9119CE663C6D7FC68A348 /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; - AD6C858EAA13A54CA0AA44CC1CE1B01A /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - AD9041B6DF19370EC5F993457993D52D /* EditorChartletView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorChartletView.swift; path = Sources/HXPHPicker/Editor/View/EditorChartletView.swift; sourceTree = ""; }; + A912BE71BCC6CE5C8A4741C1D8E0D65D /* ControlProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlProperty.swift; path = RxCocoa/Traits/ControlProperty.swift; sourceTree = ""; }; + A91A77B1FDA08F75874435E05D67FD40 /* SGWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGWeakProxy.h; path = SGQRCode/WeakProxy/SGWeakProxy.h; sourceTree = ""; }; + A96139C1CDAA829E1C5C99CC966F3CB0 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; + A9770EBDF903A431CE5AB241FCFFA29B /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; + A989C2079B8C5E48A3BFE36041C1D718 /* Locales.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Locales.swift; path = Sources/SwiftDate/Supports/Locales.swift; sourceTree = ""; }; + A99EBE5E9E3CAA905EC6539367F7792C /* CallbackProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallbackProxy.h; path = OpenIMSDK/CallbackProxy/CallbackProxy.h; sourceTree = ""; }; + A9BBAC281B464444D34803B8EA62BC18 /* SDCycleScrollView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDCycleScrollView-dummy.m"; sourceTree = ""; }; + A9C7F4582926271F92F237DDB69DF485 /* partition+RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "partition+RxCocoa.swift"; path = "Source/RxCocoa/partition+RxCocoa.swift"; sourceTree = ""; }; + A9D622A57312540E1D02274F0ACCE389 /* NodePropertyMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodePropertyMap.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift; sourceTree = ""; }; + A9F238C824DC5CABA2405329173D8675 /* YBIBVideoTopBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoTopBar.h; path = Video/YBIBVideoTopBar.h; sourceTree = ""; }; + AA7C0D3305D9B7A84E20C191529D4645 /* ResourceBundle-Alamofire-Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Alamofire-Alamofire-Info.plist"; sourceTree = ""; }; + AA7D8697DE6274197EF66543E7204F88 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; + AAA1925E912633702DFCEED5D168B04D /* AMapGeoFenceError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceError.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceError.h; sourceTree = ""; }; + AAA1C252AB5B246A0A86CC016441BE5E /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = ""; }; + AAA272F52E8ADAC35C395237086FBE2C /* IQKeyboardToolbarManager+Action.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Action.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Action.swift"; sourceTree = ""; }; + AAED09A3FF9F11B572D266C4C9AF76E7 /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; + AB1C61EFA6F55C5182E8D76C343977AC /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = ""; }; + AB260D469E13128154D9E7ABE02CAFB8 /* PhotoEditorViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorViewController.swift; path = Sources/HXPHPicker/Editor/Controller/PhotoEditorViewController.swift; sourceTree = ""; }; + AB272087ABE824979CB58F3810B9CDB8 /* Stroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stroke.swift; path = Sources/Private/Model/ShapeItems/Stroke.swift; sourceTree = ""; }; + AB2DA40F1188D559D2779EB5EC0331BC /* AnimatedSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedSwitch.swift; path = Sources/Public/Controls/AnimatedSwitch.swift; sourceTree = ""; }; + AB391B254D2D6498DF8E0C3EED6102BA /* DDContextFilterLogFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDContextFilterLogFormatter.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDContextFilterLogFormatter.h; sourceTree = ""; }; + AB40994AE1C02F08D2B55602420DAB57 /* AlbumViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/AlbumViewCell.swift; sourceTree = ""; }; + ABB48555987725F3F2DAF0B81D478F17 /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/Core/HTTPHeaders.swift; sourceTree = ""; }; + AC0DEEF56E149FD1D1F4844450CEFA30 /* DashPattern.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DashPattern.swift; path = Sources/Private/Model/Objects/DashPattern.swift; sourceTree = ""; }; + AC1490178B4403F12075DA020083F475 /* DelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxy.swift; path = RxCocoa/Common/DelegateProxy.swift; sourceTree = ""; }; + AC25F5250554656AB117D165FA972CC9 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; + AC356DA22FF4E1FD88BD44E203B78566 /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = ""; }; + AC69131AF9EA014107D0800E6C683B52 /* SwiftDate-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftDate-Info.plist"; sourceTree = ""; }; + AC85375D7D20F08BF74644A806E2502A /* Core+Bundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+Bundle.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+Bundle.swift"; sourceTree = ""; }; + ACA0FD1057D4E019CF3F33E4DD4C7F55 /* MAMapCustomStyleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapCustomStyleOptions.h; path = MAMapKit.framework/Headers/MAMapCustomStyleOptions.h; sourceTree = ""; }; + ACCF599458E42F9D6A4C0F3BE13220BF /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = ""; }; + ACD9E6D9D77A4F9B1BAA53135CC21EF6 /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/Extensions/URLRequest+Alamofire.swift"; sourceTree = ""; }; + ACDBB4CB21A0172744F834F4091673B4 /* YBIBImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageCell.m; path = YBImageBrowser/Image/YBIBImageCell.m; sourceTree = ""; }; + AD1D86B254CE47711A06BBB8609D5C1C /* UIView+SDExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+SDExtension.m"; path = "SDCycleScrollView/Lib/SDCycleScrollView/UIView+SDExtension.m"; sourceTree = ""; }; + AD34B51B09467734D0CC3DF50AAD4BDD /* DataStreamRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataStreamRequest.swift; path = Source/Core/DataStreamRequest.swift; sourceTree = ""; }; + AD78BC3B9444626883C4206C4B606F25 /* Moya+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Moya+Alamofire.swift"; path = "Sources/Moya/Moya+Alamofire.swift"; sourceTree = ""; }; + AD83DAC58E563A1D225FFBE27E953654 /* YYImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YYImage.modulemap; sourceTree = ""; }; + AD86A09242BE8D4BF03B42D158E5C0D9 /* CachedImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedImageProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift; sourceTree = ""; }; AD98CFAAF5B58CF9222F482D2618B073 /* Pods-QuickLocation */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-QuickLocation"; path = Pods_QuickLocation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - ADB41122F7EEAC1BC2E8C6BA3079508C /* YYImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYImage.m; path = YYImage/YYImage.m; sourceTree = ""; }; - ADE1736DF811673FB2909732A3F3BF40 /* IQDeepResponderContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQDeepResponderContainerView.swift; path = IQKeyboardToolbarManager/Classes/IQDeepResponderContainerView.swift; sourceTree = ""; }; - ADEB27CA669C4121E999811969AC33BB /* FloatValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FloatValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift; sourceTree = ""; }; - ADFA2645467E0829AC032303FE5EA3B0 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; - AE2806152713FE09C2CB6AA76C33BD73 /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; - AE38EB81281AAD4749C410E60DD3CDAD /* MAConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAConfig.h; path = MAMapKit.framework/Headers/MAConfig.h; sourceTree = ""; }; - AE3A29EAE2AD084E9A58744CA01CC32E /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - AE5897611BC8BD2C214F2E90A0320833 /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; - AE5ABD4016BF6AACDBB92D0B961EFB06 /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = ""; }; - AE7A0A006BF7EC69C5456D73B00C2B16 /* MATileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlay.h; path = MAMapKit.framework/Headers/MATileOverlay.h; sourceTree = ""; }; - AEA189D9B360430E513572847E80BFA3 /* SwiftDate-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDate-umbrella.h"; sourceTree = ""; }; - AEA1F78F7416BA70657450BF20259B85 /* SwiftyJSON.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.release.xcconfig; sourceTree = ""; }; - AEC48A026B01DBA97EE27FE1A72019A8 /* IQKeyboardReturnManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnManager.swift; path = IQKeyboardReturnManager/Classes/IQKeyboardReturnManager.swift; sourceTree = ""; }; - AF212710FCA100E37EAE4915B943DC36 /* MAMultiPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPoint.h; path = MAMapKit.framework/Headers/MAMultiPoint.h; sourceTree = ""; }; - AF349643C3A63B3C5D763016F77EF7F5 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxCocoa/Common/Observable+Bind.swift"; sourceTree = ""; }; - AF41612EEB9F8E1B8A0A9496A63C2391 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJRefresh/PrivacyInfo.xcprivacy; sourceTree = ""; }; - AF440B48F12C86D500E4870C7336F8CE /* PhotoListCameraCellConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoListCameraCellConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PhotoListCameraCellConfiguration.swift; sourceTree = ""; }; - AF7AAD023CD959C7D04EDAEF495E42D4 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; - AFCDE5AF3EB4961DEC846A4D7B35E777 /* Infallible+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Operators.swift"; path = "RxSwift/Traits/Infallible/Infallible+Operators.swift"; sourceTree = ""; }; - B00B2714CE63029E316A682E308DACC9 /* IQKeyboardToolbarManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbarManager-dummy.m"; sourceTree = ""; }; - B0141EC31CE079520632B9192FA59C41 /* Decode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decode.swift; path = RxSwift/Observables/Decode.swift; sourceTree = ""; }; - B023E00F6097377AEE33C52783C2D1FB /* PhotoEditorFilter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorFilter.swift; path = Sources/HXPHPicker/Editor/Model/PhotoEditorFilter.swift; sourceTree = ""; }; - B02664CA4AF3A20B2AD925D0A1FED67D /* IQKeyboardToolbarManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.debug.xcconfig; sourceTree = ""; }; - B053BB799704A9F6F6384BBAF294DA09 /* SwiftLogLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwiftLogLevel.h; path = Sources/CocoaLumberjackSwiftSupport/include/CocoaLumberjackSwiftSupport/SwiftLogLevel.h; sourceTree = ""; }; - B05BAD2FED8BCAA8BC346D23A2E4C934 /* BaseViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseViewController.swift; path = Sources/HXPHPicker/Core/Controller/BaseViewController.swift; sourceTree = ""; }; - B0676AB10DF7580007C901BF2C8B01B8 /* SwiftyJSON.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.debug.xcconfig; sourceTree = ""; }; - B0785BC93A1F0C4CDC04A31E0BCA48C6 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - B0786928B2C05998AE8F0FF54CE85D00 /* LottieURLSession.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieURLSession.swift; path = Sources/Public/Configuration/LottieURLSession.swift; sourceTree = ""; }; - B09F2B014F2F335A6DD1960BA5E604AF /* SGQRCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGQRCode.h; path = SGQRCode/SGQRCode.h; sourceTree = ""; }; + ADD590C801F4A52D73C98EA6ED07876F /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; + ADDB1F578A79A46460968775A7A8BB7C /* DateInRegion+Compare.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Compare.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Compare.swift"; sourceTree = ""; }; + ADDCBE1A39A53B0074D2F5EB3E791CCF /* Utilities.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utilities.swift; path = Sources/Differentiator/Utilities.swift; sourceTree = ""; }; + ADE23998ED27B4812995A97BEF5F323C /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; + AE120212B6286301289F194C73D0175F /* TraitCollectionProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TraitCollectionProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/TraitCollectionProviding.swift; sourceTree = ""; }; + AE26DEC3493C62F248963D1C42788E9A /* Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Operators.swift; path = Sources/Operators.swift; sourceTree = ""; }; + AE4001EA3C74696CD653D4D456B33090 /* FromJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FromJSON.swift; path = Sources/FromJSON.swift; sourceTree = ""; }; + AE5E8976ED0958D0E88CF4130425A677 /* sharpyuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv.c; path = sharpyuv/sharpyuv.c; sourceTree = ""; }; + AE67D105FFA7A37148000E1CF35CB1A2 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; + AE7C96DF1255DC3006CBEA26F1C9BD7E /* StyleIDProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyleIDProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/StyleIDProviding.swift; sourceTree = ""; }; + AE89F8D1916B993D275FAF4DB3647381 /* RxRelay-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-prefix.pch"; sourceTree = ""; }; + AEA62DA3B37F8C57C82A14C0101890F3 /* CurrentFileNameHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentFileNameHelper.swift; path = Sources/CocoaLumberjackSwift/CurrentFileNameHelper.swift; sourceTree = ""; }; + AEB247929A37EFE26C6A805DEA433B91 /* DeniedAuthorizationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DeniedAuthorizationView.swift; path = Sources/HXPHPicker/Picker/View/DeniedAuthorizationView.swift; sourceTree = ""; }; + AED21DA327E29BB41B917FB1E341C399 /* IQKeyboardManager+Appearance_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance_Deprecated.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift"; sourceTree = ""; }; + AEDFB3B7BB27DE01032FB09D870AD119 /* UICollectionView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift"; sourceTree = ""; }; + AF05CC8BD4D487667590A69116766F94 /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; + AF0B8DBB8BE630A64C34C16B1D7F8343 /* ignoreWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ignoreWhen.swift; path = Source/RxSwift/ignoreWhen.swift; sourceTree = ""; }; + AF1E1A17DAD75DE28EC1283BB21F7AD9 /* Binder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Binder.swift; path = RxSwift/Binder.swift; sourceTree = ""; }; + AF49723DC4972AEC4D4BF0627D0F329A /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; + AF9289DFE96B0D477395C1AE2E955C29 /* ISOFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISOFormatter.swift; path = Sources/SwiftDate/Formatters/ISOFormatter.swift; sourceTree = ""; }; + AF976276672106FA581F52DF8576E905 /* libwebp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = libwebp.modulemap; sourceTree = ""; }; + AFEDB749D90165E90B360880E2B0BF0F /* MAPolygonRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygonRenderer.h; path = MAMapKit.framework/Headers/MAPolygonRenderer.h; sourceTree = ""; }; + B01841AD7F4C16405F1596D4FC42C0B7 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; + B0191662DEAD607346CE2442458EEB17 /* IQTextView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextView.modulemap; sourceTree = ""; }; + B067C57685FF3EDC8CC9D9022087A8D5 /* OIMSearchParam.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSearchParam.m; path = OpenIMSDK/Model/OIMSearchParam.m; sourceTree = ""; }; + B0AB04C5B7E187EB649C48990318B217 /* SDCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCollectionViewCell.h; path = SDCycleScrollView/Lib/SDCycleScrollView/SDCollectionViewCell.h; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* SDWebImage */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDWebImage; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B0C85E19DE72AE17DD1F8E275523B4BF /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = ""; }; - B0E23FC914AC918A3812AD96D4739ED3 /* PhotoPreviewContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewContentView.swift; path = Sources/HXPHPicker/Picker/View/PhotoPreviewContentView.swift; sourceTree = ""; }; - B10210F7003D8FCDC58E9897BF8F9A7C /* YBIBCopywriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBCopywriter.m; path = YBImageBrowser/Helper/YBIBCopywriter.m; sourceTree = ""; }; - B13292BD10906E86B88551C19BEBC246 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - B13474C01D1C0B90896134215E5A5CEF /* AnimatableSectionModelType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatableSectionModelType.swift; path = Sources/Differentiator/AnimatableSectionModelType.swift; sourceTree = ""; }; - B15D37276FF9888DD3E00DD6F5196E38 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; - B194F603A90189ED3671958DAE609175 /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = ""; }; - B1B5154A7E3B2A7CADF24AE27A2BFB71 /* ValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueContainer.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueContainer.swift; sourceTree = ""; }; - B1D064A584F9C1427FDEFF411F0B5FE6 /* MAOfflineMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMap.h; path = MAMapKit.framework/Headers/MAOfflineMap.h; sourceTree = ""; }; - B2001A2C582FBBA94AF91ADD4B9931C5 /* BezierPathRoundExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BezierPathRoundExtension.swift; path = Sources/Private/Utility/Primitives/BezierPathRoundExtension.swift; sourceTree = ""; }; - B2156C5852C3ECAFFA155D714B6C5139 /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = ""; }; - B2377187B31347A650A1587E782382FA /* PassThroughOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PassThroughOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift; sourceTree = ""; }; - B239ED9649801435305F59AF6D6AE50A /* RxSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxSwift.modulemap; sourceTree = ""; }; - B23C3A2C524E46A832566B9E8F3565B5 /* OIMManager+Conversation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Conversation.m"; path = "OpenIMSDK/Interface/OIMManager+Conversation.m"; sourceTree = ""; }; - B2436D99B65B6A8D428A0B859116B860 /* ImageAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageAsset.swift; path = Sources/Private/Model/Assets/ImageAsset.swift; sourceTree = ""; }; - B244600AA2104B57BCCCA5F23E2F4613 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/RxCocoa/PrivacyInfo.xcprivacy; sourceTree = ""; }; - B256BABEEDB82B55BD4DFCE193D4745E /* not+RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "not+RxCocoa.swift"; path = "Source/RxCocoa/not+RxCocoa.swift"; sourceTree = ""; }; - B26E10D04B2569140F59199A5C55C891 /* PropertyWrappers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertyWrappers.swift; path = Sources/PropertyWrappers.swift; sourceTree = ""; }; - B27D930CCDFA0E100210ECA696F0A212 /* CompactMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompactMap.swift; path = RxSwift/Observables/CompactMap.swift; sourceTree = ""; }; - B281B08D41A8C1539780B8C2DCEDFBFB /* PickerConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PickerConfiguration.swift; sourceTree = ""; }; - B281FF7A2ADCDBC7ABCD018AE61A7C48 /* TransformLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformLayer.swift; path = Sources/Private/CoreAnimation/Layers/TransformLayer.swift; sourceTree = ""; }; - B29F79281A6FD2F1AB20A45A56FF699F /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = ""; }; - B2AFEC94AC3BE895818CC20EF1694D57 /* YBIBInteractionProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBInteractionProfile.h; path = YBImageBrowser/Image/YBIBInteractionProfile.h; sourceTree = ""; }; - B2CFD3CFB14AFD520EDB9E11593AF849 /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - B2FF70490B2E1F91F3313E405F04F864 /* YBIBImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageCache.m; path = YBImageBrowser/Image/YBIBImageCache.m; sourceTree = ""; }; - B30CA8E9E2F081102A0E466E3DBCA97C /* LocalAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalAsset.swift; path = Sources/HXPHPicker/Picker/Model/LocalAsset.swift; sourceTree = ""; }; + B10E608E3748FA5D17E35C221637F5CB /* distinct+RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "distinct+RxCocoa.swift"; path = "Source/RxCocoa/distinct+RxCocoa.swift"; sourceTree = ""; }; + B1840F6778BA7A0E6406875B5666EA43 /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = ""; }; + B1881949C33489CEE44FB1A8CE92D7EA /* OIMConversationInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMConversationInfo.h; path = OpenIMSDK/Model/OIMConversationInfo.h; sourceTree = ""; }; + B18F3A53A26839A8CEF0EACE96727E6B /* PhotoPickerControllerProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerControllerProtocol.swift; path = Sources/HXPHPicker/Picker/Controller/PhotoPickerControllerProtocol.swift; sourceTree = ""; }; + B19F630A272C257D405F9A149FBC4460 /* SDCycleScrollView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDCycleScrollView-prefix.pch"; sourceTree = ""; }; + B1A4FD8A8C9FBB2B4AE098AFCDEA027B /* IQTextView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.debug.xcconfig; sourceTree = ""; }; + B1A66C060BA472F214129D41D55863B9 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift"; sourceTree = ""; }; + B1B69283210E0A01B746270E17822A67 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = ""; }; + B1F10350695B3DDE24FB29DF4C930600 /* MGCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MGCDAsyncSocket.h; path = Source/GCD/MGCDAsyncSocket.h; sourceTree = ""; }; + B212767BD106E5330DDC1032B129ABEC /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; + B22FE5811BBCC2B3F4C41290E2AA14F9 /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; + B24AB5AFB6F42668409FB20FBF37EFE4 /* DictionaryInitializable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DictionaryInitializable.swift; path = Sources/Private/Model/DictionaryInitializable.swift; sourceTree = ""; }; + B26EFE7D0D803E3B328DE5A7C05B5F30 /* LanguageType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LanguageType.swift; path = Sources/HXPHPicker/Core/Model/LanguageType.swift; sourceTree = ""; }; + B2872DE8B11CC0C62C7F1B425BCBB585 /* AMapFoundation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapFoundation.debug.xcconfig; sourceTree = ""; }; + B29722D6230A4E399189B5B3E153D285 /* IQKeyboardReturnManager+UITextViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextViewDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextViewDelegate.swift"; sourceTree = ""; }; + B29CF7E5994BAA7457551E8424B43AD9 /* lottie-ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-prefix.pch"; sourceTree = ""; }; + B29D086F596B924BFC34C5571585AB8B /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = ""; }; + B2DF02A1C83FCAC61CE81BF9B51677AC /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; + B2E98E412F65A94B34FCD32839C494DA /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Core/Session.swift; sourceTree = ""; }; + B2ED4E571D3FD0B525785E5C9317CE6D /* YBIBImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageCache.h; path = YBImageBrowser/Image/YBIBImageCache.h; sourceTree = ""; }; + B2FB4A7A72FEED4EEC521EBD466AF52F /* YBIBImageLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageLayout.h; path = YBImageBrowser/Image/YBIBImageLayout.h; sourceTree = ""; }; + B300794F61F87BC9AE775592D972BEE3 /* KingfisherWebP-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KingfisherWebP-umbrella.h"; sourceTree = ""; }; B313762A2C974EF09CE7FBAC374B6DFD /* HXPHPicker */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = HXPHPicker; path = HXPHPicker.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B325C9D59F8810A27BA690853116611E /* AMapURLSearchConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchConfig.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchConfig.h; sourceTree = ""; }; - B32EBE3B8C04AA6B4171868801375329 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = ""; }; - B379B52189FCFD6923CABBB988EE366F /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - B37A3310A4C1CE6AF8477A9EDAF2E4A6 /* ShapeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeTransform.swift; path = Sources/Private/Model/ShapeItems/ShapeTransform.swift; sourceTree = ""; }; - B37C4EA7F5ED5F46E43C8DB7203FFA1E /* TextDocument.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextDocument.swift; path = Sources/Private/Model/Text/TextDocument.swift; sourceTree = ""; }; - B403F5A8513C8A0A4EEC0650F17063FB /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = ""; }; - B40DB95A74207D02BC12B70085297924 /* SwiftKeychainWrapper.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftKeychainWrapper.modulemap; sourceTree = ""; }; - B4181173D600C81E639DF5A03E52AEA2 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - B459F7B57FBA9C6D23791683C7E47BB8 /* MAHeatMapVectorGridOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlayRenderer.h; path = MAMapKit.framework/Headers/MAHeatMapVectorGridOverlayRenderer.h; sourceTree = ""; }; - B47068467C61A7C35C481F7855A87237 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = Sources/Map.swift; sourceTree = ""; }; - B48EB763FE80E2BD8D9862A3C005F9FC /* IQKeyboardAppearanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceConfiguration.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift; sourceTree = ""; }; - B496E0B79F00C67F9FFBDAA29BD68B37 /* Star.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Star.swift; path = Sources/Private/Model/ShapeItems/Star.swift; sourceTree = ""; }; + B335E945CD78406784CCA803F62F16F3 /* NSString+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+MJExtension.m"; path = "MJExtension/NSString+MJExtension.m"; sourceTree = ""; }; + B33EEB175BF64F2AE39B373015729BB3 /* UITableView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift"; sourceTree = ""; }; + B34D8164E363688D35D07DC9EFA7ECDF /* YBImageBrowserDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBImageBrowserDelegate.h; path = YBImageBrowser/Protocol/YBImageBrowserDelegate.h; sourceTree = ""; }; + B3514A7FBBF4EB30D7EC248635A87A74 /* FloatingPointType+IdentifiableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FloatingPointType+IdentifiableType.swift"; path = "Sources/RxDataSources/FloatingPointType+IdentifiableType.swift"; sourceTree = ""; }; + B35298093BE07EC18C02E752D449371D /* FrameConnect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FrameConnect.swift; path = Source/FrameConnect.swift; sourceTree = ""; }; + B35DAB47F413C69F7A5ACA58DFE60344 /* RoundedCornersNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RoundedCornersNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/RoundedCornersNode.swift; sourceTree = ""; }; + B36D5FDE715BA934BD34F8786C8DA5A5 /* AnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypath.swift; path = Sources/Public/DynamicProperties/AnimationKeypath.swift; sourceTree = ""; }; + B37E5F666720987BD19B13495B1D2AEC /* BezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BezierPath.swift; path = Sources/Private/Utility/Primitives/BezierPath.swift; sourceTree = ""; }; + B39413E51791A04479D1A4F3B3575E2E /* PickerInteractiveTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerInteractiveTransition.swift; path = Sources/HXPHPicker/Picker/Transition/PickerInteractiveTransition.swift; sourceTree = ""; }; + B39A92039C1C6E5A539881A3C30A3EFB /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; + B3C89B6D5952E42BDB087357BEDAAA88 /* CredentialsPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CredentialsPlugin.swift; path = Sources/Moya/Plugins/CredentialsPlugin.swift; sourceTree = ""; }; + B3E7BD37B3CED58C99075C4CAF81FBAA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextInputViewNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + B402B8425EBB730BFC58AEB36CC52226 /* TextAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimator.swift; path = Sources/Private/Model/Text/TextAnimator.swift; sourceTree = ""; }; + B413FF66AC5CD323A97820A94E4B199D /* MAHeatMapVectorGridOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlay.h; path = MAMapKit.framework/Headers/MAHeatMapVectorGridOverlay.h; sourceTree = ""; }; + B473F4F496BA450835903D12F8556484 /* YYImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YYImage-prefix.pch"; sourceTree = ""; }; + B4781B29919C35D2A949B67A8CA17D3F /* YBImageBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YBImageBrowser-dummy.m"; sourceTree = ""; }; + B479A2DD7E7DF27106FC6E8B4BCC9594 /* RxRelay.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.release.xcconfig; sourceTree = ""; }; + B4A3C63C58D795A774EE240C747B81E6 /* ConcurrentAtomic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentAtomic.swift; path = Source/utilities/ConcurrentAtomic.swift; sourceTree = ""; }; + B4A6881CF86D0AD130F065B392BA79E6 /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; B4B1A58096F15199A14069C5D6AA1C99 /* IQKeyboardToolbar */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardToolbar; path = IQKeyboardToolbar.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B4B1CC87B374C42556BACEDB70E5FEFA /* TagListView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TagListView-dummy.m"; sourceTree = ""; }; - B4C026C1C0C1FF7FEE5FF1768B7C1F9D /* ISOFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISOFormatter.swift; path = Sources/SwiftDate/Formatters/ISOFormatter.swift; sourceTree = ""; }; - B4C4498E7B172BF948777253F5FFCC9A /* PhotoPanGestureRecognizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPanGestureRecognizer.swift; path = Sources/HXPHPicker/Core/Model/PhotoPanGestureRecognizer.swift; sourceTree = ""; }; - B4E269F1764BE1BC501E09F81012012C /* ShapeLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeLayer.swift; path = Sources/Private/CoreAnimation/Layers/ShapeLayer.swift; sourceTree = ""; }; - B4EE7A0CB2B38A64ACC0428F57AEC7E8 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - B5190657508F7147ACBE8B04917D52D6 /* LRUCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LRUCache.swift; path = Sources/Private/EmbeddedLibraries/LRUCache/LRUCache.swift; sourceTree = ""; }; - B531F280DBAEF942F4FE6A28535EBE76 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbarManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - B538CBD104D8A06AE7A78D4BE98E50CE /* RxDataSources.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxDataSources.debug.xcconfig; sourceTree = ""; }; - B5400BB1D506451A1F627BEE91353F39 /* IQKeyboardManager+Resign_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign_Deprecated.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift"; sourceTree = ""; }; - B552EFCDA8BC74439CF19FF88D4BA03C /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - B555B1099D99D8615619FD3085B9D500 /* Popover-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Popover-dummy.m"; sourceTree = ""; }; - B56ACCB20DA9D768C32CE92ADE5257AB /* YBImageBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YBImageBrowser.release.xcconfig; sourceTree = ""; }; - B5A37D6C6DD50F2C36D62037BC7142EC /* Differentiator-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Differentiator-umbrella.h"; sourceTree = ""; }; - B5C77BBEF52E60A948A676A9BDB60109 /* UIApplication+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Rx.swift"; path = "RxCocoa/iOS/UIApplication+Rx.swift"; sourceTree = ""; }; - B60F33DE3FA740B4B9EE0AD8B0619BC0 /* DotNetParserFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotNetParserFormatter.swift; path = Sources/SwiftDate/Formatters/DotNetParserFormatter.swift; sourceTree = ""; }; - B613575929F9CDC08E3D012506899530 /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/PrimitiveSequence/Completable.swift; sourceTree = ""; }; - B620E23545E5CA00BFEFA93D97FBF1BE /* RxRelay-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-prefix.pch"; sourceTree = ""; }; - B6641FA3ACADA3576F1D309E21FC9447 /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = ""; }; - B6728F00D1736A5EA82B7A41A3FE632D /* URLNavigator.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = URLNavigator.modulemap; sourceTree = ""; }; - B68BC94B42D3E5F9AD397EA16BE5DD3A /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; - B68EA6BB85F8C760488A50BDCC241910 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; - B6C2FBB7FA150DD8D8F445CC781BF20D /* CompoundBezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompoundBezierPath.swift; path = Sources/Private/Utility/Primitives/CompoundBezierPath.swift; sourceTree = ""; }; - B6FF27B4385AF3373CEC3201BDC261F2 /* EditorStickerItemView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerItemView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerItemView.swift; sourceTree = ""; }; - B702621E70E249E80F3885815B6D43E0 /* CompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift; sourceTree = ""; }; - B707AC802004219EE1A38C0A808B3868 /* Popover.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Popover.release.xcconfig; sourceTree = ""; }; + B4CDE77BD401C132B20942F8B3CA92E7 /* ControlEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlEvent.swift; path = RxCocoa/Traits/ControlEvent.swift; sourceTree = ""; }; + B50687CF3F684AA051CA00760DB2F127 /* Differentiator-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Differentiator-prefix.pch"; sourceTree = ""; }; + B50D229B975056B637CE2A13B0263B07 /* ColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorExtension.swift; path = Sources/Private/Utility/Primitives/ColorExtension.swift; sourceTree = ""; }; + B5546FF2CD7193A96888BDF496E32BAB /* CocoaLumberjack-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaLumberjack-prefix.pch"; sourceTree = ""; }; + B575818A4B7E646C5F142DB98D4CD278 /* PreviewVideoViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewVideoViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PreviewVideoViewCell.swift; sourceTree = ""; }; + B576EDF7A86415CCC3E2A8821457526B /* AccessTokenPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AccessTokenPlugin.swift; path = Sources/Moya/Plugins/AccessTokenPlugin.swift; sourceTree = ""; }; + B581780208A80C4FB8291D723C00EFDB /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; + B583A8D3B15E63BC12FB32D1F96844FC /* TargetType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TargetType.swift; path = Sources/Moya/TargetType.swift; sourceTree = ""; }; + B58670AC2A6C221479AB2BFF0856B066 /* IQTextInputViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewNotification.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewNotification.swift; sourceTree = ""; }; + B5D2D3AE65A187B8FEF27AEA68252A80 /* MAOfflineItemMunicipality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemMunicipality.h; path = MAMapKit.framework/Headers/MAOfflineItemMunicipality.h; sourceTree = ""; }; + B5EDE4C54CCCF208B2D71DCB9FDB21C7 /* Keyframe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keyframe.swift; path = Sources/Public/Keyframes/Keyframe.swift; sourceTree = ""; }; + B652E29752B7E03ECA2EB9B62D3DB63A /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; + B68CF9A7198B8A74CD8CB8FDCDC2B8BC /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; + B6DF2C5453F49CAFE051B8FD6D17FCA4 /* Archive+Progress.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Progress.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Progress.swift"; sourceTree = ""; }; + B710990BD7BFF0A6D6E01A535C8AA8D1 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; B725F96A98CB22A783C643BB02401232 /* SGQRCode */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SGQRCode; path = SGQRCode.framework; sourceTree = BUILT_PRODUCTS_DIR; }; B72A389B0E6A6DD2F3D61F4DC7F84D83 /* Popover */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Popover; path = Popover.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B73102B73B599D035D7EDCACE5B41029 /* ResourceBundle-IQTextView-IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextView-IQTextView-Info.plist"; sourceTree = ""; }; + B72E217B485757193D8084079600E909 /* EditorStickerTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerTextView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerTextView.swift; sourceTree = ""; }; + B75E188BCF351E3AFA06D9B5C90A1DD1 /* Moya-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Moya-Info.plist"; sourceTree = ""; }; + B75F8EA27F5A661B3123631BB2649458 /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/Extensions/OperationQueue+Alamofire.swift"; sourceTree = ""; }; + B76508B90B02228B7DEA4C69F78B18D6 /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = ""; }; B7715718A7E1E513F9BC2E99B977FCA9 /* SwiftyUserDefaults */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftyUserDefaults; path = SwiftyUserDefaults.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B77B6CE440BB9382708B4A69C5FD7B41 /* NSObject+MJCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJCoding.m"; path = "MJExtension/NSObject+MJCoding.m"; sourceTree = ""; }; - B790DFF0E902BF9AE4692A51D0DFC77D /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/PrimitiveSequence/Single.swift; sourceTree = ""; }; - B7D3C9EA9DED95F21EDE81DBA946AD04 /* IQKeyboardNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardNotification.modulemap; sourceTree = ""; }; - B7DD4E4308B543CDB2A0B96FD8FD5AD5 /* YBImageBrowser.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = YBImageBrowser.bundle; path = YBImageBrowser/YBImageBrowser.bundle; sourceTree = ""; }; - B7E1ED39AAD946F41815380593F8080E /* IQKeyboardReturnManager+UITextViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextViewDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextViewDelegate.swift"; sourceTree = ""; }; - B7FD01CF991B2947E8743F34F758F00A /* UIView+IQKeyboardExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtension.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtension.swift"; sourceTree = ""; }; - B838E8CD32B3E7AF843A57E9E5C5B435 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - B8435CCF2311680F3ED5C6D68A7DB889 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = ""; }; - B84ED04EF6E738BEDF956904DC7E150E /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - B86E1E6F43F67612B84DE9E72FB2157C /* IQKeyboardExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardExtended.swift; path = IQKeyboardCore/Classes/IQKeyboardExtended.swift; sourceTree = ""; }; - B88D5DEAACE6FC226515037194E0A093 /* Archive+ReadingDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+ReadingDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+ReadingDeprecated.swift"; sourceTree = ""; }; - B893A474C858F5C4E36D48E3A0D8C038 /* AssociatedValues.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssociatedValues.swift; path = Sources/SwiftDate/Supports/AssociatedValues.swift; sourceTree = ""; }; - B8BB502A0A93569100EFA0D73E3A13AE /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = ""; }; - B8EA635F6E6ACFAAD23856120F08C7CD /* CustomLanguage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomLanguage.swift; path = Sources/HXPHPicker/Core/Model/CustomLanguage.swift; sourceTree = ""; }; + B772F4D6E7B2CD1919ABFF268D1694BE /* YBImageBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBImageBrowser.m; path = YBImageBrowser/YBImageBrowser.m; sourceTree = ""; }; + B773BB9FAC093187BA138848D154492E /* DateInRegion+Components.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Components.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Components.swift"; sourceTree = ""; }; + B77EF20CA7687CBA14FE0DDB7C8EBDC2 /* CocoaLumberjack.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CocoaLumberjack.modulemap; sourceTree = ""; }; + B7A25DB02EE751E6D01D050A5E7B3A93 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxRelay/Observable+Bind.swift"; sourceTree = ""; }; + B7B65555863ED958E7C15F4E036BDA4D /* RxDataSources-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxDataSources-prefix.pch"; sourceTree = ""; }; + B7C11EDE3B450C9942C6603E24661EF0 /* IQKeyboardReturnManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.release.xcconfig; sourceTree = ""; }; + B7D13E2DF65446BC4D8E7B407EAA0684 /* ShapeCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.swift; sourceTree = ""; }; + B7FBDEBE2C4E628598655B74A3137531 /* OIMManager+Group.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Group.h"; path = "OpenIMSDK/Interface/OIMManager+Group.h"; sourceTree = ""; }; + B81878181733515C615DB48F037DC03E /* DDLog+Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DDLog+Combine.swift"; path = "Sources/CocoaLumberjackSwift/DDLog+Combine.swift"; sourceTree = ""; }; + B85121EB950716DA0F583D20DABC268A /* YBIBSheetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBSheetView.m; path = YBImageBrowser/ToolView/YBIBSheetView.m; sourceTree = ""; }; + B85B00D192F8CAF5C187AE860E1B7101 /* MAMapSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapSnapshot.h; path = MAMapKit.framework/Headers/MAMapSnapshot.h; sourceTree = ""; }; + B87219E2EAC813A4BC04BD1792CFAEE4 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/Features/ResponseSerialization.swift; sourceTree = ""; }; + B89A1A86F8CF99FF82A13D16543577F3 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; + B8CF6B41020B1C18360CF68D29A37865 /* LottieConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieConfiguration.swift; path = Sources/Public/Configuration/LottieConfiguration.swift; sourceTree = ""; }; + B8DB1EBE506F258F6871BF5B3853F937 /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; + B8EC604002D3AACC61D5BDBC802F50D0 /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; + B8FA084404ADC4DAA8462C55C53C1E1B /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = ""; }; B9084FE779702931E8DF1D00A2D725FB /* ObjectMapper */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ObjectMapper; path = ObjectMapper.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B9394C0414AC1F9427C4E7C0BC1863ED /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - B96763E0F72C4F15536986714E73823B /* Entry+ZIP64.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Entry+ZIP64.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Entry+ZIP64.swift"; sourceTree = ""; }; - B96FFDF9BCAA248D1DC8C88267CED019 /* AccessTokenPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AccessTokenPlugin.swift; path = Sources/Moya/Plugins/AccessTokenPlugin.swift; sourceTree = ""; }; - B977BF3D227A0AC28B05CD102057BCC1 /* palette.c */ = {isa = PBXFileReference; includeInIndex = 1; name = palette.c; path = src/utils/palette.c; sourceTree = ""; }; - B9813C135DE125969EAF42F73CC20580 /* URLSession+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+Rx.swift"; path = "RxCocoa/Foundation/URLSession+Rx.swift"; sourceTree = ""; }; - B99344DA0C98D4C009A4E1AECCDF9459 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; - B9A7F9B1E648B27FC9190CFEA462392A /* TargetType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TargetType.swift; path = Sources/Moya/TargetType.swift; sourceTree = ""; }; - B9D4067406FA8209E984A168CBD3D6A7 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; + B92051DFD1B8964C84F2CCBDEA5D52B1 /* TestHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestHelpers.swift; path = Sources/Private/Utility/Debugging/TestHelpers.swift; sourceTree = ""; }; + B95B13BB8C7EC7678CC95F016E6DB9D2 /* DefaultsKeys.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsKeys.swift; path = Sources/DefaultsKeys.swift; sourceTree = ""; }; + B97AE06C4122280D4E7697B526A08475 /* VideoEditorCropViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorCropViewCell.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorCropViewCell.swift; sourceTree = ""; }; + B9825E98E044B068EC2375D6E98CF2F9 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; + B9891B991F8D7F282B6C175E77BE7D0E /* ItemEvents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemEvents.swift; path = RxCocoa/iOS/Events/ItemEvents.swift; sourceTree = ""; }; + B9A58617E989FFAC2B9D2EB8ED1B25C4 /* BezierPathRoundExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BezierPathRoundExtension.swift; path = Sources/Private/Utility/Primitives/BezierPathRoundExtension.swift; sourceTree = ""; }; B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "SnapKit-SnapKit_Privacy"; path = SnapKit_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - B9E550B72777FDD735DA970FB0A93766 /* MJFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJFoundation.m; path = MJExtension/MJFoundation.m; sourceTree = ""; }; - BA0C32A8612AFBDAB31E407FBDC7FC06 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; - BA124264AE4D19CCA7B7B57D21302619 /* OIMSearchResultInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSearchResultInfo.m; path = OpenIMSDK/Model/OIMSearchResultInfo.m; sourceTree = ""; }; - BA191322E165A18078EB558F6D18F31E /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - BA1C0686D3B77AFA9CF96045D8924FE4 /* IQKeyboardCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-prefix.pch"; sourceTree = ""; }; - BA806823EA6D7514C7FEFBA0844C8247 /* IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardNotification-Info.plist"; sourceTree = ""; }; - BA891B2995E55B127BCB278AF11B8B43 /* MABaseEngineOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MABaseEngineOverlay.h; path = MAMapKit.framework/Headers/MABaseEngineOverlay.h; sourceTree = ""; }; - BA8CD97A30916CD9C77856C59D4A8993 /* SwiftKeychainWrapper-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftKeychainWrapper-umbrella.h"; sourceTree = ""; }; - BA95F4A4BFFFE59FACF449B9D2D50CE3 /* UIScrollView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+Rx.swift"; path = "RxCocoa/iOS/UIScrollView+Rx.swift"; sourceTree = ""; }; - BAFDBAA1B3E4639B806A656741AAC875 /* CGPointExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CGPointExtension.swift; path = Sources/Private/Utility/Primitives/CGPointExtension.swift; sourceTree = ""; }; - BAFFADB6718043647FA05D94FD3860E7 /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = ""; }; - BB070EEA28E7CED98A5D3FBC546B2023 /* Combine.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Combine.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Combine.framework; sourceTree = DEVELOPER_DIR; }; - BB25DA3225ADD925FF448A1B0C1DB967 /* MAPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolylineRenderer.h; path = MAMapKit.framework/Headers/MAPolylineRenderer.h; sourceTree = ""; }; - BB26D67793EF0FF90678F9F98CE61847 /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = ""; }; - BB34224D13F0A6C900F251943BDB8520 /* InterpolatableExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InterpolatableExtensions.swift; path = Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift; sourceTree = ""; }; - BB38A21B400317176AA9BC8FFBF61A5E /* IQBarButtonItemConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItemConfiguration.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItemConfiguration.swift; sourceTree = ""; }; - BB3D3CAB8E5BB7D166549F00AB9C0C15 /* YBIBToastView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBToastView.h; path = YBImageBrowser/AuxiliaryView/YBIBToastView.h; sourceTree = ""; }; - BB3FD8C20C18627E7DFACF967A196E8D /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - BB4CCEF4612B6E93B18A7AB979A7B8E6 /* OIMUpdateFriendsReq.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMUpdateFriendsReq.m; path = OpenIMSDK/Model/OIMUpdateFriendsReq.m; sourceTree = ""; }; - BB7467BE133454D87B61A8895816C0A5 /* YYSpriteSheetImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYSpriteSheetImage.m; path = YYImage/YYSpriteSheetImage.m; sourceTree = ""; }; - BB8B31FB69DD6EE93331C2441B9893E8 /* ImageContentType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContentType.swift; path = Sources/HXPHPicker/Core/Model/ImageContentType.swift; sourceTree = ""; }; - BB941175FCDE56397887345BB6BCE206 /* SwiftDate.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftDate.modulemap; sourceTree = ""; }; + B9E6296C6B08253BA23FAA38899D184E /* UploadRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UploadRequest.swift; path = Source/Core/UploadRequest.swift; sourceTree = ""; }; + B9F0A16DB2718E87062DB18D1618AAAF /* Archive+MemoryFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+MemoryFile.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+MemoryFile.swift"; sourceTree = ""; }; + BA028C6C6E1A7001499331E6B38C01F9 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; + BA10D70D427E316E20ABE84F02DE485D /* CoreTextRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CoreTextRenderLayer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift; sourceTree = ""; }; + BA453413AE53C58DA619D0B966B41FC6 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + BA471A54694354CA0D84E2A452949610 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; + BA50CF2B5D2F41B255A98CBFC75EF571 /* OIMManager+Conversation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Conversation.m"; path = "OpenIMSDK/Interface/OIMManager+Conversation.m"; sourceTree = ""; }; + BA6D541DD91BB83D988956E0E46B9C27 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; + BA7C3B976B5FED44BFD89C3C0FBBE972 /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = ""; }; + BA81E3B3EDD71C5E60450FB07D07DC17 /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; + BAB6D3BA9EB2705C68DEC158FFD134AF /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = ""; }; + BAC22EE2D24B29FFE5B322BDA4188153 /* NavigatorProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NavigatorProtocol.swift; path = Sources/URLNavigator/NavigatorProtocol.swift; sourceTree = ""; }; + BAC4832233C2EAA5A0A324B4FECE605C /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + BAD8A328CB6EDF375064B5BEE7F65B87 /* SwiftLogLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwiftLogLevel.h; path = Sources/CocoaLumberjackSwiftSupport/include/CocoaLumberjackSwiftSupport/SwiftLogLevel.h; sourceTree = ""; }; + BAD9B38243361F92E1740F0543B8738C /* YBImageBrowser-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "YBImageBrowser-Info.plist"; sourceTree = ""; }; + BAE70D15CB0E723B27BCADCA5F142B7B /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Extensions/Result+Alamofire.swift"; sourceTree = ""; }; + BAF3240D5C6054FC9088F120BCC0AE61 /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = ""; }; + BB037BF10F9C4170C64093D37538877C /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; + BB176CC8A097D4E742BA5C362AB0B997 /* DDFileLogger+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DDFileLogger+Internal.h"; path = "Sources/CocoaLumberjack/DDFileLogger+Internal.h"; sourceTree = ""; }; + BB37EDCCBA41B0C9641257E086DC8ABF /* BehaviorsConfigurableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorsConfigurableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/BehaviorsConfigurableView.swift; sourceTree = ""; }; + BB93E38AD3C52061F96904FE8367EBB7 /* MAOfflineItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItem.h; path = MAMapKit.framework/Headers/MAOfflineItem.h; sourceTree = ""; }; BB97A63C05CB76B306A8275DF4A550B5 /* Pods-QuickLocation-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-QuickLocation-acknowledgements.markdown"; sourceTree = ""; }; - BBBC010B85BCBA9FA6908DE4D9348839 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; - BBC2244F81633A2E7E1CB28DD4AA64FA /* MAHeatMapVectorOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlayRender.h; path = MAMapKit.framework/Headers/MAHeatMapVectorOverlayRender.h; sourceTree = ""; }; - BBC4752255378F245AD160803FB5186D /* TakeWithPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWithPredicate.swift; path = RxSwift/Observables/TakeWithPredicate.swift; sourceTree = ""; }; - BBCDF59E6D69248934B4BC8F30930BBC /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - BBD10C64367048249EB3CCA3A4728FF2 /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = ""; }; - BBDC785D271CA5318A067B81436E8352 /* OIMFullUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMFullUserInfo.h; path = OpenIMSDK/Model/OIMFullUserInfo.h; sourceTree = ""; }; - BBF5747CA453C4BA37E67B413EF9E878 /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = ""; }; - BC30D019482F4221FF633E550DAC417D /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; + BB9927B03C2D0F7E7F9022B6EFF4C646 /* AssetManager+AVAssetExportSession.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+AVAssetExportSession.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+AVAssetExportSession.swift"; sourceTree = ""; }; + BB9E8F62AB5BBD697AAD9ED993626C03 /* PhotoPreviewViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewViewController.swift; path = Sources/HXPHPicker/Picker/Controller/PhotoPreviewViewController.swift; sourceTree = ""; }; + BBD2DB39097CEEE8679B416972A73C59 /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = ""; }; + BBEF8ABEDA5FDBA01511762EB65DD72A /* IQKeyboardNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.debug.xcconfig; sourceTree = ""; }; BC432FD48A5932251F1CAFBC4BF74894 /* RxCocoa */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RxCocoa; path = RxCocoa.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - BC43992A1CEA954A9FF7EAFBFE2123A5 /* unwrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = unwrap.swift; path = Source/RxSwift/unwrap.swift; sourceTree = ""; }; - BC6CFC68DC5E71DEF88306F0089B2448 /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Core/Session.swift; sourceTree = ""; }; - BC7E39CC063AB41D123D508DC96ED3C7 /* YYImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYImage.release.xcconfig; sourceTree = ""; }; - BC8B0B4D9A47EDA4FB888829AF560CD8 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - BC93400A9949AF32E23616180B0B6CDD /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxRelay/Observable+Bind.swift"; sourceTree = ""; }; - BCB8986ADEB13628FCBEE6A879989156 /* URLNavigator-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "URLNavigator-prefix.pch"; sourceTree = ""; }; - BD1690BEAF90622CE6B9A176205DB662 /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = ""; }; - BD30A03CDBD30EA947D04F11E53B9CCE /* NSObject+MJClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJClass.m"; path = "MJExtension/NSObject+MJClass.m"; sourceTree = ""; }; - BD4119C293858086ECD9A8866275C5A9 /* URLConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLConvertible.swift; path = Sources/URLMatcher/URLConvertible.swift; sourceTree = ""; }; - BD427A1EF10A746C4A553BB183FB8A67 /* MAMapSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapSnapshot.h; path = MAMapKit.framework/Headers/MAMapSnapshot.h; sourceTree = ""; }; - BD4667C302EAFF74DF30B4071AAC48CA /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; - BD4ADD434EFB26616EA32E6982267301 /* CLIColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLIColor.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/CLIColor.h; sourceTree = ""; }; - BD65B01FFFE710531CEAB6814557AA61 /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = ""; }; - BD766BEEA3CB87371EF37EDE094330B4 /* OpacityAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OpacityAnimation.swift; path = Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift; sourceTree = ""; }; - BD860D73C4D35821C2B060BD58768183 /* OIMVideoElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMVideoElem.h; path = OpenIMSDK/Model/OIMVideoElem.h; sourceTree = ""; }; - BD95EF9454E3F53ABDBC35194ED025C5 /* DownloadRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadRequest.swift; path = Source/Core/DownloadRequest.swift; sourceTree = ""; }; - BDB33574F45BE6091CBD60487B6B9FAC /* lottie-ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.debug.xcconfig"; sourceTree = ""; }; - BDE3C415D49D9DBEE2D6B0B692F711A8 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; - BE1897BB0C9F910694FC61F30214A0EE /* YYImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "YYImage-Info.plist"; sourceTree = ""; }; - BE2AE28AB42D6BB69AEC9E7501336749 /* RequestTypeWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTypeWrapper.swift; path = Sources/Moya/RequestTypeWrapper.swift; sourceTree = ""; }; - BE5939CE0FDBDC6B3C62814EA03E1F30 /* Binding+Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Binding+Map.swift"; path = "Sources/Private/Utility/Helpers/Binding+Map.swift"; sourceTree = ""; }; - BE68E3C8423A0C2B3B2F147C351569BD /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - BE6F22872D0C90A564CE9655853DB065 /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = ""; }; - BE7291A0D9ED471F9754D1FD9D58F0F4 /* IQKeyboardManager+ActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ActiveConfiguration.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift"; sourceTree = ""; }; - BE7DEA50FF25BDE8F47C9A4C55418AD1 /* String+SHA256.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+SHA256.swift"; path = "Sources/Utility/String+SHA256.swift"; sourceTree = ""; }; - BE9BA9868608B0F72E0F1A2BCFA4CD6D /* CredentialsPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CredentialsPlugin.swift; path = Sources/Moya/Plugins/CredentialsPlugin.swift; sourceTree = ""; }; - BEB9AB80392ECE7248709873DCA13FCC /* Marker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Marker.swift; path = Sources/Private/Model/Objects/Marker.swift; sourceTree = ""; }; - BECB67C4910C284EF8C311E0AF7A187D /* RxCocoa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.release.xcconfig; sourceTree = ""; }; - BED7A2A6B98402F4898A2ED5031C9DD6 /* AnimatedSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedSwitch.swift; path = Sources/Public/Controls/AnimatedSwitch.swift; sourceTree = ""; }; - BEFCC919734F12F29D14D4BC157695AB /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/Core/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; - BF0E479511C18ADD53E88F03961CB9F1 /* OIMLocationElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMLocationElem.h; path = OpenIMSDK/Model/OIMLocationElem.h; sourceTree = ""; }; - BF160B94684907A47F9B8E3E019F60FF /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbar/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - BF41EFA1EAF19A24E823D999541E1D14 /* TextCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift; sourceTree = ""; }; - BF48EC27DD64ECC464ACB1471E51E2EB /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; - BF59DBF677935AFE11100B7BA87711D0 /* PreviewPhotoViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewPhotoViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PreviewPhotoViewCell.swift; sourceTree = ""; }; - BF62A78FF66483CF7EB197B4BC26ADDF /* YBImageBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YBImageBrowser.debug.xcconfig; sourceTree = ""; }; - BF79B8AE2F9CE0C811A464A737EDAD5A /* MAOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlay.h; path = MAMapKit.framework/Headers/MAOverlay.h; sourceTree = ""; }; - BFA6FD03C778C0B691600FE0A831EB76 /* ObjectMapper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ObjectMapper.release.xcconfig; sourceTree = ""; }; - BFBF528C9DC2F22EF9166D52B4955E30 /* OpenIMSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenIMSDK.release.xcconfig; sourceTree = ""; }; - BFCCD0770B0B62C74DEABE252BBED5F0 /* Popover.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Popover.modulemap; sourceTree = ""; }; - BFEAA4C469AAC85BB62868EA0E706D5F /* CompatibleAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationView.swift; path = Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift; sourceTree = ""; }; - C008E791217FF7AE2284DE4ED33D82DC /* CropConfirmViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CropConfirmViewConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/CropConfirmViewConfiguration.swift; sourceTree = ""; }; - C0242CA8AEDD877040E56C254660FC43 /* ColorValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift; sourceTree = ""; }; - C028AA7709CA95FD821510CA4D1F151B /* AlipaySDK.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = ""; }; - C02CFAD272BDBFF03F29BA64096B6F3F /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; - C08DCD50DDA4F71C414AA7077CC96A96 /* UITabBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBar+Rx.swift"; path = "RxCocoa/iOS/UITabBar+Rx.swift"; sourceTree = ""; }; - C09B6CDED61FA0453ED2ADB6EA524148 /* ResourceBundle-Privacy-ObjectMapper-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Privacy-ObjectMapper-Info.plist"; sourceTree = ""; }; - C0F9D43170F9BCCB6D568800C5992073 /* YBImageBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YBImageBrowser-prefix.pch"; sourceTree = ""; }; - C107644E8F1B43B9190403B7575902BF /* curry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = curry.swift; path = Source/Tools/curry.swift; sourceTree = ""; }; - C117CFE5F649547894B19490E91DC335 /* IQKeyboardCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardCore.modulemap; sourceTree = ""; }; - C130B750A15BEC82321EE1FB7C52C2EE /* EditorToolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorToolView.swift; path = Sources/HXPHPicker/Editor/View/EditorToolView.swift; sourceTree = ""; }; - C13189BB9C5B978BC239E0FC3A946821 /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = ""; }; - C13D413FA74ACD184F48EEECDAF835AF /* PreviewViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewViewConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PreviewViewConfiguration.swift; sourceTree = ""; }; - C13FACFBC79FA95702703916C3A64ECF /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = ""; }; - C148AA1C2819A5B7DEAC0ECF49DDB109 /* EditorImageResizerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorImageResizerView.swift; path = Sources/HXPHPicker/Editor/View/Photo/EditorImageResizerView.swift; sourceTree = ""; }; - C14B726FB27D2B21A55B33ADEC4ECFB9 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - C17C21B8184E139AF017777649C7942C /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; - C184E760724FA58B37DE2A4F77BFEFDC /* DotLottieConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieConfiguration.swift; path = Sources/Public/DotLottie/DotLottieConfiguration.swift; sourceTree = ""; }; - C18AEDBF31CB2572AB07F8722E0870F3 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; - C19DD6665A13D1B7549BC7D51C85D9EF /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = ""; }; - C1B302C4A61CD77057994883E8AE64C5 /* YYSpriteSheetImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYSpriteSheetImage.h; path = YYImage/YYSpriteSheetImage.h; sourceTree = ""; }; - C1C0FD80E79D2926FDECD4C655DF8167 /* MarqueeLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MarqueeLabel-Info.plist"; sourceTree = ""; }; - C1C36DF3BE0882BE0A7E5CD447CBEF2B /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = ""; }; - C218ADBB9ED9BCB5794960F550704D52 /* IQKeyboardToolbarConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConfiguration.swift; path = IQKeyboardToolbarManager/Classes/Configuration/IQKeyboardToolbarConfiguration.swift; sourceTree = ""; }; + BC58BA55D7533F2245DB9FE3327E7353 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; + BC82B7E9975E6980600CDB79F602BDD8 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; + BCBA512CDD9A14E3AE8881732D0ECCF6 /* OIMPictureElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMPictureElem.m; path = OpenIMSDK/Model/OIMPictureElem.m; sourceTree = ""; }; + BCC5AC3823AF1F18738C22FBEA8154BF /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; + BCFAA6E3673F32D9D944D7DD589746D5 /* AlipaySDK-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AlipaySDK-iOS.debug.xcconfig"; sourceTree = ""; }; + BD344724CF8CFF05B4EC629141908CFD /* NSObject+MJCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJCoding.m"; path = "MJExtension/NSObject+MJCoding.m"; sourceTree = ""; }; + BD5055592BE65B1AFCBD850A79CCC6B5 /* KingfisherWebP.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KingfisherWebP.debug.xcconfig; sourceTree = ""; }; + BD5A142B20B08F85DF4E255309581669 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; + BDE09D4F498218C6D85FACE5AF9F3203 /* Binding+Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Binding+Map.swift"; path = "Sources/Private/Utility/Helpers/Binding+Map.swift"; sourceTree = ""; }; + BDE8A491D26688B79C66157CE598DB67 /* AlipaySDK.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = ""; }; + BDE8C8E66FA082F46F1643FAC6D3F43D /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + BDF903CC6F915E514FBF685B2291C574 /* RxSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.debug.xcconfig; sourceTree = ""; }; + BE2396AEB28B21E7D7963F4E67D9B1F9 /* OpenIMSDKCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenIMSDKCore.release.xcconfig; sourceTree = ""; }; + BE2B71D301E15E6410F723894618F8B2 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + BE3AC6EFED534E56B45FDD982333FDED /* PreviewVideoControlViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewVideoControlViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PreviewVideoControlViewCell.swift; sourceTree = ""; }; + BE64907BB7CB5497C4B31C6437EA2231 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + BEBE1953B540829D2FA2A81822E200CA /* YBIBCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBCollectionView.h; path = YBImageBrowser/Base/YBIBCollectionView.h; sourceTree = ""; }; + BEDC7B7D5DFCC3D589C9258A53C79C1A /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = ""; }; + BF134D80E9619348A65BBB751BB70BBF /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQTextView/Classes/IQTextView.swift; sourceTree = ""; }; + BF32372FBC1D4CEB416B12E4E4D35483 /* IQTextInputViewNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-umbrella.h"; sourceTree = ""; }; + BF48C90544457D818A3293740E7D49D8 /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = ""; }; + BF86B2932209BF72B21D027CCB3D5BE2 /* OIMManager+User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+User.h"; path = "OpenIMSDK/Interface/OIMManager+User.h"; sourceTree = ""; }; + BFA1464237676D38F4BF5A57D9F5A55D /* IQKeyboardToolbarManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Debug.swift"; path = "IQKeyboardToolbarManager/Classes/Debug/IQKeyboardToolbarManager+Debug.swift"; sourceTree = ""; }; + BFA50E72BEA63413CB9C0B4CC48F4F7A /* EditorToolViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorToolViewConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/EditorToolViewConfiguration.swift; sourceTree = ""; }; + BFC9B638004387C6C5A45619A8A5B2E6 /* RxCollectionViewSectionedAnimatedDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewSectionedAnimatedDataSource.swift; path = Sources/RxDataSources/RxCollectionViewSectionedAnimatedDataSource.swift; sourceTree = ""; }; + BFDDE473595828D6E2632E61085FBD8B /* WebPProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebPProcessor.swift; path = Sources/WebPProcessor.swift; sourceTree = ""; }; + BFE309F25629521A4C37547AB03DD967 /* YBIBImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBImageCell.h; path = YBImageBrowser/Image/YBIBImageCell.h; sourceTree = ""; }; + BFFFBA599610B03A82906A883745C95A /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; + C044C8F399ACA5B2EE61EF53158B478D /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; + C05D0791B25960724D44549980AD74B1 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; + C05DB1794BBBFB16B8EA48C125B1579E /* WechatOpenSDK-XCFramework.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "WechatOpenSDK-XCFramework.debug.xcconfig"; sourceTree = ""; }; + C066FC22BEEDC8272BC2A1BB6454B72F /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = ""; }; + C068E1B38BFB93E75CB74A95D3FAC3A4 /* IQKeyboardAppearanceManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceManager.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift; sourceTree = ""; }; + C093540FF30E4F3FC0F5546E3FA8958C /* FramePubComp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FramePubComp.swift; path = Source/FramePubComp.swift; sourceTree = ""; }; + C09DA885DD15FA8B7964193BE291C702 /* AlipaySDK-iOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "AlipaySDK-iOS-xcframeworks.sh"; sourceTree = ""; }; + C0A885057A11B51887D16E84D82AF7A6 /* OIMMessageElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMMessageElem.m; path = OpenIMSDK/Model/OIMMessageElem.m; sourceTree = ""; }; + C0AC41EA6D004745BAE6C7B3339BADDD /* GradientStrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift; sourceTree = ""; }; + C0BB4CBF6048C1CFAA8CF2FA39D85DDA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Source/SwiftyJSON/PrivacyInfo.xcprivacy; sourceTree = ""; }; + C0CD73578573AF5AD46B0F08EBEDF1A5 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Accelerate.framework; sourceTree = DEVELOPER_DIR; }; + C0E35192C63708E12595F0EDB4626CC1 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; + C0F45767D09215F572F8D80F01EB8628 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; + C10122837DEED57398C463CC0F8E4EB4 /* VideoEditorFrameMaskView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorFrameMaskView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorFrameMaskView.swift; sourceTree = ""; }; + C12787613C350ACAA6E34E28788B71EF /* SectionedViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedViewDataSourceType.swift; path = RxCocoa/Common/SectionedViewDataSourceType.swift; sourceTree = ""; }; + C1AF925CB18B9B0B703C6F5CA5025160 /* MultiTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultiTarget.swift; path = Sources/Moya/MultiTarget.swift; sourceTree = ""; }; + C1B656B97F0E6F92AF27F46991440302 /* MJPropertyKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyKey.m; path = MJExtension/MJPropertyKey.m; sourceTree = ""; }; + C1D497158B767F77BFA5E0748C677F85 /* UIGestureRecognizer+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIGestureRecognizer+Rx.swift"; path = "RxCocoa/iOS/UIGestureRecognizer+Rx.swift"; sourceTree = ""; }; + C214635901487ED70CD287E8BC4AEC74 /* TextLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextLayerModel.swift; path = Sources/Private/Model/Layers/TextLayerModel.swift; sourceTree = ""; }; + C21C4FBD6D82FAF123B6FD4221EEC000 /* AlbumTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleView.swift; path = Sources/HXPHPicker/Picker/View/AlbumTitleView.swift; sourceTree = ""; }; + C224AC4EDC0D96C8B5598D7A2323510D /* DropShadowAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowAnimation.swift; path = Sources/Private/CoreAnimation/Animations/DropShadowAnimation.swift; sourceTree = ""; }; + C258350AE25DA6A17D93C6E9D2CF991C /* RxTabBarControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift; sourceTree = ""; }; + C25E233CFC387CA4A006D4D00CDBB57A /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; C261436D14052AE3C35F240BCD155CAC /* CocoaLumberjack */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CocoaLumberjack; path = CocoaLumberjack.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C2874A5748A76E6FF8D240C980346F2D /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; + C27A10A9A647A42B2B5BE3F24C1D6BB6 /* YBIBToolViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBToolViewHandler.m; path = YBImageBrowser/ToolView/YBIBToolViewHandler.m; sourceTree = ""; }; C298ABB78D9B05529B89D8322DB2E7B0 /* Kingfisher-Kingfisher */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Kingfisher-Kingfisher"; path = Kingfisher.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C2AC64CAFEB6D49E57D7FAA016865BC3 /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = ""; }; - C2E26E78C920199D48C95A6E28FC1791 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; - C2EBA132392950FF3765D57D57796814 /* sharpyuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv.h; path = sharpyuv/sharpyuv.h; sourceTree = ""; }; - C2EBF1ACC8534A22F5BE37FAAD051863 /* MJExtensionConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtensionConst.h; path = MJExtension/MJExtensionConst.h; sourceTree = ""; }; - C2F7D06A790CB3DE1726D6C0C304807A /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = ""; }; - C2FF16D1D087D591C2B162AEF8018694 /* URLPathComponent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLPathComponent.swift; path = Sources/URLMatcher/URLPathComponent.swift; sourceTree = ""; }; - C30ECEB47A30F096C7A11DAFC977D503 /* LanguageType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LanguageType.swift; path = Sources/HXPHPicker/Core/Model/LanguageType.swift; sourceTree = ""; }; - C339600B8575DE34AFEDE149E0B30136 /* IQKeyboardManager+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift"; sourceTree = ""; }; + C2ACDB20B7A0F28B516DC1D2EC6212E5 /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = ""; }; + C30C54F5FE080C171CB0A8068F86BE2F /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; + C31A05C7D26DBD0A551AA3C91D73FEFF /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = ""; }; + C34E1FC5A28BDD54E39AB0B3CD4FE159 /* DDLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDLog.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDLog.h; sourceTree = ""; }; + C36DE6C3FC332032CD0B60D0BDA7563D /* ViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewType.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ViewType.swift; sourceTree = ""; }; C37C1FFDD7934BF1E8E952DAFD1B42B2 /* Pods-QuickLocation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-QuickLocation-Info.plist"; sourceTree = ""; }; - C3DC42E9BB7BC32F274FCDB40EC61371 /* _RXKVOObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXKVOObserver.m; path = RxCocoa/Runtime/_RXKVOObserver.m; sourceTree = ""; }; - C3F217B8362CC3E3556A8BBDC8F0693C /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + C37E9B0A2752CD48FC43FABF09C7B745 /* StarAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StarAnimation.swift; path = Sources/Private/CoreAnimation/Animations/StarAnimation.swift; sourceTree = ""; }; + C38CCEC48E7F25EFD8909A52CAA8602B /* YYImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYImageCoder.h; path = YYImage/YYImageCoder.h; sourceTree = ""; }; + C39880C40AAAAD747B9A62379A5A895B /* IQKeyboardToolbarManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Deprecated.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Deprecated.swift"; sourceTree = ""; }; + C39C724CC87492EDAFC684B436DBC2CF /* SwiftyUserDefaults.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftyUserDefaults.modulemap; sourceTree = ""; }; + C3A73710E2C0578C6A953780E42AD303 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; sourceTree = ""; }; + C3DE50759EFD988D04743C79471C7618 /* PublishRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishRelay.swift; path = RxRelay/PublishRelay.swift; sourceTree = ""; }; + C3F1699EBCB271D06621D975F6663A0E /* IQKeyboardExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardExtended.swift; path = IQKeyboardCore/Classes/IQKeyboardExtended.swift; sourceTree = ""; }; + C3F1B8BD2825588EB74675386BF2CB44 /* PhotoListCameraCellConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoListCameraCellConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PhotoListCameraCellConfiguration.swift; sourceTree = ""; }; C3F44C782D64D7EB20B61CE3844EBFAD /* Kingfisher */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Kingfisher; path = Kingfisher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C3FC533DE5E471CA767990817D462FD9 /* MarqueeLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MarqueeLabel-prefix.pch"; sourceTree = ""; }; - C40F5AA4F27B5CB9A27F0ACE39DCE988 /* GroupNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift; sourceTree = ""; }; - C40FD0E6009B44B34D4CA91F002AD958 /* UIViewControllerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIViewControllerType.swift; path = Sources/URLNavigator/UIViewControllerType.swift; sourceTree = ""; }; - C4153E009B13E648D368E7C4DE7737F2 /* MAMultiPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPolyline.h; path = MAMapKit.framework/Headers/MAMultiPolyline.h; sourceTree = ""; }; - C42E84DD790B283F0D5185499E7E6716 /* Utilities.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utilities.swift; path = Sources/Differentiator/Utilities.swift; sourceTree = ""; }; - C4B4AB0B79C4A577880AC965914ABDBB /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = ""; }; - C4C753919F581AE643532B0D59A3E5D3 /* Transform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Transform.swift; path = Sources/Private/Model/Objects/Transform.swift; sourceTree = ""; }; - C4D0E6975AA68BF82B50479B31188714 /* Core+UIImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIImageView.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIImageView.swift"; sourceTree = ""; }; - C4E134D68D9A3EA6BAA45CBBF86E6282 /* AMapFoundationConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationConst.h; path = AMapFoundationKit.framework/Headers/AMapFoundationConst.h; sourceTree = ""; }; - C5033298D1CA93A7865AE65144ECEDB7 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; - C508E91145FD5398716837106BE87EED /* RxSearchBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift; sourceTree = ""; }; - C53081C00C8A2D5E4DDB3C986037310A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Source/PrivacyInfo.xcprivacy; sourceTree = ""; }; - C559E1C6589C2C4D9F94A887A6257ACE /* AlipaySDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = AlipaySDK.xcframework; sourceTree = ""; }; - C592FF44021E880C95CFE088D4C80A27 /* VectorsExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VectorsExtensions.swift; path = Sources/Private/Utility/Primitives/VectorsExtensions.swift; sourceTree = ""; }; - C59EC7A1C6159115643B175BCBF65033 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; - C5A5182C75AEAD0F757530B825BB3DA6 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManagerDeprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift"; sourceTree = ""; }; - C5B7E713872D1FF5E662E3E0EA2B6505 /* YBIBVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoView.h; path = Video/YBIBVideoView.h; sourceTree = ""; }; - C5E097351E3CA0442F19440EBE19E5E6 /* Core+UIImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIImage.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIImage.swift"; sourceTree = ""; }; - C5E3669AB59288D37DDEF78C1D1789C8 /* SGQRCodeLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGQRCodeLog.h; path = SGQRCode/SGQRCodeLog.h; sourceTree = ""; }; - C61CA1E7129FC9BB178D8C730B3B5A79 /* FillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift; sourceTree = ""; }; - C62129F292FE4AAAD3B0854D292C8412 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; - C65141CFE1CE7172EBF4F892518DA710 /* AMapURLSearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearch.h; path = AMapFoundationKit.framework/Headers/AMapURLSearch.h; sourceTree = ""; }; - C664CD013CBAA23F9525F2EC6C50AC09 /* LottieViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieViewType.swift; path = Sources/Public/Controls/LottieViewType.swift; sourceTree = ""; }; - C669EF21008A80A60B3840300815827B /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; - C6E757F10F5FAFFFD8D5AE70FEDE7FBE /* MAArc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArc.h; path = MAMapKit.framework/Headers/MAArc.h; sourceTree = ""; }; - C6EED8EF1941D023328AEA4B21A95EFF /* IQTextInputViewNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.release.xcconfig; sourceTree = ""; }; - C6F4420A9FB2F691DC1A5C98FBAD4EB4 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; - C7047394005D22EF48C06D0F8CD2813B /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = ""; }; - C70AB659BC6BC3C3EF51AB32BBF7BD2E /* IQKeyboardToolbarManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Deprecated.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Deprecated.swift"; sourceTree = ""; }; - C71982C9D407CCE05012DF8D73A62516 /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = ""; }; - C727B0032405B20871145670E76F6A35 /* IQTextInputViewInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfo.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewInfo.swift; sourceTree = ""; }; - C77D66DCCBD20AA11966F53C867FF4FB /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Accelerate.framework; sourceTree = DEVELOPER_DIR; }; - C78AE96DEEB3AE3D220D176418FF4438 /* RxTableViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift; sourceTree = ""; }; - C7B41E31317DB329D97E70B6AE1B3AAC /* YBIBScreenRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBScreenRotationHandler.m; path = YBImageBrowser/Base/YBIBScreenRotationHandler.m; sourceTree = ""; }; - C7FE6109F51AB7D33301A8EC635FFAA0 /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Moya/Image.swift; sourceTree = ""; }; - C803D3D90266F99C8F0394B468092649 /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; - C80AE828EC151DD45CDE7E73BB5017A3 /* AMapSearchObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchObj.h; path = AMapSearchKit.framework/Headers/AMapSearchObj.h; sourceTree = ""; }; - C816BC11F808237533A304258E6B9519 /* MJExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJExtension-dummy.m"; sourceTree = ""; }; - C8317EDB1958C164EFD8B633A18F397F /* SGSoundEffect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGSoundEffect.m; path = SGQRCode/SoundEffect/SGSoundEffect.m; sourceTree = ""; }; - C858A960686949F3A01BB1D7772ED340 /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Kingfisher-Kingfisher-Info.plist"; sourceTree = ""; }; - C871A85DF5F63890D0CDE0EB704B3560 /* YBImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBImage.h; path = YBImageBrowser/Image/YBImage.h; sourceTree = ""; }; - C88A87AA6AF553A2EB67FF48CC974717 /* RxTabBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift; sourceTree = ""; }; - C8ACFECE5109B41E1551D2BB7FA2F9FE /* MAOverlayPathRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayPathRenderer.h; path = MAMapKit.framework/Headers/MAOverlayPathRenderer.h; sourceTree = ""; }; - C8AD3E343425805782DD3A683C4AB359 /* RxSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-umbrella.h"; sourceTree = ""; }; - C8F3F7FD348306025BE447B96E130A74 /* DefaultAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultAnimationCache.swift; path = Sources/Public/AnimationCache/DefaultAnimationCache.swift; sourceTree = ""; }; - C8FC5D8D4CAD082AFDF06500203F157F /* VideoEditResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditResult.swift; path = Sources/HXPHPicker/Editor/VideoEditResult.swift; sourceTree = ""; }; - C90B489DE950DD12FC8930AC3EAFE6AB /* CocoaLumberjack-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaLumberjack-umbrella.h"; sourceTree = ""; }; - C90C40D569DD82664EC7B02F8B760153 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/Core/ParameterEncoding.swift; sourceTree = ""; }; - C90D4DF6532EC599263E6EAF62E3B481 /* YBIBOperateBrowserProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBOperateBrowserProtocol.h; path = YBImageBrowser/Protocol/YBIBOperateBrowserProtocol.h; sourceTree = ""; }; - C961DD0E63F5AF416C1B3514F9AEBF47 /* OIMNotificationElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMNotificationElem.h; path = OpenIMSDK/Model/OIMNotificationElem.h; sourceTree = ""; }; - C966D75070D79B9D443364A819C0C3F2 /* SGQRCode.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SGQRCode.bundle; path = SGQRCode/SGQRCode.bundle; sourceTree = ""; }; - C96FCAF290E620B33506E5F6F3F26719 /* IQKeyboardToolbarManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.release.xcconfig; sourceTree = ""; }; - C9889E1671FA4909135510BCB410874E /* AnimatorNodeDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNodeDebugging.swift; path = Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift; sourceTree = ""; }; - C9A10F0B9F0023A1C363E7C4517DDDBD /* YYImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYImageCoder.h; path = YYImage/YYImageCoder.h; sourceTree = ""; }; - C9DCB3383235EDBA4F3C971A96B27409 /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; - CA1147DBAED55DD02A850E00497B92DB /* EpoxyableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/EpoxyableView.swift; sourceTree = ""; }; - CA4B9D8BFF9CF3F65AD2916D9197DF2E /* PickerResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerResult.swift; path = Sources/HXPHPicker/Picker/PickerResult.swift; sourceTree = ""; }; - CAA1AA03A70AEA0C5A111D92FB984179 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - CAAF2B1865A817D3B34BE0FED63702E8 /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = ""; }; - CAC75994F054E5C98A812D17C7527B6E /* ControlProperty+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlProperty+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlProperty+Driver.swift"; sourceTree = ""; }; - CACA5F91164444FD018604161211CEC8 /* StyleIDProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyleIDProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/StyleIDProviding.swift; sourceTree = ""; }; - CACB3BCA3DB641C9B591E625330BA336 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - CAD52A080AAEE8A81783F36FB0CFFCE0 /* PhotoAsset+Codable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoAsset+Codable.swift"; path = "Sources/HXPHPicker/Picker/Model/PhotoAsset+Codable.swift"; sourceTree = ""; }; - CAE3B4042285FE77961E90A1CFBB8D5B /* DDContextFilterLogFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDContextFilterLogFormatter.m; path = Sources/CocoaLumberjack/Extensions/DDContextFilterLogFormatter.m; sourceTree = ""; }; - CAE7582B7C4BC8106041A1A832420987 /* EllipseNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EllipseNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift; sourceTree = ""; }; - CB04A3F038AB5357DF6579E119AC574D /* DDFileLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDFileLogger.m; path = Sources/CocoaLumberjack/DDFileLogger.m; sourceTree = ""; }; - CB06F3844E78B224186730DD60CA0865 /* RxTableViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift; sourceTree = ""; }; - CB11F69CDAC50ABF5A1340AA052D39B4 /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; - CB1D91FC1AD6D99D86E78F301E3C0948 /* UIScrollView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; - CB4260D2F04BDE7B69E9332D05E23C54 /* YBImageBrowserVideo.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = YBImageBrowserVideo.bundle; path = Video/YBImageBrowserVideo.bundle; sourceTree = ""; }; - CB5268316387EAF511FE3FDA946F4C23 /* OIMFriendApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMFriendApplication.m; path = OpenIMSDK/Model/OIMFriendApplication.m; sourceTree = ""; }; - CB58640348852BF733D2F0BD5379DDE5 /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; - CB5ED48D1C2FEE6F9B6572BC3DC8D105 /* YBIBSheetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBSheetView.h; path = YBImageBrowser/ToolView/YBIBSheetView.h; sourceTree = ""; }; - CB5F439F4729CFD04024FF05BCA74AE0 /* sharpyuv_cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_cpu.c; path = sharpyuv/sharpyuv_cpu.c; sourceTree = ""; }; - CB6180AA64A729F29163E3E4DA72B8DA /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; - CB74ADFB0BA860873B5973342495B456 /* ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist"; sourceTree = ""; }; - CB7FF1E8200FEA7E67B104C8495FFCE9 /* AMapSearchKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchKit.h; path = AMapSearchKit.framework/Headers/AMapSearchKit.h; sourceTree = ""; }; - CB8D8C5604011BB605F1D1874F011C0E /* YBIBToastView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBToastView.m; path = YBImageBrowser/AuxiliaryView/YBIBToastView.m; sourceTree = ""; }; - CB9679AFC8A1A93C637AD8DA4B2A103C /* YBImageBrowser+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBImageBrowser+Internal.h"; path = "YBImageBrowser/Base/YBImageBrowser+Internal.h"; sourceTree = ""; }; - CB9C1CC0C5611BE2E3A59B48E0E6260A /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/Features/MultipartFormData.swift; sourceTree = ""; }; - CBAAAB6F1E8977B72F66A0CD9B335B76 /* DefaultsAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsAdapter.swift; path = Sources/DefaultsAdapter.swift; sourceTree = ""; }; - CBBF1F672E38253186ECF2C0972D5FC1 /* PHLivePhotoView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PHLivePhotoView+Kingfisher.swift"; path = "Sources/Extensions/PHLivePhotoView+Kingfisher.swift"; sourceTree = ""; }; - CBBFEC0A19957F2E4DC6F87C398A3318 /* Task.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Task.swift; path = Sources/Moya/Task.swift; sourceTree = ""; }; - CBCF16C1D8B08EBF7F70BEF64DE8914F /* CLIColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CLIColor.m; path = Sources/CocoaLumberjack/CLI/CLIColor.m; sourceTree = ""; }; - CBD645FB492CC8ABAF8474214E280CC7 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - CC24CDDC3C41D4E90FB7A47FD047D37A /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; - CC3798F5D6C9EBC45E8AABCABA094C90 /* UIViewConfiguringSwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIViewConfiguringSwiftUIView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIViewConfiguringSwiftUIView.swift; sourceTree = ""; }; - CC3D8146FC10F0640612BFBDF8B23019 /* Differentiator-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Differentiator-prefix.pch"; sourceTree = ""; }; - CC4D4B98E55AECCD92A3E8F03E8B4975 /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = ""; }; - CC62DE620BE171E4861A660B5110C9F4 /* 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 = ""; }; - CCA5382951AE75A98792835CE4E99624 /* Core+UIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIView.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIView.swift"; sourceTree = ""; }; - CCE90CA40DDCE3B2A7557F7300F48BDA /* TimePeriodGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodGroup.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodGroup.swift; sourceTree = ""; }; - CD009445A239BEED49369C3E6069079A /* SendMessageCallbackProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SendMessageCallbackProxy.h; path = OpenIMSDK/CallbackProxy/SendMessageCallbackProxy.h; sourceTree = ""; }; - CD0484F6BC5E5083AA0A3493E6A7E299 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - CD18DA084428987D08B37C1AEAC65E52 /* YBImageBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBImageBrowser.h; path = YBImageBrowser/YBImageBrowser.h; sourceTree = ""; }; - CD3394AEB6113760F63CD2C8E55F0743 /* KeyframeGroup+exactlyOneKeyframe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KeyframeGroup+exactlyOneKeyframe.swift"; path = "Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift"; sourceTree = ""; }; - CD4BB25B01C11AECAA30B2010211F454 /* GIFImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFImageView.swift; path = Sources/HXPHPicker/Picker/View/GIFImageView.swift; sourceTree = ""; }; - CD53BA557DF4BC4953A4AB9EC6A4FF57 /* CGFloatExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CGFloatExtensions.swift; path = Sources/Private/Utility/Extensions/CGFloatExtensions.swift; sourceTree = ""; }; - CD572E7B11147DD4A8222AA6C45D15D7 /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = ""; }; - CD8E93CCDB5866098FEF8856FFB20F0F /* SwiftyUserDefaults-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyUserDefaults-umbrella.h"; sourceTree = ""; }; - CDABE3383A3C68EFCCE02018595AFFB3 /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; - CDB3370B2D9A7B4B4FEE5BBFAC62D485 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - CDB7FF942B90BE067AA3B27A25238BA5 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - CDFE58BD47F6BD0FC9FB7D6FB1471943 /* lottie-ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "lottie-ios-dummy.m"; sourceTree = ""; }; - CE5309C36CA7E076181ADB8990797A85 /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = ""; }; - CE5BA2F6D6A3EBD1C8BCA53133492AF9 /* Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Alamofire-Info.plist"; sourceTree = ""; }; - CE6A24FF0DA7E2B9D9E7D6432F783172 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - CE864E35FBE5668BF392096A7DF58B8C /* Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Operators.swift; path = Sources/Operators.swift; sourceTree = ""; }; - CE89B0E952C22E11B64A894D84F8DB83 /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = ""; }; - CEB0F03F7DE9B75763FEE50F19F9CFE7 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - CEBFF121DDC08559C71E1B1D903EBD52 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; + C444211868DE12D238B5BF354455FC4D /* _RXObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXObjCRuntime.h; path = RxCocoa/Runtime/include/_RXObjCRuntime.h; sourceTree = ""; }; + C4457220F18221DEEE691C455779CA75 /* TimePeriodChain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodChain.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodChain.swift; sourceTree = ""; }; + C4542B0278922709B2677B3742D449B8 /* NodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodeProperty.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/NodeProperty.swift; sourceTree = ""; }; + C45803DEA9BBD6D69D4D24C69F4DAFA1 /* OIMManager+Group.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Group.m"; path = "OpenIMSDK/Interface/OIMManager+Group.m"; sourceTree = ""; }; + C4822263D21DDDA08A1EF2995BBE39B7 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; + C490335440F75C578775EFDF160BC241 /* EpoxySwiftUILayoutMargins.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUILayoutMargins.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUILayoutMargins.swift; sourceTree = ""; }; + C4AEF7DE14166C25132B610DAB1F3C00 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; + C4BC4E9795B94391814F9D9D11446D5A /* EditorStickerTrashView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerTrashView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerTrashView.swift; sourceTree = ""; }; + C4C7C3A5F449BC7B132C23B891237D99 /* OIMSimpleResultInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSimpleResultInfo.m; path = OpenIMSDK/Model/OIMSimpleResultInfo.m; sourceTree = ""; }; + C4D82C83902BC9F0FB3834FA90DDF005 /* BehaviorRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorRelay.swift; path = RxRelay/BehaviorRelay.swift; sourceTree = ""; }; + C53A4E9FEDAEA9A964D888B3B4ACDE62 /* Differentiator.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Differentiator.modulemap; sourceTree = ""; }; + C56F7B90029A72DEC58CF844484D77F5 /* OIMUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMUserInfo.m; path = OpenIMSDK/Model/OIMUserInfo.m; sourceTree = ""; }; + C5727BECEE9618152FED1401FF57F6A0 /* AnimationFontProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationFontProvider.swift; path = Sources/Public/FontProvider/AnimationFontProvider.swift; sourceTree = ""; }; + C577C2D8E39F304146E0343775615D10 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + C58AC090CF55DF65FBCB1E83D9A44E0A /* AMapURLSearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearch.h; path = AMapFoundationKit.framework/Headers/AMapURLSearch.h; sourceTree = ""; }; + C5CE467F7D21EE255E3C0AC93EEC217A /* RxDataSources.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxDataSources.modulemap; sourceTree = ""; }; + C5CFBD20109F66699F30CEBC6AB89D14 /* YBIBVideoTopBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoTopBar.m; path = Video/YBIBVideoTopBar.m; sourceTree = ""; }; + C5D66152891A6C0CFE6DE74BD7438631 /* EpoxyModelProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelProperty.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift; sourceTree = ""; }; + C5DEF7F662508A12F2DEF686D8ED3570 /* Infallible+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Bind.swift"; path = "RxCocoa/Common/Infallible+Bind.swift"; sourceTree = ""; }; + C5E34F664A26E302A185A09496929E75 /* View+ValueChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "View+ValueChanged.swift"; path = "Sources/Private/Utility/Helpers/View+ValueChanged.swift"; sourceTree = ""; }; + C5E4AC95D725AE9914E15B02C6040935 /* YBIBDataMediator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBDataMediator.m; path = YBImageBrowser/Base/YBIBDataMediator.m; sourceTree = ""; }; + C613E0A1F41A822EED765247AC1F954D /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + C677F1F6911AEB8A0B1C0078557F254F /* YBIBCopywriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBCopywriter.m; path = YBImageBrowser/Helper/YBIBCopywriter.m; sourceTree = ""; }; + C697541991BB83795F62A7EAC8FD2B49 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; + C6AA4F5CE1C7962178B6099FA00101B4 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/Core/AFError.swift; sourceTree = ""; }; + C6D1A8F44FA7834D7AE24263F75B667B /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; + C6D30DDFE1BF6DACA6804172A77CAFA4 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; + C6E63714E5163D46EAEF91865D01ECDC /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; + C70EC81EB5E7986D89207A07B93295B9 /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = ""; }; + C73C04647C0D259054E566EDEDB52C13 /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; + C73EB33F3F32ABFF91A2BD8F436835E0 /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = ""; }; + C7AD74FA213A3FFDCA24D48ABA00E8F0 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; + C7C170BCC9E743F204BF744A97B3443F /* AMapGeoFenceRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceRegionObj.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceRegionObj.h; sourceTree = ""; }; + C7E8128FA3C4DC6DC87343890BB0751E /* IQKeyboardToolbarManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-prefix.pch"; sourceTree = ""; }; + C80034199622607DF099889E0346FDEB /* ObjectMapper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ObjectMapper-prefix.pch"; sourceTree = ""; }; + C8009C99851F258D3BAC40E139579AC5 /* ObjectMapper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ObjectMapper.debug.xcconfig; sourceTree = ""; }; + C8277B036CADFDB18A9032F3676C20D1 /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; + C84DB09A5FF186DAD4C96289F6032C61 /* PhotoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoManager.swift; path = Sources/HXPHPicker/Core/Util/PhotoManager.swift; sourceTree = ""; }; + C85509D11138B3103A30250316CBE2D6 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; + C86BA257469B7EDB7C543D6521539A53 /* ViewProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewProviding.swift; sourceTree = ""; }; + C8EAC22AF845ED2317153E3913ACB6B1 /* AnimatedControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedControl.swift; path = Sources/Public/Controls/AnimatedControl.swift; sourceTree = ""; }; + C90D59230855356AC2C7ECAC0C2A6DAB /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; + C945AE6B7986CFDFCD103CCDC547424A /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = ""; }; + C946A52BE769027A887483647665E8F7 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + C94D912ED11FB929D163DE90CA7CBF58 /* YBIBOrientationReceiveProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBOrientationReceiveProtocol.h; path = YBImageBrowser/Protocol/YBIBOrientationReceiveProtocol.h; sourceTree = ""; }; + C9714A1AD9F2DF6D9204ED18A1C836E6 /* IQRootControllerConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQRootControllerConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift; sourceTree = ""; }; + C9A1F58E7DA61B4F02959233658F889B /* Differentiator-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Differentiator-Info.plist"; sourceTree = ""; }; + C9AEE725EBC8AF812D343242835B5448 /* OpenIMSDK-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OpenIMSDK-umbrella.h"; sourceTree = ""; }; + C9FE80D4284F880557EC33949896271E /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; + CA06EA67576AB4DA1C662F80B2FC1A3A /* MAPinAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPinAnnotationView.h; path = MAMapKit.framework/Headers/MAPinAnnotationView.h; sourceTree = ""; }; + CA1127638FB310D5F12AAE25ED25158A /* YBIBDefaultWebImageMediator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBDefaultWebImageMediator.m; path = YBImageBrowser/WebImageMediator/YBIBDefaultWebImageMediator.m; sourceTree = ""; }; + CA1E32AF2B6B2E567E088EE3153CA7E8 /* NSObject+MJClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJClass.h"; path = "MJExtension/NSObject+MJClass.h"; sourceTree = ""; }; + CA33EB72D1CACE2D1D5F62ABB5C0D627 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; + CA53A2E29927041974A34C30773D58EC /* ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist"; sourceTree = ""; }; + CA661D4F822BB9E46CE4E3531131BCF2 /* UIScrollView+reachedBottom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+reachedBottom.swift"; path = "Source/RxCocoa/UIScrollView+reachedBottom.swift"; sourceTree = ""; }; + CA7328C77B8873228D8F9F083DD76E06 /* MarqueeLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MarqueeLabel-dummy.m"; sourceTree = ""; }; + CA7DEF12C876C557DDFF6CC3B95D863F /* YBIBWebImageMediator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBWebImageMediator.h; path = YBImageBrowser/WebImageMediator/YBIBWebImageMediator.h; sourceTree = ""; }; + CAB2565A0DA889576964CD69CC948242 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; + CAC6175EFA83D8732500292A8A30189C /* PhotoPreviewSelectedView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewSelectedView.swift; path = Sources/HXPHPicker/Picker/View/PhotoPreviewSelectedView.swift; sourceTree = ""; }; + CACCF45640195EFFB1603F926C73CFA3 /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; + CAEA5657079E5ED6EC6D28C57EB4C2BF /* AnimatedProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/AnimatedProviding.swift; sourceTree = ""; }; + CAFECD5FCBEEF8FDD448C9D99E7875DB /* DataTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataTransform.swift; path = Sources/DataTransform.swift; sourceTree = ""; }; + CB216BE0D8FC0CAFD94F4FBE9464267E /* NullCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NullCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.swift; sourceTree = ""; }; + CB226B090B92DCBB1D0C6EDDAC487C5D /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; + CB49502221C6831562B6F3334074EEB2 /* Core+UIDevice.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIDevice.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIDevice.swift"; sourceTree = ""; }; + CBA1509DD9D34552546037937DF23074 /* RxTableViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift; sourceTree = ""; }; + CC26C4F91EEB4297476C8D0F8B4D97BA /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Core/Protected.swift; sourceTree = ""; }; + CC59B2281AD964D6B8FED7B26F17BEC0 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; + CC704F85E6DECFEFBA3A0F282033AE27 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + CC7B8DCEBB0FD4064FFEAB1E9BA967D1 /* IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbar.swift; path = IQKeyboardToolbar/Classes/IQKeyboardToolbar.swift; sourceTree = ""; }; + CC9713B9525A20943182AB6D5E22A57F /* AssetLibrary.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssetLibrary.swift; path = Sources/Private/Model/Assets/AssetLibrary.swift; sourceTree = ""; }; + CCAFF5A5740D13881CB89FB2332CF4BC /* VideoEditorMusic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorMusic.swift; path = Sources/HXPHPicker/Editor/Model/VideoEditorMusic.swift; sourceTree = ""; }; + CCD7BCD9C08B7D6A5BDF7D7B7E93E2C4 /* UITableView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+Rx.swift"; path = "RxCocoa/iOS/UITableView+Rx.swift"; sourceTree = ""; }; + CCDE73E0140C3BC9F72E28078BAB4C4E /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + CD3136D404630159D6B3A92001E39C0D /* RxSwiftExt.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxSwiftExt.modulemap; sourceTree = ""; }; + CD66401597E7952E4DE53DEC58AC4941 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + CD68B1602B9133E2816F156CB92881EF /* AlbumTitleViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleViewConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/AlbumTitleViewConfiguration.swift; sourceTree = ""; }; + CD6EB60D65042D6F79F8E621BF2E5BBA /* MqttPublishProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttPublishProperties.swift; path = Source/MqttPublishProperties.swift; sourceTree = ""; }; + CD723E5D168E0DB8A0F018B2A3F37D7A /* OIMCallbacker+Closure.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMCallbacker+Closure.m"; path = "OpenIMSDK/Callbacker/OIMCallbacker+Closure.m"; sourceTree = ""; }; + CDB5DC8D1CA553235FAB3A2185D3646E /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; + CDCD962236713536EFF122F0B8A174DF /* UIScrollView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+Rx.swift"; path = "RxCocoa/iOS/UIScrollView+Rx.swift"; sourceTree = ""; }; + CE234EDBBA854CE992A10F0073B4502C /* AssociatedValues.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssociatedValues.swift; path = Sources/SwiftDate/Supports/AssociatedValues.swift; sourceTree = ""; }; + CE2D181860A376B53B945D2F66652716 /* SGQRCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGQRCode.h; path = SGQRCode/SGQRCode.h; sourceTree = ""; }; + CE2D6B492452344FA1B760EFFD9DC1E5 /* ISO8601DateTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISO8601DateTransform.swift; path = Sources/ISO8601DateTransform.swift; sourceTree = ""; }; + CE33785CC080AE402A8C5B0628D044B2 /* HXPHPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HXPHPicker.debug.xcconfig; sourceTree = ""; }; + CE53DF77216A675C25EC903D738D2065 /* AssetManager+VideoURL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+VideoURL.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+VideoURL.swift"; sourceTree = ""; }; + CE9FDBE3DB1A26028345DD54F26D62B7 /* lottie-ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.debug.xcconfig"; sourceTree = ""; }; + CEC0082E625A68C67E6A1ECF039B0BC7 /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; + CEFAFB0750B061594184687C298B8099 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + CF011CAF790106FD6A19F8F57A0573BD /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; CF0AA9FBFBDB70858C030769541505ED /* MarqueeLabel */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MarqueeLabel; path = MarqueeLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + CF0EB9FA6D0C021B52847CA29ACE00CF /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJKeyValue.h"; path = "MJExtension/NSObject+MJKeyValue.h"; sourceTree = ""; }; CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "SDWebImage-SDWebImage"; path = SDWebImage.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CF1A17DE9613A991E0CA0C68744B81D6 /* catchErrorJustComplete.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = catchErrorJustComplete.swift; path = Source/RxSwift/catchErrorJustComplete.swift; sourceTree = ""; }; - CF3E1C0900F540641D8FE98FD89E3640 /* YYImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYImage.debug.xcconfig; sourceTree = ""; }; - CF707A0420C20F296F4B5A4D3D2534DD /* OIMSimpleResultInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSimpleResultInfo.h; path = OpenIMSDK/Model/OIMSimpleResultInfo.h; sourceTree = ""; }; - CF7AD9CDBAEA6134EE92F10730C7351A /* VideoEditorConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/VideoEditorConfiguration.swift; sourceTree = ""; }; - CFC284EBBDD148F95EC62C58F49F6110 /* EditorStickerContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerContentView.swift; path = Sources/HXPHPicker/Editor/View/EditorStickerContentView.swift; sourceTree = ""; }; - CFC2CA99DCB07C318665A8C26096B21E /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; - CFC30276B8929B72D79A2C9660B6AAD1 /* FloatingPointType+IdentifiableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FloatingPointType+IdentifiableType.swift"; path = "Sources/RxDataSources/FloatingPointType+IdentifiableType.swift"; sourceTree = ""; }; - CFE98B38843AE0C4E89B36CF77B5387B /* IQKeyboardManager+Appearance_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance_Deprecated.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift"; sourceTree = ""; }; - D00CD7B0453036235F53A50214D4ED2D /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - D076B59FCDF9A92CE3960EA4ADC0446E /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - D08BE8E0FEE054D26245C2FF226177A0 /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Core/Protected.swift; sourceTree = ""; }; - D09EEE16CE8246F2F7548E87067C664C /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; - D116F3B6A0E7D4C7816BC8AF483B3EE2 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; - D1298B1397ACD7C9C70CFD673D14E200 /* OIMManager+User.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+User.m"; path = "OpenIMSDK/Interface/OIMManager+User.m"; sourceTree = ""; }; - D16E2301CBCEED8AA04536AFC22CE901 /* DelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxy.swift; path = RxCocoa/Common/DelegateProxy.swift; sourceTree = ""; }; - D1C5BEE9A50F34D3FE4396E083ABA3E4 /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; - D1DB3CB1B0F9F8FBA6EB3FF0651D9C39 /* ViewTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewTransition.swift; path = Sources/RxDataSources/ViewTransition.swift; sourceTree = ""; }; - D1DB4F36A216F0FE7063760FC77B8302 /* OIMManager+Connection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Connection.m"; path = "OpenIMSDK/Interface/OIMManager+Connection.m"; sourceTree = ""; }; - D1F579E8E331132963070FBC936F1C2B /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/Extensions/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; - D20A56560F315942F27C111F2B851792 /* YBIBImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageScrollView.m; path = YBImageBrowser/Image/YBIBImageScrollView.m; sourceTree = ""; }; - D22A61EEFB555B9222253E7202D107B0 /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; - D2509D403C834A34D7305D4C90158B37 /* ShapeCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.swift; sourceTree = ""; }; - D2596C6DAC2A8B615E67D865765BA5EB /* UISearchBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchBar+Rx.swift"; path = "RxCocoa/iOS/UISearchBar+Rx.swift"; sourceTree = ""; }; - D27C029A21462E439909BC6A1460A0D3 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; - D2BF88E4E6955245A365CE72B7B29331 /* AnyEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEncodable.swift; path = Sources/Moya/AnyEncodable.swift; sourceTree = ""; }; - D2F3CE00946882B137C6D3ADE1F17BF5 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; sourceTree = ""; }; - D2F6C3141B01558E41612E3CB9A5B3F5 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = ""; }; - D313154C522FDF13B1B8BB1616A141BA /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; - D32609E1BA7CBC157907FAC2FA760E85 /* OpenIMSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "OpenIMSDK-Info.plist"; sourceTree = ""; }; - D33902803F47DEADED2DFA7B7C947887 /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/Core/HTTPHeaders.swift; sourceTree = ""; }; - D33E322A3E5E2970FF84AD445CACE4F1 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - D3BF4F0F1230764811DE5441812E7D81 /* Moya-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Moya-Info.plist"; sourceTree = ""; }; - D3C3F3D9536425D441065A0DD49296FA /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - D3CB5318B015CED596B8976F167CB700 /* ControlEvent+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Signal.swift"; path = "RxCocoa/Traits/Signal/ControlEvent+Signal.swift"; sourceTree = ""; }; - D3DD3163F3F69703D57F0C5EE33BFEE0 /* PhotoEditResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditResult.swift; path = Sources/HXPHPicker/Editor/PhotoEditResult.swift; sourceTree = ""; }; - D3DF20CFF93070089A3F83A2130C4121 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; - D3FAE393EA0CB065CF13EBD52B25C74E /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = ""; }; - D414BEB5C18132E781D4587C8EFA1857 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = ""; }; - D42BD13DE088E55D9440C64037EC2796 /* SDCallbackQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCallbackQueue.h; path = SDWebImage/Core/SDCallbackQueue.h; sourceTree = ""; }; - D42F775E38DE1A545F3B25BD8738ACF2 /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; - D460BB20DEA54F4F1227BF8309D4153C /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; - D477BCCAE115C780D1F45A92E5F3BE15 /* CGImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGImage+WebP.h"; path = "Sources/KingfisherWebP-ObjC/include/CGImage+WebP.h"; sourceTree = ""; }; - D48287B30F0088EC0C5310945CA4B7A1 /* PolygonNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PolygonNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift; sourceTree = ""; }; - D4F2F0EA5C534B941F600989F2ADB613 /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = ""; }; + CF265D01BCDF891475E8B6CA021874DD /* ShapeItemLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeItemLayer.swift; path = Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift; sourceTree = ""; }; + CF2AB942FDE7274CE1F5D9667B6EC127 /* IQKeyboardReturnManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardReturnManager-dummy.m"; sourceTree = ""; }; + CF3AD82EC39778DB621B9AC73985F627 /* Cancellable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancellable.swift; path = Sources/Moya/Cancellable.swift; sourceTree = ""; }; + CF54465B2588A0521DFFB1FF4940DF6C /* RxSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-dummy.m"; sourceTree = ""; }; + CF71F4E4CAE92E4661A148450BC4B394 /* Glyph.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Glyph.swift; path = Sources/Private/Model/Text/Glyph.swift; sourceTree = ""; }; + CF7AC93836316D77CDFA574E1609FB6B /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = ""; }; + CF88F372EC85C9D417C7FD9226BE7F3F /* SGPermission.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGPermission.m; path = SGQRCode/Permission/SGPermission.m; sourceTree = ""; }; + CF8B49FE54508962DCCAE48FF9C6BE2C /* YBIBImageCache+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBImageCache+Internal.h"; path = "YBImageBrowser/Image/YBIBImageCache+Internal.h"; sourceTree = ""; }; + CF9DEF0B8FE64352C40FF7FADFC32A4E /* UIColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColorExtension.swift; path = Sources/Public/iOS/UIColorExtension.swift; sourceTree = ""; }; + CFABBFE3E23539AC8A25CB8DF205E4E2 /* Defaults+Observing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Defaults+Observing.swift"; path = "Sources/Defaults+Observing.swift"; sourceTree = ""; }; + CFABCB79861B27F18DA91612184F6887 /* YBIBVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoView.m; path = Video/YBIBVideoView.m; sourceTree = ""; }; + CFD05E64CF85F8CA7E5A6576121884A0 /* IQKeyboardToolbarPlaceholderConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarPlaceholderConfiguration.swift; path = IQKeyboardToolbar/Classes/Placeholder/IQKeyboardToolbarPlaceholderConfiguration.swift; sourceTree = ""; }; + CFD6B054FF46A41FC9AEAF36A1E02246 /* AMapFoundationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationVersion.h; path = AMapFoundationKit.framework/Headers/AMapFoundationVersion.h; sourceTree = ""; }; + CFE969BF87DF6A4473ACCB1E8565BDF0 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManagerDeprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift"; sourceTree = ""; }; + D00321F8E978E74F4F4D60B3EB34997C /* AnimatedButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedButton.swift; path = Sources/Public/Controls/AnimatedButton.swift; sourceTree = ""; }; + D020FF9A5704378B0D8B41BF65396696 /* MqttCocoaAsyncSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MqttCocoaAsyncSocket.debug.xcconfig; sourceTree = ""; }; + D031895E50BDFD816B263068206932EA /* DidEndDisplayingProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidEndDisplayingProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidEndDisplayingProviding.swift; sourceTree = ""; }; + D0437BBB36BED63582B9839D1E20DCA8 /* URLNavigator-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "URLNavigator-dummy.m"; sourceTree = ""; }; + D057D2D724536C69CB371BBB638D3B1C /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + D06FBFCACDB5DEA5E6A56C03EDB2CCFE /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; + D0716716AD81AB2B2F5991A5E536BC03 /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; }; + D094492C3C9C70F3767ABB9EF6D63919 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; + D09EC7A968EE24B6056BBB55B155B841 /* MqttCocoaAsyncSocket-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MqttCocoaAsyncSocket-Info.plist"; sourceTree = ""; }; + D0A5F579E5060D3B3840AA15280205F8 /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; + D0A90D1C88AE636E67296B135530FC21 /* Combine.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Combine.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Combine.framework; sourceTree = DEVELOPER_DIR; }; + D0DE2E7445B1ACF99F6851237BF43962 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; + D0E21354913A22F0F4F3F224BF3699C6 /* IQKeyboardManager+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift"; sourceTree = ""; }; + D1023870AD95A079CF71B1619FF07463 /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/Extensions/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; + D105F796848D507AEBB1461B0F8A6D7C /* TransformOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformOf.swift; path = Sources/TransformOf.swift; sourceTree = ""; }; + D10D891E1B9E58E640DDE11239776223 /* CLIColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CLIColor.m; path = Sources/CocoaLumberjack/CLI/CLIColor.m; sourceTree = ""; }; + D13ADEC01AEBCFADCF283E3936FD6C64 /* PhotoManager+Audio.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoManager+Audio.swift"; path = "Sources/HXPHPicker/Core/Util/PhotoManager+Audio.swift"; sourceTree = ""; }; + D151E0C0C8749B59E1D6C1C422EE6C7F /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; + D15EDFC11F19BC7A78A242A7BC5BB452 /* RoundedCorners.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RoundedCorners.swift; path = Sources/Private/Model/ShapeItems/RoundedCorners.swift; sourceTree = ""; }; + D1A524C5B6ECAE4BAC7424565E81C313 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; + D1B597661EBD1744C9ED9D0DF6770F00 /* Moya.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Moya.modulemap; sourceTree = ""; }; + D1B7F2C96D885D7A145E648320C1726E /* SwiftyJSON.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.release.xcconfig; sourceTree = ""; }; + D1EC99C6BE34665E03162207933049DA /* RxCocoa-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-umbrella.h"; sourceTree = ""; }; + D1FC999A64120C01A02C6491C02500C3 /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; + D20EDFE87D7E3E82F987FC08A4F00CEE /* UIView+RespondersObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+RespondersObjc.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+RespondersObjc.swift"; sourceTree = ""; }; + D2168315CB9F6330A6402FFFDD1D6C30 /* libwebp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-umbrella.h"; sourceTree = ""; }; + D234CC248B770A58420B85F0D51049CD /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = ""; }; + D270B58C52D873E88FE7A688C880CC47 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; + D27DD767F6F3E75D625CE059F48E6518 /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = ""; }; + D330042F8A70A7845C60AA7BDA165452 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; + D337FF64DAB0EF1DCF5E657FD4FA25D3 /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/Features/CachedResponseHandler.swift; sourceTree = ""; }; + D387B9EF45C30A00D99BDDC504B89E42 /* mergeWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = mergeWith.swift; path = Source/RxSwift/mergeWith.swift; sourceTree = ""; }; + D3963C0BEB66BA33C14419B6AB8E504C /* UIView+WebCacheState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheState.m"; path = "SDWebImage/Core/UIView+WebCacheState.m"; sourceTree = ""; }; + D3BAA59A5DF299D939954B1D0B6BAB74 /* DelegateProxyType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxyType.swift; path = RxCocoa/Common/DelegateProxyType.swift; sourceTree = ""; }; + D3D05FEE8ADDAB27B74995F22E6B4A65 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; + D3D69DB59BA23808B9FC7CA5290FE648 /* NSObject+YBImageBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+YBImageBrowser.h"; path = "YBImageBrowser/Base/NSObject+YBImageBrowser.h"; sourceTree = ""; }; + D406042DB342E978B1216F2CBB74B1A9 /* MarqueeLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MarqueeLabel-Info.plist"; sourceTree = ""; }; + D40EFA4AC4FAF688BB84B55A3FB2CF5D /* PhotoAsset+Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoAsset+Request.swift"; path = "Sources/HXPHPicker/Picker/Model/PhotoAsset+Request.swift"; sourceTree = ""; }; + D43D3D49600F86D5154E1438DC7E9E53 /* OIMMergeElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMMergeElem.h; path = OpenIMSDK/Model/OIMMergeElem.h; sourceTree = ""; }; + D479E6B7E6471A3F32550F11B6329C0B /* PickerResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerResult.swift; path = Sources/HXPHPicker/Picker/PickerResult.swift; sourceTree = ""; }; + D47AAA9B971BFF2F0C01320573159825 /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON/SwiftyJSON.swift; sourceTree = ""; }; + D483DE2B67FB68CEE562CE2EA924D7A9 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + D4B1C2103D7684DB18D233B798D4561F /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = ""; }; + D50376BA225C0801D90EFEB172B1D6C4 /* YBIBAnimatedTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBAnimatedTransition.h; path = YBImageBrowser/Base/YBIBAnimatedTransition.h; sourceTree = ""; }; + D507F5D54565CF1A7DE4A2435AFE878B /* RxSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxSwift-Info.plist"; sourceTree = ""; }; D51C3D0C53D23B97B032E3BDD4F82C82 /* Differentiator */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Differentiator; path = Differentiator.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D551093E45236015C327AE4B9BEA862F /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = ""; }; - D5955C3F11BD2E1CC1EF1F0E6CBCE5B7 /* MACustomBuildingOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlay.h; path = MAMapKit.framework/Headers/MACustomBuildingOverlay.h; sourceTree = ""; }; - D5A54FE569BE26DE8F8FABCE0B34BC75 /* IQKeyboardManager+Appearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift"; sourceTree = ""; }; - D5BE10E514BD8C3BBDC238C222A00125 /* AnyNodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyNodeProperty.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift; sourceTree = ""; }; - D5C78551AE5DF3F869970B180F880896 /* UIView+SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+SwiftUIView.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIView+SwiftUIView.swift"; sourceTree = ""; }; - D5D3C4F3B57323AEE14C3961892E5BBB /* DidEndDisplayingProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidEndDisplayingProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidEndDisplayingProviding.swift; sourceTree = ""; }; - D5E02CC1CDA6213ADD2D3A5455B1CAA1 /* LivePhotoSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LivePhotoSource.swift; path = Sources/General/ImageSource/LivePhotoSource.swift; sourceTree = ""; }; - D5E28175BBC94EB18FFA4750CEFF606C /* SwiftKeychainWrapper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftKeychainWrapper-prefix.pch"; sourceTree = ""; }; + D524EE427DDAC4E734AE277A9CADE5CC /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; + D5252618732B4F33066C92F6903EA17B /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; + D5660094DA95120EE2B8164E7355B119 /* IQDeepResponderContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQDeepResponderContainerView.swift; path = IQKeyboardToolbarManager/Classes/IQDeepResponderContainerView.swift; sourceTree = ""; }; + D581489AF2D977E97DD236B6C4C9583B /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; + D58502CF1328DAFBECC1FCDA8D9977D3 /* MABaseOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MABaseOverlay.h; path = MAMapKit.framework/Headers/MABaseOverlay.h; sourceTree = ""; }; + D59B8B70311C2BD0CBADA376182EF9B8 /* MapError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MapError.swift; path = Sources/MapError.swift; sourceTree = ""; }; + D5ABA7A9A9E3BA9AF60465C2BEBFE6C8 /* AMapURLSearchConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchConfig.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchConfig.h; sourceTree = ""; }; + D5B31C16DC507AA7342155F0550B0D79 /* IQTextInputViewNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.debug.xcconfig; sourceTree = ""; }; + D5B5E409A3CB6709D1C0EC5240773D49 /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; + D5C3483F4E8C5E0015004EAF99566DAE /* IQActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQActiveConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift; sourceTree = ""; }; + D5D131BAEA2B1C0468C915FC762A6341 /* KeyframeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeExtensions.swift; path = Sources/Private/Utility/Interpolatable/KeyframeExtensions.swift; sourceTree = ""; }; + D5DB288CA1735838DAB9C361892E54EA /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; + D5E0182FEE828DC6578A7F76F77A59EB /* CompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift; sourceTree = ""; }; + D5E0BA4C08C42E4F935DB00E62F37EA2 /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; + D5E5340CF5421A590D1A25C045077BA8 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; D5FE1E37E2C698689D5F24AEE4636065 /* Pods-QuickLocation-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-QuickLocation-frameworks.sh"; sourceTree = ""; }; - D63215EDBB31AA1C7927001384586CCD /* Signal+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Signal+Subscription.swift"; path = "RxCocoa/Traits/Signal/Signal+Subscription.swift"; sourceTree = ""; }; - D64F41A2745AE91DEE1543DBD286390F /* PHPickerResultImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PHPickerResultImageDataProvider.swift; path = Sources/General/ImageSource/PHPickerResultImageDataProvider.swift; sourceTree = ""; }; - D6710808298E8357BEF9DEDA21E199CF /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; - D67CAECC94DDFB066BCA8DF4BF753DB3 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/Features/NetworkReachabilityManager.swift; sourceTree = ""; }; - D68AE9C63479784FDA72DE0494BF25A9 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - D68BEDC9751B141065CF1027FED503E6 /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; - D68C40790FE6F29278192AF58A55C115 /* YBIBImageData+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBImageData+Internal.h"; path = "YBImageBrowser/Image/YBIBImageData+Internal.h"; sourceTree = ""; }; - D6B2C759FB92C7CAA19BAEA2B83D076F /* OpenIMSDK-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OpenIMSDK-dummy.m"; sourceTree = ""; }; - D6C77430014C62956E5C73E7FC9DBD96 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; - D6F586A5D8FE098F83C58AFB7B88C5B9 /* DataExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataExtension.swift; path = Sources/Private/Utility/Extensions/DataExtension.swift; sourceTree = ""; }; - D712C754D0B3BEFA8D9854077BC94893 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; - D73E24376EF4CAD3A86EF871E59DA6A1 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; - D773DCDA3327CB85C313A8E3F689E532 /* PhotoAssetCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoAssetCollection.swift; path = Sources/HXPHPicker/Picker/Model/PhotoAssetCollection.swift; sourceTree = ""; }; - D77A6E5E115865516443F9DA796B6091 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; - D7A6B09B1EB0F21A79A335F239769653 /* YBIBUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBUtilities.h; path = YBImageBrowser/Helper/YBIBUtilities.h; sourceTree = ""; }; - D7B4BE25B675D9E62A4F73B632D2FA4E /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; - D7BAE3331BAA65418B42B63EB7A827D8 /* YBIBSheetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBSheetView.m; path = YBImageBrowser/ToolView/YBIBSheetView.m; sourceTree = ""; }; - D7BCE18E08BCB73003FA4EAB713A67F6 /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; - D810C9646E8A55330552D3614E8D58E3 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; - D825F64A76320E65FD8969C6C63148B1 /* IQKeyboardToolbarManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-umbrella.h"; sourceTree = ""; }; - D82B68410AFC0685799BD4FFEDAEDDEB /* IQKeyboardToolbar-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-prefix.pch"; sourceTree = ""; }; - D835F5767328148D3747835C4E0D09CD /* Defaults+StringToBool.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Defaults+StringToBool.swift"; path = "Sources/Defaults+StringToBool.swift"; sourceTree = ""; }; - D841D091A56096AAE13A8CF138CE6130 /* IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; - D862D8002783A98CA4298CD944721078 /* BehaviorRelay+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BehaviorRelay+Driver.swift"; path = "RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift"; sourceTree = ""; }; - D867D1C31B709009EFE974B0553F9D9D /* Core+Bundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+Bundle.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+Bundle.swift"; sourceTree = ""; }; - D86878EE3183A9473ECB5A2110815050 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - D86F8CB933244DB4129321F3F634F3F6 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; - D872B09828CDE9FED532089388FD1706 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - D8D05105D891E4492E3064011BFFBC55 /* MJPropertyKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyKey.m; path = MJExtension/MJPropertyKey.m; sourceTree = ""; }; - D8D4E72FFA61743609A51FAE174F8833 /* URLNavigator.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = URLNavigator.debug.xcconfig; sourceTree = ""; }; - D8E122838BA266BA2FC542DB6D6CA7FC /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = ""; }; - D9469079C705E0ACD65CE0D499E85ADB /* BezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BezierPath.swift; path = Sources/Private/Utility/Primitives/BezierPath.swift; sourceTree = ""; }; - D9AABB0BF024C76A2F4778A8BF77E9BE /* AnimationTextProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationTextProvider.swift; path = Sources/Public/TextProvider/AnimationTextProvider.swift; sourceTree = ""; }; - D9ACDC91BE3AD7423323355FF0F6AE52 /* AMapLocationCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationCommonObj.h; path = AMapLocationKit.framework/Headers/AMapLocationCommonObj.h; sourceTree = ""; }; - DA153F1787B4626C642F61ECE6F84F95 /* TextAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimator.swift; path = Sources/Private/Model/Text/TextAnimator.swift; sourceTree = ""; }; - DA1B465FAF1DF8179501C93F8925EAA1 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - DA420F3649A7C98C2CEB39098100D80B /* ControlProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlProperty.swift; path = RxCocoa/Traits/ControlProperty.swift; sourceTree = ""; }; - DA49A84F2674310313ACC307E2624882 /* lottie-ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "lottie-ios.modulemap"; sourceTree = ""; }; - DA521EA6BA5447EBEE592BCF358F83F9 /* LayerFontProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerFontProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift; sourceTree = ""; }; - DA665FB1BA93A17FF0554D6D7B30AD0B /* NSObject+MJCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJCoding.h"; path = "MJExtension/NSObject+MJCoding.h"; sourceTree = ""; }; - DA66C9C915DAFC02D59574A19D34C580 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - DB018CCCA925531421DF2AABFAE43A25 /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; - DB08296A6F18F928A00EC7AFDB47E3C1 /* RxRelay-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-umbrella.h"; sourceTree = ""; }; - DB2F9EE6399F9C70D28AB93C2F3695D3 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - DB4DCA05AF0C1A1C21B89A7468E041BE /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUIIntrinsicContentSizeInvalidator.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIIntrinsicContentSizeInvalidator.swift; sourceTree = ""; }; - DB7856D2A89B795002794BEF5165A081 /* AssetLibrary.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssetLibrary.swift; path = Sources/Private/Model/Assets/AssetLibrary.swift; sourceTree = ""; }; - DB7D268FBB10E0D836B97C3928B5321B /* Data+Compression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Compression.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Compression.swift"; sourceTree = ""; }; - DB8309D96FCEC99B33E677AF7698B74F /* String+Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Parser.swift"; path = "Sources/SwiftDate/Foundation+Extras/String+Parser.swift"; sourceTree = ""; }; - DB9746CC3590A586C2503988C11BFE17 /* AnimationFontProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationFontProvider.swift; path = Sources/Public/FontProvider/AnimationFontProvider.swift; sourceTree = ""; }; - DBB07160DFB218EECCC7DBA7F12212BD /* TADotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TADotView.h; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TADotView.h; sourceTree = ""; }; - DBBA01FA6E1F2ADE35EA179C7CFBF223 /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MBProgressHUD.modulemap; sourceTree = ""; }; - DBD1A131E0B3DB38642A84F2E5057152 /* URLTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLTransform.swift; path = Sources/URLTransform.swift; sourceTree = ""; }; - DBD2F1627A06A8B9964D885414ACF5C5 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; - DBF62C0D3DDC64AEDEF9A5454DD073DF /* RxDataSources.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxDataSources.release.xcconfig; sourceTree = ""; }; - DC0ED2914A2752C49E36A33BF535265E /* PickerTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerTransition.swift; path = Sources/HXPHPicker/Picker/Transition/PickerTransition.swift; sourceTree = ""; }; - DC143A0F924BCC3BADED1EC0C737709E /* Date+Components.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Components.swift"; path = "Sources/SwiftDate/Date/Date+Components.swift"; sourceTree = ""; }; - DC1657AFEF441E5B1C0C549DEC563130 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - DC18C5356E15BE7E1C0CC9337F251372 /* GTCommonSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTCommonSDK.release.xcconfig; sourceTree = ""; }; - DC22F1149C5A3255693D354900D95EF3 /* YBIBLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBLoadingView.h; path = YBImageBrowser/AuxiliaryView/YBIBLoadingView.h; sourceTree = ""; }; - DC26BBCF312733BE82EE83250C2C92A3 /* DDASLLogCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDASLLogCapture.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDASLLogCapture.h; sourceTree = ""; }; - DC2CF79AC36312C82B7879494F47F301 /* Picker+PhotoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+PhotoManager.swift"; path = "Sources/HXPHPicker/Picker/Util/Picker+PhotoManager.swift"; sourceTree = ""; }; - DC56A5F60C8E478C362670C1A1CA774C /* IQKeyboardReturnManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardReturnManager-dummy.m"; sourceTree = ""; }; - DC59F0F7B131E5DEDB3606A093622755 /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = ""; }; - DC9DF62EF43848BE1C5F234D65BCBC98 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/RxSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; - DC9F85B076220EC545A9E0817FAA7561 /* MJPropertyKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyKey.h; path = MJExtension/MJPropertyKey.h; sourceTree = ""; }; - DD253B873F2B67521833408BB82D843B /* LottieLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieLogger.swift; path = Sources/Public/Logging/LottieLogger.swift; sourceTree = ""; }; - DD3998C13E9D092608AC6F455C49F819 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - DD4AA3C5C4BE5AF110BEF84C2B425AA0 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; - DD52698FB0F645D5FEACA1C0F6F5C222 /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; - DD55E3EE49E45A74B40D393DA730FB1F /* OIMGCDMulticastDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMGCDMulticastDelegate.h; path = OpenIMSDK/Callbacker/OIMGCDMulticastDelegate.h; sourceTree = ""; }; - DD64D1E7E04C06593281056370568625 /* OpenIMSDK-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OpenIMSDK-prefix.pch"; sourceTree = ""; }; - DDA6A6DBB2D7B4E012AC552199A26FF0 /* MAPinAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPinAnnotationView.h; path = MAMapKit.framework/Headers/MAPinAnnotationView.h; sourceTree = ""; }; - DDA8392764223ED541726AFFDD11B807 /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; - DDAEE0D2FE71C52FD936AF6D2095F23E /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - DDB45231F1F5EB920B95C347ADDA37E0 /* NSObject+YBImageBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+YBImageBrowser.h"; path = "YBImageBrowser/Base/NSObject+YBImageBrowser.h"; sourceTree = ""; }; - DDDC822826BE0110F15C916A638B4E1E /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = ""; }; - DE111CCED1194464F57087895D162857 /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = ""; }; - DE120EE326141F76E75CCE2132DEA784 /* ObjectMapper.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ObjectMapper.modulemap; sourceTree = ""; }; - DE123DE4EFA58528204D822F2B11982E /* SGQRCode.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SGQRCode.modulemap; sourceTree = ""; }; - DEE0EF0F26FC8E76181FFE777C562CBA /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - DF15FC481CCD2B54A0EF2DC21F04F419 /* Interpolatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Interpolatable.swift; path = Sources/Public/Keyframes/Interpolatable.swift; sourceTree = ""; }; - DF48A0B567CF35580C11362739F02501 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - DF51400637F64015372A2214FB9C7DBC /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - DF6EA89B3D938E7704E068A325DCF64B /* PreviewLivePhotoViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewLivePhotoViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PreviewLivePhotoViewCell.swift; sourceTree = ""; }; - DF72176577676D86E77A44C57C98F44B /* MJExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.debug.xcconfig; sourceTree = ""; }; - DF9583AFB17055B420C08DE15E843EE4 /* NSObject+Rx+RawRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+RawRepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift"; sourceTree = ""; }; - DFA30AF832CB05775709E542E804898A /* Shape.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Shape.swift; path = Sources/Private/Model/ShapeItems/Shape.swift; sourceTree = ""; }; - DFE14717EDAB4A6C917DC1DC5F037922 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = ""; }; - DFFB232AA60913FE340369D4DA3F470F /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = ""; }; - E003852F0C2ED5D3367CC3BCB111DE40 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - E030B9BDBBA82F74D1F392D96C6B1A31 /* RxCollectionViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift; sourceTree = ""; }; - E04FBA11E10D9D33996D230B6C10B978 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/CoreFoundation.framework; sourceTree = DEVELOPER_DIR; }; - E059300BBA1B1C6E282AABF76CB9A425 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - E0611803A1D39F6DB0A37D8FC405B3AA /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; - E0718A024C52D04F10056B23069A34F1 /* PhotoEditorViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorViewController.swift; path = Sources/HXPHPicker/Editor/Controller/PhotoEditorViewController.swift; sourceTree = ""; }; - E0979D045CAFD37581816EC0C09D3F4F /* YBIBImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageCell.m; path = YBImageBrowser/Image/YBIBImageCell.m; sourceTree = ""; }; - E0CE0ECA12ED2394C3ED2CEEE96A2BA8 /* YBIBCellProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBCellProtocol.h; path = YBImageBrowser/Protocol/YBIBCellProtocol.h; sourceTree = ""; }; - E0DFBFFC4098538E3CF30773ABBD972C /* DDLegacyMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDLegacyMacros.h; path = "Sources/CocoaLumberjack/Supporting Files/DDLegacyMacros.h"; sourceTree = ""; }; - E102058F9539D17E8EEB15112A058EEF /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = ""; }; - E1061F2B93315280A5B73A81ADDA30B9 /* MBProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.release.xcconfig; sourceTree = ""; }; - E1242A1113F84D2391549B66530C0607 /* SDCycleScrollView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDCycleScrollView.modulemap; sourceTree = ""; }; - E1455F488C0E919D87D16AC66AD04C9B /* PrimitiveSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Concurrency.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift"; sourceTree = ""; }; - E1470F23022327507435AC5D5E2E0048 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; - E1490DB57DB8A1ECD1F3411B7761EAFD /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; - E16FC8EC2290249207E00023113CA596 /* KingfisherManager+LivePhoto.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KingfisherManager+LivePhoto.swift"; path = "Sources/General/KingfisherManager+LivePhoto.swift"; sourceTree = ""; }; - E1729A5C0BDDB7D06AEBD8894DA5153F /* IdentifiableValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentifiableValue.swift; path = Sources/Differentiator/IdentifiableValue.swift; sourceTree = ""; }; - E1747F2179C0D6D74389870E47EF63C0 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - E18772AEBB906F18A2BFD0E99C107C5B /* OIMGroupMemberInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMGroupMemberInfo.h; path = OpenIMSDK/Model/OIMGroupMemberInfo.h; sourceTree = ""; }; - E1BCDBFBE4B6AE506F7500D541CCA4B8 /* YBIBVideoActionBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoActionBar.h; path = Video/YBIBVideoActionBar.h; sourceTree = ""; }; - E1C6598101489A7E7111805E5CF77949 /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/Extensions/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; - E1D1566EFC577C509F7BD737CAC55973 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - E1DB25C161114385C7539D92C70848E7 /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = ""; }; - E1DD7D29BF1FE1A9B3EA3877C3D2A929 /* SGGenerateQRCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGGenerateQRCode.h; path = SGQRCode/QRCode/SGGenerateQRCode.h; sourceTree = ""; }; - E20299373650F59323E2017B3AFF9EA4 /* PhotoPreviewViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPreviewViewCell.swift; sourceTree = ""; }; - E205C494CC0EE530BD0158105D0D2305 /* MAMultiColoredPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiColoredPolylineRenderer.h; path = MAMapKit.framework/Headers/MAMultiColoredPolylineRenderer.h; sourceTree = ""; }; + D5FE50E2C3759529F39015ADF4515455 /* UIRefreshControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRefreshControl+Rx.swift"; path = "RxCocoa/iOS/UIRefreshControl+Rx.swift"; sourceTree = ""; }; + D5FE6488A1A339DC17ED5A3C860C6FE3 /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/Extensions/StringEncoding+Alamofire.swift"; sourceTree = ""; }; + D6153CC74CC2C4EA27387FCAB1619F3C /* nwise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = nwise.swift; path = Source/RxSwift/nwise.swift; sourceTree = ""; }; + D6153E9D8FB50D6577852480096F689B /* CocoaMQTT5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTT5.swift; path = Source/CocoaMQTT5.swift; sourceTree = ""; }; + D62C830395ABE984B932E2867CE13845 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + D63FD645FB3FE4E761A51B32132ED16C /* OIMManager+Login.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Login.m"; path = "OpenIMSDK/Interface/OIMManager+Login.m"; sourceTree = ""; }; + D64FB7527955C366D9B03609179CA6CD /* Core+PHAssetCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+PHAssetCollection.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+PHAssetCollection.swift"; sourceTree = ""; }; + D6671E4DAF2E9CAB55C735355A9FEACF /* DefaultsObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsObserver.swift; path = Sources/DefaultsObserver.swift; sourceTree = ""; }; + D684D3C9D84C465A70ABF5B38AB813C7 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; + D68DD308DBBCA95916FA607C00564308 /* UINavigationController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+Rx.swift"; path = "RxCocoa/iOS/UINavigationController+Rx.swift"; sourceTree = ""; }; + D6A149B6BBD06C2232430F6ABB7B1407 /* IQKeyboardToolbarManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Internal.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Internal.swift"; sourceTree = ""; }; + D6ABB50E1DD67CD1F4172B92AB78FBC1 /* GTCommonSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = GTCommonSDK.xcframework; sourceTree = ""; }; + D6C3E4424C9BB47614486B556FEF7AEA /* AssetManager+LivePhoto.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+LivePhoto.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+LivePhoto.swift"; sourceTree = ""; }; + D6E9D7AF870E8D988924C6290B87CB66 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; + D6ECB7242FE69E5D1474792D4B6FBD21 /* BundleImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BundleImageProvider.swift; path = Sources/Public/iOS/BundleImageProvider.swift; sourceTree = ""; }; + D6FCB776FDC1A9889154E2C982013701 /* PhotoError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoError.swift; path = Sources/HXPHPicker/Core/Model/PhotoError.swift; sourceTree = ""; }; + D705995FC6E23FD467B4D98A67815ACE /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + D70C39F07A6519EF9AAB2BE1DF2272BA /* MATerrainOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATerrainOverlay.h; path = MAMapKit.framework/Headers/MATerrainOverlay.h; sourceTree = ""; }; + D76CFBF1AF771B8A842900B6363C910F /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; + D77FDB1C0C58A70586287759D338EF34 /* IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardNotification-Info.plist"; sourceTree = ""; }; + D79DA9ED5F22B3153EAF6FB853B9ABCE /* OIMSearchParam.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSearchParam.h; path = OpenIMSDK/Model/OIMSearchParam.h; sourceTree = ""; }; + D7B97434434069C9B201866FE0542B05 /* OIMFriendApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMFriendApplication.m; path = OpenIMSDK/Model/OIMFriendApplication.m; sourceTree = ""; }; + D7E778E7BD5CE4AAFAD2713C620AF5E0 /* Calendars.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Calendars.swift; path = Sources/SwiftDate/Supports/Calendars.swift; sourceTree = ""; }; + D7E9B43B55164D16B6F6795C9CB4ABD4 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; + D7F7D27217E891C5F29A685C844B453C /* RxNavigationControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxNavigationControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift; sourceTree = ""; }; + D80F30B4976169EF9937B6A44FD12D40 /* MJPropertyType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyType.h; path = MJExtension/MJPropertyType.h; sourceTree = ""; }; + D813A5AF071FD0BD4182C8B22E365A01 /* UIDatePicker+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDatePicker+Rx.swift"; path = "RxCocoa/iOS/UIDatePicker+Rx.swift"; sourceTree = ""; }; + D829C1EF7480121F20D5D88502020A07 /* RxTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTarget.swift; path = RxCocoa/Common/RxTarget.swift; sourceTree = ""; }; + D83A09F42FB0A0DEA3C2CE28C6C23CCF /* Diffable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Diffable.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Diffable.swift; sourceTree = ""; }; + D8615B74C79F1A3751FE67C06080A6DC /* ZXSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = ZXSDK.framework; sourceTree = ""; }; + D862C584B59F742B093BA15B55C64CC9 /* IQKeyboardToolbarManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.debug.xcconfig; sourceTree = ""; }; + D88363A45076A8089140ABB4169C44BE /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = Sources/RxDataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; + D88DF71236E722809CDC054A7C195C5F /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; + D8C4C72BC795A5A37AB73555B0E71B23 /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = ""; }; + D8CF20E73C6434D4119C8CA90DE8CE77 /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = ""; }; + D8E1A6C1868911E09185610292922398 /* DisplayLink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisplayLink.swift; path = Sources/Utility/DisplayLink.swift; sourceTree = ""; }; + D8FE2431BB2C01D7B99718C4ED2D8475 /* OpenIMSDK.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = OpenIMSDK.modulemap; sourceTree = ""; }; + D9020DDE726D79775743E62A9859FF53 /* repeatWithBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = repeatWithBehavior.swift; path = Source/RxSwift/repeatWithBehavior.swift; sourceTree = ""; }; + D910123998FD43BE6AD2DDD3A3D45594 /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; + D936862DBFB3B7043312F4C3C681F879 /* IQKeyboardToolbar.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbar.modulemap; sourceTree = ""; }; + D94DD830C0433EF2212975E170A8EF05 /* SolidCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift; sourceTree = ""; }; + D9805B1AE674AAFF2B25D9BB35A39FCD /* sharpyuv_cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_cpu.c; path = sharpyuv/sharpyuv_cpu.c; sourceTree = ""; }; + D9A16E733FC1E5FE0D380BACDD771918 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Features/Combine.swift; sourceTree = ""; }; + D9A80A81973DFC185D749BF15E3B9010 /* DropShadowNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/LayerEffectNodes/DropShadowNode.swift; sourceTree = ""; }; + D9AA6644C740DEBA4D2CFE120147749F /* MAOfflineMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMap.h; path = MAMapKit.framework/Headers/MAOfflineMap.h; sourceTree = ""; }; + D9B0C75F024986060AABFDD7233FC611 /* DateRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateRepresentable.swift; path = Sources/SwiftDate/DateRepresentable.swift; sourceTree = ""; }; + D9C19B02A149A3CE437F509ED0B3F6D6 /* RxPickerViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift; sourceTree = ""; }; + D9C6AC3FDFA670E0F4363A7F5CCA5E45 /* SwiftDate.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftDate.modulemap; sourceTree = ""; }; + D9DE6D779E74364FC3F954FDE24695C3 /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; + D9E1FF60C3DFA18D3698A5B0976068D9 /* GroupOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift; sourceTree = ""; }; + D9E2E94F5A368A73CC30515962A10A16 /* EmptyView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EmptyView.swift; path = Sources/HXPHPicker/Picker/View/EmptyView.swift; sourceTree = ""; }; + D9E55D135AD87DB4E17C237AFECE26C7 /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = ""; }; + DA0366DC09C0344E545847265A75E5AF /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; + DA0D288497955329D2E2EEE0E11E4A4F /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + DA18A9D0FE32D587402920F04251F766 /* LayerEffectNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerEffectNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/LayerEffectNodes/LayerEffectNode.swift; sourceTree = ""; }; + DA3E6508700E6F2FE2BF9BEBCE2BE979 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; + DA4B9E352F29C90F44D0244433AF8504 /* CustomLanguage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomLanguage.swift; path = Sources/HXPHPicker/Core/Model/CustomLanguage.swift; sourceTree = ""; }; + DA8120E1B44E61CCB3091659BA9A096D /* IQKeyboardReturnManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnManager.swift; path = IQKeyboardReturnManager/Classes/IQKeyboardReturnManager.swift; sourceTree = ""; }; + DAB300A21E292F64E0091E1CB70BE27E /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = ""; }; + DAC1E692C3BCF796EC57061986DABEAB /* sharpyuv_cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sharpyuv_cpu.h; path = sharpyuv/sharpyuv_cpu.h; sourceTree = ""; }; + DADDA466B0F9556AA080958617E8F666 /* IQTextView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.release.xcconfig; sourceTree = ""; }; + DAFFEE4F2543B08BDE4F5A2D9D9F9D6F /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = ""; }; + DB1752A2DA09B80102258B1B4F99B43D /* OIMGroupInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMGroupInfo.m; path = OpenIMSDK/Model/OIMGroupInfo.m; sourceTree = ""; }; + DB20F139AA399040EFA01315E1AC09BE /* SDCycleScrollView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDCycleScrollView.modulemap; sourceTree = ""; }; + DB42CF3C2FE27263094321A19D8E34CD /* PathElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathElement.swift; path = Sources/Private/Utility/Primitives/PathElement.swift; sourceTree = ""; }; + DB4E4ECB3B5E8C8B4E15FCD674B35148 /* ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist"; sourceTree = ""; }; + DB591B97E8E5DE9272DB70B726C9919E /* EpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModeled.swift; sourceTree = ""; }; + DBB464629EFF24FC46445D5425B39D7E /* CocoaMQTTTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTTypes.swift; path = Source/CocoaMQTTTypes.swift; sourceTree = ""; }; + DBC013570B52683EAAC1DC3751BAE86A /* DDLegacyMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDLegacyMacros.h; path = "Sources/CocoaLumberjack/Supporting Files/DDLegacyMacros.h"; sourceTree = ""; }; + DBCBAB931CCEE194C1467906C7B7D94C /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift; sourceTree = ""; }; + DBD5C92406FF93CF245F5E43F82BE580 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; + DC0328F98F4917C4905DA2AD95CC417A /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; + DC1E150CEE2FA713EF8E77E76B5F0E06 /* HXPHPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HXPHPicker-dummy.m"; sourceTree = ""; }; + DC32760A5BC1C280C10033E024BA7D38 /* ResourceBundle-RxSwift_Privacy-RxSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-RxSwift_Privacy-RxSwift-Info.plist"; sourceTree = ""; }; + DC327E3E09A630F76C0A3C2C4014967D /* ClassReference.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassReference.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/ClassReference.swift; sourceTree = ""; }; + DCACD2069A5D045848CDC2E5FCB44305 /* IntegerOperators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IntegerOperators.swift; path = Sources/IntegerOperators.swift; sourceTree = ""; }; + DCCCE1F7F46C22320520E6F805D4750A /* MAMVTTileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlayRenderer.h; path = MAMapKit.framework/Headers/MAMVTTileOverlayRenderer.h; sourceTree = ""; }; + DD1620B77332357059766C062C7334E3 /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = ""; }; + DD18BE8DE0EF2EA417D20CE3978E8782 /* MAUserLocationRepresentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocationRepresentation.h; path = MAMapKit.framework/Headers/MAUserLocationRepresentation.h; sourceTree = ""; }; + DD3A5896FE343343349FD8AFEDECA6F3 /* MJExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-prefix.pch"; sourceTree = ""; }; + DDAB292AFEE428D9B577D74F07D5A0EF /* OIMManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMManager.h; path = OpenIMSDK/Interface/OIMManager.h; sourceTree = ""; }; + DDC69EBC09E79F4820A84FF0EE4B000E /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = ""; }; + DDCC82CDB4622F4F83A99EB2D2AE120E /* ImageContentType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContentType.swift; path = Sources/HXPHPicker/Core/Model/ImageContentType.swift; sourceTree = ""; }; + DE06532E7C05F4532ABBECA80B3BFBE3 /* DDASLLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDASLLogger.m; path = Sources/CocoaLumberjack/DDASLLogger.m; sourceTree = ""; }; + DE1E6901934EE596740D842380286A4D /* MJPropertyType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyType.m; path = MJExtension/MJPropertyType.m; sourceTree = ""; }; + DE2180C541DB14418AE24C9C09FB2399 /* MGCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MGCDAsyncUdpSocket.m; path = Source/GCD/MGCDAsyncUdpSocket.m; sourceTree = ""; }; + DE2ABF42C1496614D3DDD6544E992F73 /* LayerStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerStyle.swift; path = Sources/Private/Model/LayerStyles/LayerStyle.swift; sourceTree = ""; }; + DE508651E5E549F78249BDCAD16BFD32 /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; + DE5BCC0BA69E61F204E9386CD87BBA20 /* MarqueeLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MarqueeLabel.modulemap; sourceTree = ""; }; + DE63E8D0A27679395591CD603D53B1EE /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; + DE691F3994CC695878CAD1302104BA69 /* MAOfflineItemNationWide.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemNationWide.h; path = MAMapKit.framework/Headers/MAOfflineItemNationWide.h; sourceTree = ""; }; + DE742566AA0F5FFDE0409CF795E414D7 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; + DE77A4C4BB20BB9E98756314B59D7425 /* Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signal.swift; path = RxCocoa/Traits/Signal/Signal.swift; sourceTree = ""; }; + DEDA766A20F0E865ABB8743367B99D4F /* YBImageBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YBImageBrowser.debug.xcconfig; sourceTree = ""; }; + DF0D59AB65BAC48A5EE451E2781AF508 /* DDLoggerNames.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDLoggerNames.m; path = Sources/CocoaLumberjack/DDLoggerNames.m; sourceTree = ""; }; + DF151D352C3F940ACCE3650BDFC0D4D4 /* AnyValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueProvider.swift; path = Sources/Public/DynamicProperties/AnyValueProvider.swift; sourceTree = ""; }; + DF26523D4FE930F3F717C1C2811DC2D6 /* MATileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlay.h; path = MAMapKit.framework/Headers/MATileOverlay.h; sourceTree = ""; }; + DF3B0FB9898350076BE5086B8A648CA0 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/Features/EventMonitor.swift; sourceTree = ""; }; + DF4F5D327A12E7ACE2DFF76883BD526E /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUIIntrinsicContentSizeInvalidator.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIIntrinsicContentSizeInvalidator.swift; sourceTree = ""; }; + DF4F8D8EEF753E757F917C580AE90AF6 /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = ""; }; + DF7D16D0FE91DDE31FC402A033B81E21 /* MACustomBuildingOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlayRenderer.h; path = MAMapKit.framework/Headers/MACustomBuildingOverlayRenderer.h; sourceTree = ""; }; + DF8B4E43D6A80D3F3D3212D2C78AB121 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; + DF94A15ED1293E30E88A59E0F6D62484 /* MqttCocoaAsyncSocket.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MqttCocoaAsyncSocket.modulemap; sourceTree = ""; }; + DFA03B4AC805A46101403448BA891DEF /* Popover.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Popover.swift; path = Classes/Popover.swift; sourceTree = ""; }; + DFA273262C05031D86CC3431CFFA95B7 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; + DFACA4AD88EF25B756AD0FDF375677F3 /* LayerTextProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerTextProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift; sourceTree = ""; }; + DFB269DEB8628E1799B027D9BCE9841F /* EditorType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorType.swift; path = Sources/HXPHPicker/Editor/Model/EditorType.swift; sourceTree = ""; }; + DFB5011F8D337C897BA3D4066DAA8DAB /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; + DFD1D7F5AE312A4CF621602C119A807D /* MJPropertyKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyKey.h; path = MJExtension/MJPropertyKey.h; sourceTree = ""; }; + DFDA5F5E6DE9CF3C0BF1AFC98DA6D9ED /* Archive+Reading.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Reading.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Reading.swift"; sourceTree = ""; }; + DFF623CF9D4FF72AB1D21B2441FFEE76 /* TimePeriod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriod.swift; path = Sources/SwiftDate/TimePeriod/TimePeriod.swift; sourceTree = ""; }; + DFFFE5A3E20A221292DEDE2DFCC56A72 /* TrimPathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrimPathNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift; sourceTree = ""; }; + E0018F3662070E563761A8EF917D19F4 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; + E016D4B4D2A3A743CC8BD94D83B28D78 /* MJExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJExtension.modulemap; sourceTree = ""; }; + E02070E552BE1AC1C311C83E723E8C37 /* PhotoPanGestureRecognizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPanGestureRecognizer.swift; path = Sources/HXPHPicker/Core/Model/PhotoPanGestureRecognizer.swift; sourceTree = ""; }; + E02B5460C16F5447650288B96410B6BF /* MAPoiFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPoiFilter.h; path = MAMapKit.framework/Headers/MAPoiFilter.h; sourceTree = ""; }; + E078D2663D3DCEFA605A0BE7820890AE /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = ""; }; + E078D46C2A601050DB01A977C864B192 /* AMap3DMap.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMap3DMap.release.xcconfig; sourceTree = ""; }; + E07E0B4611AA88852073CCA616A9032A /* GradientFill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFill.swift; path = Sources/Private/Model/ShapeItems/GradientFill.swift; sourceTree = ""; }; + E08C9F4051C49DE50433663D3F76F9D6 /* MAOfflineProvince.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineProvince.h; path = MAMapKit.framework/Headers/MAOfflineProvince.h; sourceTree = ""; }; + E09E6912A84AAB34450313597D8759AE /* HexColorTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HexColorTransform.swift; path = Sources/HexColorTransform.swift; sourceTree = ""; }; + E0EA20F9C28C606A3D5D4FFEF8208E80 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; + E103C1EB95D05A5113B2717FBA2379A3 /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = ""; }; + E10C79159E195F6C81ED9B2E89F90A37 /* AMapSearch.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapSearch.debug.xcconfig; sourceTree = ""; }; + E10CC87B0811F86105A32F88A4F75123 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; + E12432D22B9EE08D0AAFE1409868E544 /* MATouchPoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATouchPoi.h; path = MAMapKit.framework/Headers/MATouchPoi.h; sourceTree = ""; }; + E14EB83C1DB19335E77096319A0E2693 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; + E16098AC15C72D87F44C638C00C7C494 /* Defaults+Subscripts.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Defaults+Subscripts.swift"; path = "Sources/Defaults+Subscripts.swift"; sourceTree = ""; }; + E16FDF7DD49FB5D341120E3EC5AC1D5C /* PhotoEditorViewController+Export.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoEditorViewController+Export.swift"; path = "Sources/HXPHPicker/Editor/Controller/PhotoEditorViewController+Export.swift"; sourceTree = ""; }; + E1B0BBCA140DCBB401B2DB7E116FC93D /* MJExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-umbrella.h"; sourceTree = ""; }; + E1F62D4EADB9E5D416AF1F2EBB690434 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; + E1FB0CE6CC1C2683C361076E7AB82D61 /* OIMVideoElem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMVideoElem.h; path = OpenIMSDK/Model/OIMVideoElem.h; sourceTree = ""; }; + E23A82FD88F15BCED19B1985CF16548D /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; E23C076BA70925415F490FEDB215DA92 /* SwiftyJSON */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftyJSON; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E24C7A21B6750630893FB2EA5D1EFFBA /* RoundedCorners.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RoundedCorners.swift; path = Sources/Private/Model/ShapeItems/RoundedCorners.swift; sourceTree = ""; }; - E24E20ED22C9155BB317012B54D36A84 /* YBImageBrowser-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "YBImageBrowser-Info.plist"; sourceTree = ""; }; - E25DE705587B10CE643D1DF86AA2C68B /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = ""; }; - E2664E5BCD9D8BA910C7D09EA6C2AFBA /* OIMAtElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMAtElem.m; path = OpenIMSDK/Model/OIMAtElem.m; sourceTree = ""; }; - E27470085DEB31191E56C66DFE1A64EF /* SectionedChangeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedChangeset.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/SectionedChangeset.swift; sourceTree = ""; }; - E29063E89830E3D7872C21835ACA7C8E /* BundleImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BundleImageProvider.swift; path = Sources/Public/iOS/BundleImageProvider.swift; sourceTree = ""; }; - E2C71A38C131FFE9B3E38B8BD28A3039 /* MAPoiFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPoiFilter.h; path = MAMapKit.framework/Headers/MAPoiFilter.h; sourceTree = ""; }; - E2CFE83EA77120219C5AB316D4F80D4D /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; - E2FB81BBD6BCBE9C6D6A155576A27671 /* AnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/AnimationLayer.swift; sourceTree = ""; }; - E31B8E2DE2928272DE12C9F3AA9BF334 /* Vectors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Vectors.swift; path = Sources/Public/Primitives/Vectors.swift; sourceTree = ""; }; - E3272B858A42201B36637AFF8EAF9B45 /* PhotoPickerController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerController.swift; path = Sources/HXPHPicker/Picker/Controller/PhotoPickerController.swift; sourceTree = ""; }; - E32BDB5F008E014DF2899A52778B0534 /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = ""; }; - E335BCACA8215B4F832B6972CE0B45A4 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; - E33CB738E9BEF4C5E064BEB48D7C52D1 /* RxCocoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoa.h; path = RxCocoa/RxCocoa.h; sourceTree = ""; }; - E37A739569DBBD3BECE189F4986936E1 /* TextInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextInput.swift; path = RxCocoa/Common/TextInput.swift; sourceTree = ""; }; - E3A95178FB209B1FAE668822F7A4DEFC /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; - E3B2CD25D2368F0AD91857FAB79E8FB1 /* YYImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YYImage-dummy.m"; sourceTree = ""; }; - E3D5CE2653C1E5851B93DB2D229DEAD5 /* SwiftKeychainWrapper-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SwiftKeychainWrapper-Info.plist"; sourceTree = ""; }; - E3D6A062A7548B784F291EECB08E8550 /* IQTextView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextView-dummy.m"; sourceTree = ""; }; - E3EEB3D929F12DA17005E1F37882A2F8 /* LayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerModel.swift; path = Sources/Private/Model/Layers/LayerModel.swift; sourceTree = ""; }; - E3FC69F2F25AD2A73471B55D72EF3D88 /* RxCollectionViewSectionedAnimatedDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewSectionedAnimatedDataSource.swift; path = Sources/RxDataSources/RxCollectionViewSectionedAnimatedDataSource.swift; sourceTree = ""; }; - E42FFE14BC42749A348DCFC03CFCB2BF /* AssetManager+AVAssetExportSession.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+AVAssetExportSession.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+AVAssetExportSession.swift"; sourceTree = ""; }; - E4510CDCA226DCE0E5A193FC8910CA58 /* YBImageBrowserDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBImageBrowserDataSource.h; path = YBImageBrowser/Protocol/YBImageBrowserDataSource.h; sourceTree = ""; }; - E48DCE42501B7013F70D4B72A64A9C20 /* MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJProperty.m; path = MJExtension/MJProperty.m; sourceTree = ""; }; + E2604177A3E85192F036556469BE54E5 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; + E283C787829B0255F3EA02250F65433D /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; + E2B7730E3EDC09E9C27731F9211A03E2 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + E2DF4020FB18B7407F948B895C5A055E /* MqttAuthProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttAuthProperties.swift; path = Source/MqttAuthProperties.swift; sourceTree = ""; }; + E3043900069A7BFFDBEFA4E3F38FBBC2 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = ""; }; + E31ABC3FC220CB286BD36808983A58C9 /* SDCycleScrollView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDCycleScrollView-umbrella.h"; sourceTree = ""; }; + E36023FA5050A88E423759EE0EFCD497 /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItem.swift; sourceTree = ""; }; + E3620E9742F07E1E2733403D44E6B104 /* MJExtensionConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtensionConst.h; path = MJExtension/MJExtensionConst.h; sourceTree = ""; }; + E36C51FA8863274AB0025855E64ACC3D /* ToJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToJSON.swift; path = Sources/ToJSON.swift; sourceTree = ""; }; + E3ADD0BE9D6A447D24B498B2BD362212 /* HXPHPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "HXPHPicker-Info.plist"; sourceTree = ""; }; + E3AEA4903A4A524064387947E97A51C2 /* UploadFileCallbackProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UploadFileCallbackProxy.m; path = OpenIMSDK/CallbackProxy/UploadFileCallbackProxy.m; sourceTree = ""; }; + E3C18EF459A92F67B78ABCB4D4C4B7DB /* YBImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBImage.h; path = YBImageBrowser/Image/YBImage.h; sourceTree = ""; }; + E3CF53606678C5355554CEAF86E72A88 /* NetworkAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkAsset.swift; path = Sources/HXPHPicker/Picker/Model/NetworkAsset.swift; sourceTree = ""; }; + E4047E809A4658ECA83A30E6061F84DC /* KeyframeGroup+exactlyOneKeyframe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KeyframeGroup+exactlyOneKeyframe.swift"; path = "Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift"; sourceTree = ""; }; + E41C167A42094403E6D01F0C012B89B5 /* IdentifiableValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentifiableValue.swift; path = Sources/Differentiator/IdentifiableValue.swift; sourceTree = ""; }; + E45E6AF7340B004DA48A8AE2F8B53F37 /* MqttCocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MqttCocoaAsyncSocket-dummy.m"; sourceTree = ""; }; + E4876B235EFC3F79E4FC7B2FAF3A32B1 /* ImageAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageAsset.swift; path = Sources/Private/Model/Assets/ImageAsset.swift; sourceTree = ""; }; E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJRefresh; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E4B119AE75A9A04C0FC424C31B4F171B /* OIMMessageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMMessageInfo.h; path = OpenIMSDK/Model/OIMMessageInfo.h; sourceTree = ""; }; - E4B19EAC26B64E59FF162E36726E6092 /* CoreTextRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CoreTextRenderLayer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift; sourceTree = ""; }; - E4C25CF77476705A8727ED57006FDCA2 /* UICollectionView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+Rx.swift"; path = "RxCocoa/iOS/UICollectionView+Rx.swift"; sourceTree = ""; }; - E4D3017944C2D05C9DAE6514D3E169CD /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - E4E622365146682D7E08A6242B2B73CB /* FromJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FromJSON.swift; path = Sources/FromJSON.swift; sourceTree = ""; }; - E4F5EC1C754116115B07C3500772FE8C /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = ""; }; - E5000C74964362967707C8378D889444 /* RxWKNavigationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxWKNavigationDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift; sourceTree = ""; }; - E50D3CE2D0594CBF14EB8467CCA02548 /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; - E517A2C282848FD3AE6C7353C8CFAEEA /* SGWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGWeakProxy.h; path = SGQRCode/WeakProxy/SGWeakProxy.h; sourceTree = ""; }; - E535975A1E831BDA5977960E97506533 /* ObservableConvertibleType+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Driver.swift"; path = "RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift"; sourceTree = ""; }; - E5EE5A8E12E72187726895C340E99A1D /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; - E5F3B932CFBC76ABF24A9176D190C4B5 /* PhotoAsset+URL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoAsset+URL.swift"; path = "Sources/HXPHPicker/Picker/Model/PhotoAsset+URL.swift"; sourceTree = ""; }; - E5F61B293B8A4C483CC96C8328E45C9D /* PreviewVideoControlViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewVideoControlViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PreviewVideoControlViewCell.swift; sourceTree = ""; }; - E60749802573F5E98F0C09AA9D2F3812 /* HexColorTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HexColorTransform.swift; path = Sources/HexColorTransform.swift; sourceTree = ""; }; - E614EC925D6A4CB0BB4E4E4562902436 /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; - E620B11AE2F7F2E8AE1F8A1757329947 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/Features/URLEncodedFormEncoder.swift; sourceTree = ""; }; - E64CECF2B277E1740E8F08CA7B8F77A5 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - E653E3EC2CFFB240C0B26C63037A8603 /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = ""; }; - E66C33D1549606616E2570F9CA08627C /* UIStepper+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIStepper+Rx.swift"; path = "RxCocoa/iOS/UIStepper+Rx.swift"; sourceTree = ""; }; - E66DA86ED33D4956EA0F327875149B12 /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = ""; }; - E67302D9EB7537412F3092EFC7E74F0F /* IQTextInputViewNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-umbrella.h"; sourceTree = ""; }; - E6C43FEBD18CE9598FA1A74938867514 /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; - E6DD771B15976B2FCF55AF7141BF75B0 /* AMapLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationManager.h; path = AMapLocationKit.framework/Headers/AMapLocationManager.h; sourceTree = ""; }; - E6E25AB29490F32DE655534A02FF32EA /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; - E6E2849379444297D6642C171B517AA2 /* CocoaLumberjack.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLumberjack.release.xcconfig; sourceTree = ""; }; - E6FB79E861E4F3D89D4BDDCF33899DB8 /* PublishRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishRelay.swift; path = RxRelay/PublishRelay.swift; sourceTree = ""; }; - E70DEF2275BA1DE435D81CA32E5E7FB6 /* CocoaLumberjack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CocoaLumberjack.h; path = "Sources/CocoaLumberjack/Supporting Files/CocoaLumberjack.h"; sourceTree = ""; }; - E717BD781EB091185A79C355C520A67A /* RxTableViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift; sourceTree = ""; }; - E747366903F9ED5B7CBB1D60E84BB103 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; - E76CF312E733637C8775BF05416542E0 /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - E7742E45657024F0DDFEBD97D410588B /* AnimationCacheProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationCacheProvider.swift; path = Sources/Public/AnimationCache/AnimationCacheProvider.swift; sourceTree = ""; }; - E79CAC9375ACAB81CC6DF05A6F6DC26F /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; - E7F0E8464FD7AF4F138EB5EAA5FA48F4 /* InfiniteOpaqueAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteOpaqueAnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/InfiniteOpaqueAnimationLayer.swift; sourceTree = ""; }; - E8223C1F95FE293B35A7BBCB5B6B8125 /* PhotoManager+Language.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoManager+Language.swift"; path = "Sources/HXPHPicker/Core/Util/PhotoManager+Language.swift"; sourceTree = ""; }; - E82B6099394C2F5A543E192B85CC8691 /* ContentConfigurableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContentConfigurableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ContentConfigurableView.swift; sourceTree = ""; }; - E834870E6150A5FFB1FCE3D10C8A1A67 /* CollectionViewSectionedDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollectionViewSectionedDataSource.swift; path = Sources/RxDataSources/CollectionViewSectionedDataSource.swift; sourceTree = ""; }; - E867074B27E8FABABEB3A062C89F10C7 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - E8D7DF632932C141A3A0BC1099B53183 /* Archive+Writing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Writing.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Writing.swift"; sourceTree = ""; }; - E8DA1971C85095100A5EE182440E27A2 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; - E8E3080423B25BF6C6075F57320D28B6 /* YBIBCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBCollectionView.m; path = YBImageBrowser/Base/YBIBCollectionView.m; sourceTree = ""; }; - E90211449D1194D31D1BE906BFB6FEBB /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Source/SwiftyJSON/PrivacyInfo.xcprivacy; sourceTree = ""; }; - E906AAEBF4DCC02DEAD03D193A8E8CC1 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - E91916B07C37A209D25B7D910842E604 /* String+IdentifiableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+IdentifiableType.swift"; path = "Sources/RxDataSources/String+IdentifiableType.swift"; sourceTree = ""; }; - E926FA11E8BA74B1F4F9474810B87590 /* SwiftKeychainWrapper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftKeychainWrapper.debug.xcconfig; sourceTree = ""; }; - E92A2F23BD154B929E5D231A46F3FCA1 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - E9603A4E8FF5FF21DE3C230D19267661 /* SGScanCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SGScanCode.h; path = SGQRCode/QRCode/SGScanCode.h; sourceTree = ""; }; - E97AC31A9AC2AFCB0774AC162D89D243 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; - E98072F9E435CA10388C986C4EAA96F6 /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; - E9A43AEB8060E50780CE46E8FFB7F94D /* YBIBVideoData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoData.m; path = Video/YBIBVideoData.m; sourceTree = ""; }; - E9C0E7881BEB03E2172FC9B3A9B1ABB3 /* RxSwiftExt-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxSwiftExt-Info.plist"; sourceTree = ""; }; - E9C22CBBE02969A90F816D150A20E9FF /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; - E9DE577BCD3B1980C66068F5BBF9C1DA /* KeyframeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeExtensions.swift; path = Sources/Private/Utility/Interpolatable/KeyframeExtensions.swift; sourceTree = ""; }; - E9EAC640CE6D964C3A01D2AD0D9CA661 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = ""; }; - E9FDA15702E93A36F94093E64FFCBDAA /* GTCommonSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GTCommonSDK-xcframeworks.sh"; sourceTree = ""; }; - EA293B714E3EFFF2B4E110D6741A5097 /* UIView+SDExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SDExtension.h"; path = "SDCycleScrollView/Lib/SDCycleScrollView/UIView+SDExtension.h"; sourceTree = ""; }; - EA50E8FECBEF17BCC8D53B8CD0D61CA1 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - EA7E04CEEC7A79FB05E2DE3DAE634DF4 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; - EA7F7E45797654B45F07848151665690 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - EA80AAE9A8F4745194A22138D50BAC46 /* PhotoPreviewSelectedViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewSelectedViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPreviewSelectedViewCell.swift; sourceTree = ""; }; - EA9838D5568CF08D46DA7E59F8CF6C0D /* DotLottieFileHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieFileHelpers.swift; path = Sources/Public/DotLottie/DotLottieFileHelpers.swift; sourceTree = ""; }; - EA9CEA59AF7E8F2341E1A92B8FB97E66 /* distinct+RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "distinct+RxCocoa.swift"; path = "Source/RxCocoa/distinct+RxCocoa.swift"; sourceTree = ""; }; - EAB7003BBB2F9EF9DA4E095D91280CC0 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - EAEC149E660F72FBA6F717D362ECF1F5 /* TestHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestHelpers.swift; path = Sources/Private/Utility/Debugging/TestHelpers.swift; sourceTree = ""; }; - EAF1091660C6429B118149BE01714056 /* OIMManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMManager.m; path = OpenIMSDK/Interface/OIMManager.m; sourceTree = ""; }; - EB04F626FFD85B894E25E3C7C4001505 /* UIViewController+ParentContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ParentContainer.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift"; sourceTree = ""; }; - EB09968F5CF26869F7C209FA6BA9D6AB /* DataRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataRequest.swift; path = Source/Core/DataRequest.swift; sourceTree = ""; }; - EB19BE65B98A0E3ED0F4558833C481CC /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; - EB3C8E0FE0025F189650168E3AF6C6BE /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = ""; }; - EB451DC015F96BFF40FAA681B9B222BD /* IQKeyboardReturnManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.release.xcconfig; sourceTree = ""; }; - EB48C25BA36E7A3A90DF6A7ACCF696A7 /* Editor+UIImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Editor+UIImage.swift"; path = "Sources/HXPHPicker/Editor/Extension/Editor+UIImage.swift"; sourceTree = ""; }; - EB7396B87B6C023F0EC483AD518CC57D /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - EB7E2AEED7BA2AEFE99F0369B0A398E2 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - EB8EED23F953B16F768563FC931049B9 /* DropShadowStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowStyle.swift; path = Sources/Private/Model/LayerStyles/DropShadowStyle.swift; sourceTree = ""; }; - EB9F979185CFD56D1A727A76434687D2 /* UIScrollView+reachedBottom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+reachedBottom.swift"; path = "Source/RxCocoa/UIScrollView+reachedBottom.swift"; sourceTree = ""; }; - EBC3EFE6841863A2FC0E1F280D5E0C18 /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = ""; }; - EBC7D79FCFE59C1D4E2B2EEC9415C53B /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - EC0B5B97AEDE09AD78D399CF70F6468F /* IQKeyboardToolbarPlaceholderConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarPlaceholderConfiguration.swift; path = IQKeyboardToolbar/Classes/Placeholder/IQKeyboardToolbarPlaceholderConfiguration.swift; sourceTree = ""; }; - EC5B534FF1A78D5C2AC189C51939C944 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; - EC75BE3FA4A00604568829C9FF27AAAE /* OIMSimpleRequstInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSimpleRequstInfo.m; path = OpenIMSDK/Model/OIMSimpleRequstInfo.m; sourceTree = ""; }; - EC837C19FBB78BFC74ECCA16877EF7B6 /* InvertedMatteLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvertedMatteLayer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift; sourceTree = ""; }; - EC839CBDE62FBDF1FB0A9B6E583E159C /* RxTableViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift; sourceTree = ""; }; - EC974D5440D46C2475A13210B5072DF5 /* ISOParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISOParser.swift; path = Sources/SwiftDate/Formatters/ISOParser.swift; sourceTree = ""; }; - ECB898FD774D9886C3F4389AF60B275C /* EmptyViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EmptyViewConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/EmptyViewConfiguration.swift; sourceTree = ""; }; - ECDCA6BEAFD67BE73F5C9BDE8C1B4D50 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; - ECE162FF4B96BD214DA70E69F32A4DC8 /* MarqueeLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MarqueeLabel.modulemap; sourceTree = ""; }; - ED63C76DB0E4B5BC896EBC92A06916DC /* VideoEditorCropView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorCropView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorCropView.swift; sourceTree = ""; }; - ED84EE15E780A4989C1BA79801B0FCF2 /* IQKeyboardCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.debug.xcconfig; sourceTree = ""; }; - EDB10F862D32D2EB8157A71B23F041C5 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - EDB98AB321A5B30B05F0F320384699D3 /* StrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift; sourceTree = ""; }; - EDD4F7BA6A5912E04B2CD34EE7001335 /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; - EDE1FC37AA6F040B0AF72E17C31A9E4D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/RxRelay/PrivacyInfo.xcprivacy; sourceTree = ""; }; - EE03A7DB31D2EA5D74E8AC6595DCD5DF /* MAAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationView.h; path = MAMapKit.framework/Headers/MAAnnotationView.h; sourceTree = ""; }; - EE250BA3582E9617496529A94B3D2AD0 /* YBIBIconManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBIconManager.m; path = YBImageBrowser/Helper/YBIBIconManager.m; sourceTree = ""; }; - EE3AF8CF71094C3214003559DB10B3CD /* SGPermissionPhoto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SGPermissionPhoto.m; path = SGQRCode/Permission/SGPermissionPhoto.m; sourceTree = ""; }; - EE4A4FAAB99051ED36282D6DBBCEA552 /* OIMDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMDefine.h; path = OpenIMSDK/Utils/OIMDefine.h; sourceTree = ""; }; - EE530A41C456C8942C48BEE1BC4ACB0A /* DataTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataTransform.swift; path = Sources/DataTransform.swift; sourceTree = ""; }; - EE69701659551D2EA95E581E43FAAE49 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - EE6E8A9B790E4D34473307687D4B5F8D /* MAMVTTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlay.h; path = MAMapKit.framework/Headers/MAMVTTileOverlay.h; sourceTree = ""; }; - EE764BBD21C61C43683701E3F5FE2FAE /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - EE79DEFA3AD3E0BFEA7198576E92711C /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = ""; }; - EE8173DD24489D8BFB8A788C54567E2F /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; - EE8AC2C8937DC5474F53AD860FC089B9 /* ColorEffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorEffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift; sourceTree = ""; }; - EE9E03A2577727310935A5A9E4A2B30B /* RxTableViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; - EEB276E3BB1A9C5CE3C8AA9EF7517032 /* IQKeyboardToolbarManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbarManager.modulemap; sourceTree = ""; }; - EEBAAA80E335D6590A9D194325FBA00F /* Archive+BackingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+BackingConfiguration.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+BackingConfiguration.swift"; sourceTree = ""; }; - EF11D95E8530B336C22B28260B2E1056 /* IQTextInputViewNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-prefix.pch"; sourceTree = ""; }; - EF1552FB2882AE6292A41E0FE732D03B /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - EF3C657C177D6F9668EE4037A7757222 /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = ""; }; - EF44BFBC7F4569C26187AEBF6FB9202E /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; - EF496A8009AFD9E84E8B500C581ECAC4 /* IQTextInputViewInfoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfoModel.swift; path = IQKeyboardReturnManager/Classes/IQTextInputViewInfoModel.swift; sourceTree = ""; }; - EF6DF531579CE69496EA3326B6B5AB0C /* and.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = and.swift; path = Source/RxSwift/and.swift; sourceTree = ""; }; - EFAFFED0F09E8D30612FFC64F749D3BA /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift"; sourceTree = ""; }; - EFEF2502BCF487C0B50FAB112E1518D2 /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; - EFFEA7E4A731859F2E8145F75A7FCBA0 /* BehaviorsConfigurableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorsConfigurableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/BehaviorsConfigurableView.swift; sourceTree = ""; }; - F00857D4A1176AE49F933BBAE966C775 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = ""; }; - F02E19AB613C5B9E4A3BC77C82DD4D93 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; - F05C90425892DDCDF4B66655B97AA849 /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = ""; }; - F06017D8A40E2C269AD3723AAA849B8E /* MAAnnotationMoveAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationMoveAnimation.h; path = MAMapKit.framework/Headers/MAAnnotationMoveAnimation.h; sourceTree = ""; }; - F06C8ABB058B9D2FEF1726930EB05BCE /* YBIBVideoData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBVideoData.h; path = Video/YBIBVideoData.h; sourceTree = ""; }; - F0C281DB20437F52417B71177BFAEE60 /* OIMSoundElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMSoundElem.m; path = OpenIMSDK/Model/OIMSoundElem.m; sourceTree = ""; }; - F1230DFA99D00D6DA8C2465727F22D30 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - F12FF728132D421A61C2C6BF2D0F056D /* Array+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Extensions.swift"; path = "Sources/RxDataSources/Array+Extensions.swift"; sourceTree = ""; }; - F176357BA383DB166EB1ED8951BA321C /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; - F17F7847C169C42CD6A56A88675DE83D /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; - F1A0B9A15DBD2D3F89FC7A2167A4AD3F /* SwiftyUserDefaults.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyUserDefaults.debug.xcconfig; sourceTree = ""; }; - F1B1B6D7D2E92F184F846249072A1E0F /* RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCocoa.swift; path = RxCocoa/RxCocoa.swift; sourceTree = ""; }; - F1CBC6FE30779E662A20B0F6FB6BF989 /* IQRootControllerConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQRootControllerConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift; sourceTree = ""; }; - F1E36184832E3BA860B6D06AC2293606 /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = RxRelay/Utils.swift; sourceTree = ""; }; - F210D2D653C03CF3DBACFBE1DAEBB5E6 /* Moya-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Moya-prefix.pch"; sourceTree = ""; }; - F214D9285BDD834DE0F15BEBB695D5E9 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = ""; }; - F2208D0296FB7B05852D116F0936A6DE /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; - F22AAF79A7B61FB53A870AA54CECA0A5 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; }; - F26CC0BC63B38EDBC22273E9C0D67DF2 /* Core+UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+UIColor.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+UIColor.swift"; sourceTree = ""; }; - F26E5F82D1BEC8D2C97277B2D67D396E /* ConfigurationGlobals.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConfigurationGlobals.swift; path = Sources/CocoaLumberjackSwift/ConfigurationGlobals.swift; sourceTree = ""; }; - F2929AA63D82688BF8DA0D85380910E8 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; - F2FE218377A0EBA6929F45324DA24C6E /* SDCycleScrollView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDCycleScrollView-prefix.pch"; sourceTree = ""; }; - F302890B5B259BB8E004CBD0EEA581B8 /* MAMapCustomStyleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapCustomStyleOptions.h; path = MAMapKit.framework/Headers/MAMapCustomStyleOptions.h; sourceTree = ""; }; - F31120DF2E5C142AB737BF64F301D994 /* NSControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSControl+Rx.swift"; path = "RxCocoa/macOS/NSControl+Rx.swift"; sourceTree = ""; }; - F3898027613E6C50E0078414D3DF1BE7 /* ObservableConvertibleType+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Signal.swift"; path = "RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift"; sourceTree = ""; }; - F3911F180E1B0182AC1A84D0FE3E4A4B /* UITableView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+Rx.swift"; path = "RxCocoa/iOS/UITableView+Rx.swift"; sourceTree = ""; }; - F3B96086AC8BC0098AE6EDCDE92ED2BD /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; - F3D8BAD44D231ABE9E2CF363728BB827 /* 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 = ""; }; - F40F3FE6E6E74FE180EC6601023DBA74 /* MJExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-umbrella.h"; sourceTree = ""; }; - F425869866B28E3E578068ABC712AA7D /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = ""; }; - F43E549B88EA208A82D3DB6250CB8993 /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - F45505C3143DE9F8A8125C9E96457415 /* MAMVTTileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlayRenderer.h; path = MAMapKit.framework/Headers/MAMVTTileOverlayRenderer.h; sourceTree = ""; }; - F458BC861920FABA639310941239FD72 /* UIView+Parent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Parent.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift"; sourceTree = ""; }; - F45B5F359E982E067E2109249A8B0784 /* SelectBoxView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SelectBoxView.swift; path = Sources/HXPHPicker/Core/View/SelectBoxView.swift; sourceTree = ""; }; - F469E5185C17FD6B096DA1F3B7C3DC90 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - F491CDC277C6297CED0F4DB7FDB3B7D1 /* partition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = partition.swift; path = Source/RxSwift/partition.swift; sourceTree = ""; }; - F49C1B5C54E03ED988C89B6FA16BDB5C /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; - F49EBA828878A7FD53EFD3EC52DF8DB4 /* KingfisherWebP-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KingfisherWebP-dummy.m"; sourceTree = ""; }; - F49EC34BA25445FFAFDB75752FD9EFFE /* YBIBVideoCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBVideoCell.m; path = Video/YBIBVideoCell.m; sourceTree = ""; }; - F4D184BC6A2082CDEBDF50A9810B022A /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - F4DE10A108C2BBBDF4265A2B0E9396B5 /* partition+RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "partition+RxCocoa.swift"; path = "Source/RxCocoa/partition+RxCocoa.swift"; sourceTree = ""; }; - F4E7F97A8A4045F2AEA6EE56AD8C5E77 /* GTCommonSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = GTCommonSDK.xcframework; sourceTree = ""; }; - F4F177FBFF8775FCFBEBEB5746A1F62D /* MathKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MathKit.swift; path = Sources/Private/Utility/Extensions/MathKit.swift; sourceTree = ""; }; - F4F73FE9E51AC36245FC54A1CFE8E872 /* UIControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIControl+Rx.swift"; path = "RxCocoa/iOS/UIControl+Rx.swift"; sourceTree = ""; }; - F531DEF9CEEFBD2F35BEBFBF41D073F4 /* Ellipse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Ellipse.swift; path = Sources/Private/Model/ShapeItems/Ellipse.swift; sourceTree = ""; }; - F553CBDEE22BDB07390A5A1890961940 /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = ""; }; - F559BB90CE3167F1DC71176358384C83 /* ViewEpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewEpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/ViewEpoxyModeled.swift; sourceTree = ""; }; - F565D5B158AF3BD7A2398E2AB52BB084 /* PickerInteractiveTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerInteractiveTransition.swift; path = Sources/HXPHPicker/Picker/Transition/PickerInteractiveTransition.swift; sourceTree = ""; }; - F579D560A7BAEC27AA799B2A5CD1BBD3 /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; - F584805C537CD1CBA84D5491040BA7C1 /* Infallible+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Concurrency.swift"; path = "RxSwift/Traits/Infallible/Infallible+Concurrency.swift"; sourceTree = ""; }; - F5D7AA96F4C384FFC61ABBD9C65C7F0A /* BlendMode+Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BlendMode+Filter.swift"; path = "Sources/Private/Utility/Extensions/BlendMode+Filter.swift"; sourceTree = ""; }; - F5F861507F91FE57B627EB903164472C /* RepeaterLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RepeaterLayer.swift; path = Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift; sourceTree = ""; }; - F5F87C6B5FD4C86E35043453DB746469 /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; }; - F6537FAA9BB9B73F701513A06F3F030E /* MAMapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = MAMapKit.framework; sourceTree = ""; }; - F66066C78D6415B17CD2A32354EDC61D /* IQTextInputViewNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextInputViewNotification.modulemap; sourceTree = ""; }; - F6938529B4FFE728CE76E763A02DB60F /* UIView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; - F6A1B9FE2A7F11E3B46CD429C4BA078D /* DropShadowEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowEffect.swift; path = Sources/Private/Model/LayerEffects/DropShadowEffect.swift; sourceTree = ""; }; - F6BC92DE073B96A0C6BE3673798472A0 /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; - F6C485474804F77A7EDCA1DE1FA325B8 /* EditorStickerTextViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorStickerTextViewController.swift; path = Sources/HXPHPicker/Editor/Controller/EditorStickerTextViewController.swift; sourceTree = ""; }; - F74E2AACBBD8C244A2E3D3E4A0EC3D58 /* ResourceBundle-Alamofire-Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Alamofire-Alamofire-Info.plist"; sourceTree = ""; }; - F77154D97D4ACDB3794B86B36A4D2C2B /* ResourceBundle-MJExtension-MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJExtension-MJExtension-Info.plist"; sourceTree = ""; }; - F7738AB0B6EDCBBDDF07126A140BF145 /* MAGeodesicPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeodesicPolyline.h; path = MAMapKit.framework/Headers/MAGeodesicPolyline.h; sourceTree = ""; }; - F77407D011F6375DA8974E897B3533C4 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - F78512BDAE7DFEC4E0557ABA5FBC074A /* Observable+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Concurrency.swift"; path = "RxSwift/Observable+Concurrency.swift"; sourceTree = ""; }; - F7966531A0183DE2C6CC53DBCA688E00 /* Moya.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Moya.modulemap; sourceTree = ""; }; - F79EF22CDC01C744BFA86A491B88C628 /* LayerProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerProperty.swift; path = Sources/Private/CoreAnimation/Animations/LayerProperty.swift; sourceTree = ""; }; + E4CF735786E6DCCDD3EC08F8BD99569E /* CustomPathAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomPathAnimation.swift; path = Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift; sourceTree = ""; }; + E4DA59576A1914BE355CDECE1AF3362D /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; + E4F1801A3E01D1794CA3E91A36D21155 /* Archive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Archive.swift; path = Sources/Private/EmbeddedLibraries/ZipFoundation/Archive.swift; sourceTree = ""; }; + E5377BAA90C9F75A3EAA5CF2746999E7 /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; + E54B37EECAFD1ED4B59BA3EE791E7712 /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SDWebImage-SDWebImage-Info.plist"; sourceTree = ""; }; + E55922B6D21A9C0413F4DF52451235A1 /* AMapGeoFenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceManager.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceManager.h; sourceTree = ""; }; + E57A882004E9DFAFD797700E1B5608FB /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; + E589DCFDF4CA763286693D5151E8C2E7 /* ShapeItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeItem.swift; path = Sources/Private/Model/ShapeItems/ShapeItem.swift; sourceTree = ""; }; + E5B193016B16AF60E6FAC43E2C25F15B /* Signal+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Signal+Subscription.swift"; path = "RxCocoa/Traits/Signal/Signal+Subscription.swift"; sourceTree = ""; }; + E5CAB98E979ECCA2A09B427375C957B5 /* PickerTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerTransition.swift; path = Sources/HXPHPicker/Picker/Transition/PickerTransition.swift; sourceTree = ""; }; + E62B072434546B62A0732B87388A9662 /* GYSDK-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GYSDK-xcframeworks.sh"; sourceTree = ""; }; + E62BB35812EB4C99463DE18C1B9EB0BD /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; + E667E711991991D7861A26A9AAD09227 /* Decode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decode.swift; path = RxSwift/Observables/Decode.swift; sourceTree = ""; }; + E66D165B0BE2563D5DADFEB252DF1608 /* _RXObjCRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXObjCRuntime.m; path = RxCocoa/Runtime/_RXObjCRuntime.m; sourceTree = ""; }; + E69CF3409B5E7DD09C934B8760D26B18 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; + E6A4E1627379D6540B81A470C575D716 /* CocoaMQTT */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CocoaMQTT; path = CocoaMQTT.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E6B17E7E86D3F8E7C697BD0F77163A15 /* SchedulerType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift"; sourceTree = ""; }; + E6D3BE472B6444F8EDCE6D9376908C0A /* RequestTypeWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTypeWrapper.swift; path = Sources/Moya/RequestTypeWrapper.swift; sourceTree = ""; }; + E6D908919FE42CF57972EE6C0A340195 /* OIMUpdateFriendsReq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMUpdateFriendsReq.h; path = OpenIMSDK/Model/OIMUpdateFriendsReq.h; sourceTree = ""; }; + E6DCBE3CADE53A7306B36C101337AAE8 /* RxCocoa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-prefix.pch"; sourceTree = ""; }; + E740FA3F162A1BCAED41C634DEE0BBB6 /* sharpyuv_dsp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sharpyuv_dsp.c; path = sharpyuv/sharpyuv_dsp.c; sourceTree = ""; }; + E796C4048C441AD02DC39D0BD3AC5217 /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; + E7B9D50DDFEECB6C6DE1EAEA0BC8ABE0 /* NSControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSControl+Rx.swift"; path = "RxCocoa/macOS/NSControl+Rx.swift"; sourceTree = ""; }; + E7C11B2A9E8F8B341AEA7B362E23E7E5 /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = ""; }; + E7C46C3987E417EC909753A8454CF13B /* DateComponents+Extras.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateComponents+Extras.swift"; path = "Sources/SwiftDate/Foundation+Extras/DateComponents+Extras.swift"; sourceTree = ""; }; + E7CDA2FFFAE2097689AF3F32BE7E21DE /* WillDisplayProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WillDisplayProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/WillDisplayProviding.swift; sourceTree = ""; }; + E80DB3359336F605C30FE7B728A01618 /* AlbumTitleArrowView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleArrowView.swift; path = Sources/HXPHPicker/Picker/View/AlbumTitleArrowView.swift; sourceTree = ""; }; + E8112BFCAD85A1901C75F5AECF9170CC /* Archive+ReadingDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+ReadingDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+ReadingDeprecated.swift"; sourceTree = ""; }; + E85F341F52AD4EA9051370B4AB27A5BB /* GroupNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift; sourceTree = ""; }; + E861069B4AB76BA0BDB1C06C5147DCB7 /* TextInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextInput.swift; path = RxCocoa/Common/TextInput.swift; sourceTree = ""; }; + E8B35159705EBE2193CC79CA9B894E50 /* VideoEditorMusicAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorMusicAnimationView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorMusicAnimationView.swift; sourceTree = ""; }; + E8B80E9AC9A0222E9274AA651470F3F4 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; + E8B97DC75EF7EDB859A6C3C461EDDE5B /* OIMManager+Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Connection.h"; path = "OpenIMSDK/Interface/OIMManager+Connection.h"; sourceTree = ""; }; + E8F15BFECC7481FF1ADA3A897CCD4172 /* PhotoPickerBaseViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerBaseViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPickerBaseViewCell.swift; sourceTree = ""; }; + E91F66139CDDA437F057F79B815A732D /* ofType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ofType.swift; path = Source/RxSwift/ofType.swift; sourceTree = ""; }; + E924404F18EF5B2BFCF943AB82366720 /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/AssetsLibrary.framework; sourceTree = DEVELOPER_DIR; }; + E9267C55D20111C7DA6661FF692F1FCA /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; + E939347E78A0391184298A74581E8A4B /* CocoaLumberjack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CocoaLumberjack.h; path = "Sources/CocoaLumberjack/Supporting Files/CocoaLumberjack.h"; sourceTree = ""; }; + E95702201E937BD3B02E440468773440 /* UICollectionView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+Rx.swift"; path = "RxCocoa/iOS/UICollectionView+Rx.swift"; sourceTree = ""; }; + E964CE79E7B4729FBA8FB44F8D76D8C0 /* DDLogFlag+DDLogLevel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DDLogFlag+DDLogLevel.swift"; path = "Sources/CocoaLumberjackSwift/DDLogFlag+DDLogLevel.swift"; sourceTree = ""; }; + E9B8203079561D85B5850B843642810B /* SwiftyUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyUserDefaults-prefix.pch"; sourceTree = ""; }; + E9EFABA771877ADF9180E7DC0B95C72D /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + E9FBF3319C645F6D97915F2E5794574E /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = ""; }; + EA0077E342A252E846F4FF0AC2A7752E /* IQTextInputViewNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.release.xcconfig; sourceTree = ""; }; + EA123271654EAC1C72B1A246499543F9 /* MakeViewProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MakeViewProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/MakeViewProviding.swift; sourceTree = ""; }; + EA130CD648B85D56FD604CD251FFD940 /* TAPageControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TAPageControl.m; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAPageControl.m; sourceTree = ""; }; + EA52E2692A0A64130E93FC68F11C4F8E /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + EA78CE4C4E183B922A11439BE9465823 /* CocoaMQTT-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaMQTT-prefix.pch"; sourceTree = ""; }; + EA7C9A78827F0C1A7A33C41BAAE00C77 /* YBIBVideoData+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBIBVideoData+Internal.h"; path = "Video/YBIBVideoData+Internal.h"; sourceTree = ""; }; + EA8D9B8D105015C6EEF5E5C35E31DF2A /* CLIColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLIColor.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/CLIColor.h; sourceTree = ""; }; + EAD0ABC3813E3B5F2EC92BB34F2DF105 /* KingfisherWebP-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KingfisherWebP-prefix.pch"; sourceTree = ""; }; + EB4B6E74F07CE1CFA6740CC7367A9A59 /* YYImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYImageCoder.m; path = YYImage/YYImageCoder.m; sourceTree = ""; }; + EB5CE15E8B1EC758E154A3D6D0DBB372 /* DDTTYLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDTTYLogger.m; path = Sources/CocoaLumberjack/DDTTYLogger.m; sourceTree = ""; }; + EBAC8E57DF4784F9DECD58863EA59EE5 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; + EBB442D86F1DE12D3FD514D2FA20776B /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; + EBBC4A106EB08D48922BFA7B703838F9 /* LottieLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieLogger.swift; path = Sources/Public/Logging/LottieLogger.swift; sourceTree = ""; }; + EBC245604F36AD9FEC3CD87AA04F7C2F /* RootAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RootAnimationLayer.swift; path = Sources/Private/RootAnimationLayer.swift; sourceTree = ""; }; + EBDD2EBD07F29616D00D6743544912F3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardCore/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + EBF872BB8015B50B7C30FC72B5542972 /* LocalAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalAsset.swift; path = Sources/HXPHPicker/Picker/Model/LocalAsset.swift; sourceTree = ""; }; + EC17AC8224AF86055ABF638581E03865 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; + EC3074255B9B2BC12ABE3CC218759254 /* IQKeyboardManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Deprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift"; sourceTree = ""; }; + EC770E47AC11ACA4E82F3988F665DAE0 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; + ECC43983EFD3D5D2F45DD8A897943511 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; + ED167E45D7D1D195B797F19B14612D2F /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MBProgressHUD.modulemap; sourceTree = ""; }; + ED2169A587A329F11F373D2C50FD832F /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; + ED2816CD352689684AAEE79226E49047 /* OIMAttachedInfoElem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OIMAttachedInfoElem.m; path = OpenIMSDK/Model/OIMAttachedInfoElem.m; sourceTree = ""; }; + ED3122A7683DD455BE085F8C321705DE /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = ""; }; + ED390F269F79FD6E16BA0CEEC761596E /* Infallible+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Concurrency.swift"; path = "RxSwift/Traits/Infallible/Infallible+Concurrency.swift"; sourceTree = ""; }; + ED9291ABC29121BC7F4C0411D3DFCBDF /* DefaultsAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsAdapter.swift; path = Sources/DefaultsAdapter.swift; sourceTree = ""; }; + ED970E0B932A9A86C6B9B60E4F4A43DE /* SectionedChangeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedChangeset.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/SectionedChangeset.swift; sourceTree = ""; }; + EDA3D12EB0F19B293CD12CD014400BFB /* OpenIMSDK-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OpenIMSDK-dummy.m"; sourceTree = ""; }; + EDB059CE88379E4FEA3A790FFBAB04A8 /* YBIBToastView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBToastView.h; path = YBImageBrowser/AuxiliaryView/YBIBToastView.h; sourceTree = ""; }; + EDFC757F93436D274F31BEDE5022C7AD /* DefaultsBridges.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultsBridges.swift; path = Sources/DefaultsBridges.swift; sourceTree = ""; }; + EE0AA3E0FC0B76C7509CA620EE4FC698 /* DotLottieFileHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieFileHelpers.swift; path = Sources/Public/DotLottie/DotLottieFileHelpers.swift; sourceTree = ""; }; + EE6E36EA8058AD2A1D0CFBC154558690 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = ""; }; + EE979B9EDF3477B9352133C921EA1855 /* LottieAnimationSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationSource.swift; path = Sources/Private/Utility/LottieAnimationSource.swift; sourceTree = ""; }; + EEBEE290B7F33E3A002E037EFADB8B2F /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; + EEE5C71E2AA2ED3E55F45F94737D8BF6 /* LottieButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieButton.swift; path = Sources/Public/Controls/LottieButton.swift; sourceTree = ""; }; + EEEC9F1860BDB5691ECDE33AB473E52E /* RxPickerViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift; sourceTree = ""; }; + EF009A9EF803941B4308E2E0875AA35C /* PointValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PointValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift; sourceTree = ""; }; + EF35938B724A76703B2E4A3A763CF031 /* PhotoEditorMosaicView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorMosaicView.swift; path = Sources/HXPHPicker/Editor/View/Photo/PhotoEditorMosaicView.swift; sourceTree = ""; }; + EF3AAC0045F4635A4281CCE672E15EB1 /* OIMManager+Message.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OIMManager+Message.m"; path = "OpenIMSDK/Interface/OIMManager+Message.m"; sourceTree = ""; }; + EFDC09EB16E3515D1F2F66533C832822 /* WKWebView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Rx.swift"; path = "RxCocoa/iOS/WKWebView+Rx.swift"; sourceTree = ""; }; + EFE15059268A18A5A2987D96995CCA9F /* EditorController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorController.swift; path = Sources/HXPHPicker/Editor/Controller/EditorController.swift; sourceTree = ""; }; + F01DB60052787E78B38F3A1AF5263644 /* RxSwiftExt-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwiftExt-prefix.pch"; sourceTree = ""; }; + F02800A4D7E74C83AF754FB80D50552A /* DDFileLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDFileLogger.h; path = Sources/CocoaLumberjack/include/CocoaLumberjack/DDFileLogger.h; sourceTree = ""; }; + F060B4B84D52BF88E54DC7C9B28D410D /* PreCompLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompLayer.swift; path = Sources/Private/CoreAnimation/Layers/PreCompLayer.swift; sourceTree = ""; }; + F078664F20916DBD98CD43B1695DBAD0 /* CocoaMQTTMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTMessage.swift; path = Source/CocoaMQTTMessage.swift; sourceTree = ""; }; + F0B37D9643E310BBA7496A4FE4A9FC48 /* AnyValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueContainer.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift; sourceTree = ""; }; + F0E50899C0C21D11C1827375725D6F78 /* FramePubAck.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FramePubAck.swift; path = Source/FramePubAck.swift; sourceTree = ""; }; + F0F19C6B885147A312B578A3DAAC871C /* MAMapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = MAMapKit.framework; sourceTree = ""; }; + F0F4E13F07A961A441A6054F294E1167 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; + F1114FFC890A3B15EDE446EAEE06B9F2 /* InfiniteOpaqueAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteOpaqueAnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/InfiniteOpaqueAnimationLayer.swift; sourceTree = ""; }; + F1275B92920129B3ABF887C6F40F3504 /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; + F13144DC6F4AB1AB855A41E59B26EB68 /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/Core/ParameterEncoder.swift; sourceTree = ""; }; + F13ADE691A62AB1DF886EA4F7FD67E96 /* Core+DispatchQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Core+DispatchQueue.swift"; path = "Sources/HXPHPicker/Core/Extension/Core+DispatchQueue.swift"; sourceTree = ""; }; + F140B22CB4AB5F7F5608248DFE474EB8 /* Driver+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Driver+Subscription.swift"; path = "RxCocoa/Traits/Driver/Driver+Subscription.swift"; sourceTree = ""; }; + F146679E95977A174286ABF268952FF7 /* YBIBGetBaseInfoProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBGetBaseInfoProtocol.h; path = YBImageBrowser/Protocol/YBIBGetBaseInfoProtocol.h; sourceTree = ""; }; + F17AA9FF2A03983AFAF7969998113A73 /* IQKeyboardCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.release.xcconfig; sourceTree = ""; }; + F1A9770100809405AD02EE9CCCD7C2DF /* SectionModelType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionModelType.swift; path = Sources/Differentiator/SectionModelType.swift; sourceTree = ""; }; + F1ABC498902A7C5F1A16E46F26227B68 /* YBImageBrowser+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YBImageBrowser+Internal.h"; path = "YBImageBrowser/Base/YBImageBrowser+Internal.h"; sourceTree = ""; }; + F1F80ED426C3EB59947DD048D46A342F /* OpenIMSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenIMSDK.release.xcconfig; sourceTree = ""; }; + F21FFCD8871B063FF323D4E6DEEBC240 /* OIMGCDMulticastDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMGCDMulticastDelegate.h; path = OpenIMSDK/Callbacker/OIMGCDMulticastDelegate.h; sourceTree = ""; }; + F27BBCA6BA4C196D7AE3AFB1E1710DD0 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + F28E43923328EF261C416EB2E681B924 /* MqttDecodePubRel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MqttDecodePubRel.swift; path = Source/MqttDecodePubRel.swift; sourceTree = ""; }; + F2953C440B57675D5159D5D8B8AA7E00 /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = ""; }; + F2C997ED187FDEF21DB00D42F13F8ECC /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; + F2D30AFD0DABC502445D62AAE24594DC /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = ""; }; + F2DA3850B293BF553D6E776C8DE0A579 /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/Features/RequestCompression.swift; sourceTree = ""; }; + F2F48E9C3DD021AFAAF173158C2BC249 /* OIMMessageInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMMessageInfo.h; path = OpenIMSDK/Model/OIMMessageInfo.h; sourceTree = ""; }; + F2F5D4485890B56FE9E54491AF71F8DC /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = ""; }; + F307E5CD7860C4F016E1F43A2267C932 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; + F34ED0A941A2F51373D6C1C05B1339D7 /* YBIBIconManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YBIBIconManager.h; path = YBImageBrowser/Helper/YBIBIconManager.h; sourceTree = ""; }; + F35C928F53F26BC77F3325C5C0D4FAB7 /* DateInRegion+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateInRegion+Create.swift"; path = "Sources/SwiftDate/DateInRegion/DateInRegion+Create.swift"; sourceTree = ""; }; + F38473A0318DD5468977B8B5695A90DD /* DDAbstractDatabaseLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDAbstractDatabaseLogger.m; path = Sources/CocoaLumberjack/DDAbstractDatabaseLogger.m; sourceTree = ""; }; + F3AB2F5FE36493E753EEAAF3B8E6B30D /* AssetManager+AssetCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssetManager+AssetCollection.swift"; path = "Sources/HXPHPicker/Core/Util/AssetManager+AssetCollection.swift"; sourceTree = ""; }; + F3BAA05F975BDBFD9DB5397876D7BA25 /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/Features/ServerTrustEvaluation.swift; sourceTree = ""; }; + F3E14299379EB091FFF0667442E61240 /* OIMSearchResultInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OIMSearchResultInfo.h; path = OpenIMSDK/Model/OIMSearchResultInfo.h; sourceTree = ""; }; + F4A0F3112C8A93C1B0BD8FB9E959BDA6 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + F4C9870F922E4407BE5CF841338FA99E /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; + F4EB46D249CB60D0D7A24DFBCDEC31B7 /* InvertedMatteLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvertedMatteLayer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift; sourceTree = ""; }; + F51E7DE30BC2B5251F76EC0B770D2D23 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; + F51ECB02B19F5FE5864C701321C147C5 /* PickerBottomViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PickerBottomViewConfiguration.swift; path = Sources/HXPHPicker/Picker/Config/PickerBottomViewConfiguration.swift; sourceTree = ""; }; + F537EF39FAE967FAFFB3C95ADE5A3B62 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; + F5552552C87459C15E13CB07C4C4B689 /* OpenIMSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenIMSDK.debug.xcconfig; sourceTree = ""; }; + F55A04BD28A92256172FFBE62A100A7B /* TAAbstractDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TAAbstractDotView.m; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAAbstractDotView.m; sourceTree = ""; }; + F57B91C4DA1E7A118360091C50ACB4D6 /* DotLottieManifest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieManifest.swift; path = Sources/Private/Model/DotLottie/DotLottieManifest.swift; sourceTree = ""; }; + F58B1158B39BF41DE17B2D193BD0E0F5 /* SwiftUIMeasurementContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUIMeasurementContainer.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift; sourceTree = ""; }; + F5929496387F8B541C21CC51C6AAF115 /* MJExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.release.xcconfig; sourceTree = ""; }; + F5A050AD03631811ECB18C196A9D21CC /* 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 = ""; }; + F5AFA1348A84302F6F2CBA39EB6F5AB7 /* CALayer+setupLayerHierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+setupLayerHierarchy.swift"; path = "Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift"; sourceTree = ""; }; + F5D8900915140D4712BA5E20E7EAA3D4 /* PhotoEditorConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoEditorConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/PhotoEditorConfiguration.swift; sourceTree = ""; }; + F5DA1CF8DC7F54C5F4F0B7DAC3650369 /* PhotoPickerViewController+SwipeSelect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoPickerViewController+SwipeSelect.swift"; path = "Sources/HXPHPicker/Picker/Controller/PhotoPickerViewController+SwipeSelect.swift"; sourceTree = ""; }; + F5EC0B76BF335CF429B6B623B5DEF288 /* PathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/PathNode.swift; sourceTree = ""; }; + F5F108D6C13B18E7F0E70A6661D58574 /* VideoEditorConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorConfiguration.swift; path = Sources/HXPHPicker/Editor/Config/VideoEditorConfiguration.swift; sourceTree = ""; }; + F5FD142CF1042BDEAD5F794A402A036B /* RxSwiftExt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwiftExt.debug.xcconfig; sourceTree = ""; }; + F642CE189FBD1A03236E003623E87E58 /* MAMultiPointOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlayRenderer.h; path = MAMapKit.framework/Headers/MAMultiPointOverlayRenderer.h; sourceTree = ""; }; + F671C802188EF41EED437EF1BD461D86 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; + F6870CA7016A7BB8E2033FD030B292EC /* ImageDownloader+LivePhoto.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageDownloader+LivePhoto.swift"; path = "Sources/Networking/ImageDownloader+LivePhoto.swift"; sourceTree = ""; }; + F69A46DACB8CF34C53C60CC2D027E792 /* String+IdentifiableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+IdentifiableType.swift"; path = "Sources/RxDataSources/String+IdentifiableType.swift"; sourceTree = ""; }; + F6A8BD0B26710BD33082F2BBF5BB724A /* ImageCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift; sourceTree = ""; }; + F6F7F87E9741597E5B0B6B3E10027344 /* GeYanSdk.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = GeYanSdk.xcframework; sourceTree = ""; }; + F6FB256EA07E33D5F394A9EA0450C896 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; + F716D3D553C2B2B467ACFEB6493D9F37 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; + F71C401A793A925B16B2794B641577F0 /* LRUAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LRUAnimationCache.swift; path = Sources/Public/AnimationCache/LRUAnimationCache.swift; sourceTree = ""; }; + F71D0D26D45B5542A0A8F39277E64753 /* MALineDrawType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MALineDrawType.h; path = MAMapKit.framework/Headers/MALineDrawType.h; sourceTree = ""; }; + F723E0730199FB22CB10297CB86034E7 /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = ""; }; + F74E51E407C4A9311284CCF23D154B71 /* PassThroughOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PassThroughOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift; sourceTree = ""; }; + F75F21B2AAF7305696C0A8091C93874D /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = ""; }; + F78CF62F0674BF90E70B2ECA05043B8B /* URLNavigator.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = URLNavigator.debug.xcconfig; sourceTree = ""; }; F7AE81981774B92C356A26FF843451C9 /* Pods-QuickLocation.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-QuickLocation.modulemap"; sourceTree = ""; }; - F7B20090C59B33E3BAD85392BE2A2BF9 /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = ""; }; - F7C52778E00909D17F1C1A78E2BFF331 /* MAParticleOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayRenderer.h; path = MAMapKit.framework/Headers/MAParticleOverlayRenderer.h; sourceTree = ""; }; - F7C68D1AD25BE9E3B11FE53E50D39163 /* Infallible+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Create.swift"; path = "RxSwift/Traits/Infallible/Infallible+Create.swift"; sourceTree = ""; }; - F7FA543E892B922765067621A07C87FE /* AlipaySDK-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AlipaySDK-iOS.release.xcconfig"; sourceTree = ""; }; - F84C87D3D449237C53594AAF0191B383 /* EditorController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EditorController.swift; path = Sources/HXPHPicker/Editor/Controller/EditorController.swift; sourceTree = ""; }; - F8806095ACB64222B262665284764BEA /* SelectBoxConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SelectBoxConfiguration.swift; path = Sources/HXPHPicker/Core/Config/SelectBoxConfiguration.swift; sourceTree = ""; }; - F89D901F96E665E5495CE0A5C598E200 /* UIViewController+TopMostViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+TopMostViewController.swift"; path = "Sources/URLNavigator/UIViewController+TopMostViewController.swift"; sourceTree = ""; }; - F8D6A5FE25A3244C84E4059F96B41735 /* DDLogFlag+DDLogLevel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DDLogFlag+DDLogLevel.swift"; path = "Sources/CocoaLumberjackSwift/DDLogFlag+DDLogLevel.swift"; sourceTree = ""; }; - F8DAD8511E44DA440DA3B2E026B7BB11 /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = ""; }; - F8DEBF09645160014D2988AC5BC499ED /* Keyframes+timeRemapping.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Keyframes+timeRemapping.swift"; path = "Sources/Private/CoreAnimation/Extensions/Keyframes+timeRemapping.swift"; sourceTree = ""; }; - F8E0F9310F8F3E8573FC448EDC98B78C /* TAAnimatedDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TAAnimatedDotView.m; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAAnimatedDotView.m; sourceTree = ""; }; - F91BB611743387130526B221F2AD7EC3 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - F9211F2F8ED853FD416D5AE344C4B2BA /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = ""; }; - F92FC47C21AB70D50DE321EF7CDC1FEF /* YYAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYAnimatedImageView.h; path = YYImage/YYAnimatedImageView.h; sourceTree = ""; }; - F956AF2B26CA388284D8AC5398D2DE02 /* URLNavigator-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "URLNavigator-Info.plist"; sourceTree = ""; }; + F7CE0D06257484EC85831F397106980B /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = ""; }; + F7D2C52DC8C30B74D4C622E1D2D88BAE /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + F7FAE59124813F9278DCFBAD69B7244C /* CompatibleAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationView.swift; path = Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift; sourceTree = ""; }; + F808015688D43C9E0031FC140F6849BB /* KingfisherWebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KingfisherWebP.h; path = Sources/KingfisherWebP.h; sourceTree = ""; }; + F84E727F70A15E83B7D25FD1B1473F30 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; + F88405DE450E285D5F5B8F3AA9747866 /* KeyedDecodingContainerExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyedDecodingContainerExtensions.swift; path = Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift; sourceTree = ""; }; + F894448A1A6571D3135218466860C95F /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = ""; }; + F899F189DB3B7D9DF35DDEA3110CF17B /* DataExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataExtension.swift; path = Sources/Private/Utility/Extensions/DataExtension.swift; sourceTree = ""; }; + F8D1527E921FE86AA6FFED26C884C85C /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = ""; }; + F91B42E3A00BA1BA0E898C80945E1CC3 /* fromAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = fromAsync.swift; path = Source/RxSwift/fromAsync.swift; sourceTree = ""; }; + F91C2C9B1E3C54C520A2D6DBE17AFB1B /* IQTextInputViewNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextInputViewNotification.modulemap; sourceTree = ""; }; + F9552D22A9233631F84C168E3F12CBFA /* IndexChangeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IndexChangeset.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/IndexChangeset.swift; sourceTree = ""; }; F956E149F5B195BB7833F97FC6211AE8 /* IQTextInputViewNotification-IQTextInputViewNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQTextInputViewNotification-IQTextInputViewNotification"; path = IQTextInputViewNotification.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F9604381FEF2D16AD7ED3B5538527210 /* Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deprecated.swift; path = Sources/RxDataSources/Deprecated.swift; sourceTree = ""; }; - F98D9C1BCC770B8E7D5CE310E26D0F4D /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - F9BD6A12132160649FD35B828E639EED /* SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SDWebImage-Info.plist"; sourceTree = ""; }; - FA38134483F784E7A4AA180ABE16C06E /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - FA40714E188DAF7577D23D2408907AA0 /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; - FA40745829B66EE3DC8E5C60D9CC9BEE /* YYImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YYImage-prefix.pch"; sourceTree = ""; }; + F966211AE623F7F0393C7F5139C6CF61 /* partition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = partition.swift; path = Source/RxSwift/partition.swift; sourceTree = ""; }; + F976405F401C7E3AC0CEE5C7C2595458 /* PhotoPickerSelectableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerSelectableViewCell.swift; path = Sources/HXPHPicker/Picker/View/Cell/PhotoPickerSelectableViewCell.swift; sourceTree = ""; }; + F97E68DD72913DDFFA66907E6F040F8C /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + F995FF505792148D15A05FD9BEEBD27C /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; + F9A39A1F349D79A7CA652C614515AFCB /* AMapLocation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapLocation.release.xcconfig; sourceTree = ""; }; + F9C185543B30AD5DE41DCA09C4929D61 /* Moya.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Moya.debug.xcconfig; sourceTree = ""; }; + F9C28583AE34DED7B6FCD1ACDB354EDC /* BaseConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseConfiguration.swift; path = Sources/HXPHPicker/Core/Config/BaseConfiguration.swift; sourceTree = ""; }; + F9D77B762A0231CE5705251F42F55AC3 /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; + F9F8C9DA82FCCA7DED58B4421BDDA21F /* CompactMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompactMap.swift; path = RxSwift/Observables/CompactMap.swift; sourceTree = ""; }; + FA032BABA117E2462E78153FD9CBD9F0 /* Frame.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Frame.swift; path = Source/Frame.swift; sourceTree = ""; }; + FA082DF76C288109730ABA3263B7E26D /* DateInRegion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateInRegion.swift; path = Sources/SwiftDate/DateInRegion/DateInRegion.swift; sourceTree = ""; }; + FA1B3D33E1E2CC485CB770904F585605 /* MABaseEngineOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MABaseEngineOverlay.h; path = MAMapKit.framework/Headers/MABaseEngineOverlay.h; sourceTree = ""; }; + FA212ECF33B3A933473221784ED69166 /* NSObject+MJClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJClass.m"; path = "MJExtension/NSObject+MJClass.m"; sourceTree = ""; }; + FA3223D73145E787B1981391FD710DAA /* UIViewController+TopMostViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+TopMostViewController.swift"; path = "Sources/URLNavigator/UIViewController+TopMostViewController.swift"; sourceTree = ""; }; + FA3C2D4D0F600143BF84D12E30EC764B /* AMapNearbySearchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbySearchManager.h; path = AMapSearchKit.framework/Headers/AMapNearbySearchManager.h; sourceTree = ""; }; + FA45A4A7B7866A3D8115C051623E3CF7 /* TADotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TADotView.h; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TADotView.h; sourceTree = ""; }; FA727BF5D9541C98C22C9ECC911576E2 /* IQKeyboardToolbarManager */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardToolbarManager; path = IQKeyboardToolbarManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FAB4CD456F6B33E249E6EA4B26455EBE /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = ""; }; - FAC27B316D383024F0A59D8133F0685B /* LottieAnimationViewInitializers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationViewInitializers.swift; path = Sources/Public/Animation/LottieAnimationViewInitializers.swift; sourceTree = ""; }; - FACD7E533AA338FFEC18D2833425475F /* WebSocketRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebSocketRequest.swift; path = Source/Core/WebSocketRequest.swift; sourceTree = ""; }; - FAE83CBDB804481CBE1626600EB92085 /* Infallible+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Driver.swift"; path = "RxCocoa/Traits/Driver/Infallible+Driver.swift"; sourceTree = ""; }; - FAEA6E5F8BC0A7CAF9400093BB333FED /* YBIBContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBContainerView.m; path = YBImageBrowser/Base/YBIBContainerView.m; sourceTree = ""; }; - FB1A866C2F8021DBDD12F2DE5D772DF4 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJExtension/PrivacyInfo.xcprivacy; sourceTree = ""; }; - FB37AE0B23DBB1F9D609993CCEB82AC1 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Features/Combine.swift; sourceTree = ""; }; - FB4ADEBB4D4F0969EDB1E98FD06BD24A /* OIMManager+Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OIMManager+Connection.h"; path = "OpenIMSDK/Interface/OIMManager+Connection.h"; sourceTree = ""; }; - FB5201BBE183A50F11FA42CA44512700 /* AMapFoundationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationVersion.h; path = AMapFoundationKit.framework/Headers/AMapFoundationVersion.h; sourceTree = ""; }; - FB7A47E1684EE076EE4D20C87EA82A15 /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; - FB887A9561D276DB34EA50EEE4EC12AC /* VideoEditorMusicView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoEditorMusicView.swift; path = Sources/HXPHPicker/Editor/View/Video/VideoEditorMusicView.swift; sourceTree = ""; }; - FB8BDEA4C7A77BAA0355626608295FB3 /* Popover.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Popover.swift; path = Classes/Popover.swift; sourceTree = ""; }; - FBC49F1BCFB02AB1359A624A65AB5824 /* StringExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringExtensions.swift; path = Sources/Private/Utility/Extensions/StringExtensions.swift; sourceTree = ""; }; - FBE3F550FE18AA6D139CD1B842365721 /* OpenIMSDK.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = OpenIMSDK.modulemap; sourceTree = ""; }; - FC4E893F753ADB394FE8F1C9F855C83D /* TAPageControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TAPageControl.m; path = SDCycleScrollView/Lib/SDCycleScrollView/PageControl/TAPageControl.m; sourceTree = ""; }; + FA95392BD8532D881A2B0ADE65F10F5F /* Infallible+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Create.swift"; path = "RxSwift/Traits/Infallible/Infallible+Create.swift"; sourceTree = ""; }; + FA9EC52758D4E3583A39B592710F605A /* VideoPlayerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoPlayerView.swift; path = Sources/HXPHPicker/Core/View/VideoPlayerView.swift; sourceTree = ""; }; + FAD5FA39926E92F28F3AB831E3E144F6 /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; + FAE9D676F02A2A0DAB13CF1AB99B5A4D /* Infallible+CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+CombineLatest+Collection.swift"; path = "RxSwift/Traits/Infallible/Infallible+CombineLatest+Collection.swift"; sourceTree = ""; }; + FAF290DAFBACC9C13199D9CE5174EDA4 /* MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJProperty.m; path = MJExtension/MJProperty.m; sourceTree = ""; }; + FAFFC72036DE0CBF86EEAC95FEBA863A /* AnyEpoxyModelProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEpoxyModelProperty.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/AnyEpoxyModelProperty.swift; sourceTree = ""; }; + FB1D9DAF235C3360A49CB31CD5D21E03 /* GTCommonSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTCommonSDK.release.xcconfig; sourceTree = ""; }; + FB775925FBA9D3D17B378BF4CF8672D7 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; + FB7E0915414C93967B126EDE0A3EAE9C /* Marker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Marker.swift; path = Sources/Private/Model/Objects/Marker.swift; sourceTree = ""; }; + FBBBC8E8624440C8A9F3BC5407C904DD /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; + FBDE0A3AD89058345ADDE79961120897 /* NSTextStorage+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextStorage+Rx.swift"; path = "RxCocoa/iOS/NSTextStorage+Rx.swift"; sourceTree = ""; }; + FBFCD3C2F41A889618134EB337C10CFE /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; + FC4CC40B8B0D567BE5F577D1576BDBDC /* RxTableViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift; sourceTree = ""; }; + FC5AE789DAF559A15696D20E295016D5 /* YBIBImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YBIBImageCache.m; path = YBImageBrowser/Image/YBIBImageCache.m; sourceTree = ""; }; FC7F0CF2EA5DF59C59D9995890DA5C47 /* IQKeyboardCore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardCore; path = IQKeyboardCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FCD3A21323E36012C189C0952F31DAE8 /* NSButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Rx.swift"; path = "RxCocoa/macOS/NSButton+Rx.swift"; sourceTree = ""; }; - FCF8F600071E7B3102920CAB6FF48BAF /* PhotoPickerViewController+SwipeSelect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PhotoPickerViewController+SwipeSelect.swift"; path = "Sources/HXPHPicker/Picker/Controller/PhotoPickerViewController+SwipeSelect.swift"; sourceTree = ""; }; - FD07A6AA3A8ACBCE80E15C6F1BEF8D8B /* LottieButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieButton.swift; path = Sources/Public/Controls/LottieButton.swift; sourceTree = ""; }; - FD486E62809B39EA2FAE17E7977B3C8B /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; - FD55ED66E31AAE52903F4144A4A5B144 /* KingfisherWebP-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "KingfisherWebP-Info.plist"; sourceTree = ""; }; - FD5E810B692FBB786B2032A23F252AFE /* ReducedMotionOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReducedMotionOption.swift; path = Sources/Public/Configuration/ReducedMotionOption.swift; sourceTree = ""; }; + FC8CC7E34BF7AAB97DB81ECFAE7D3BA4 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + FC9D6D0932358CB76A02655D6417A65C /* Picker+PhotoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Picker+PhotoManager.swift"; path = "Sources/HXPHPicker/Picker/Util/Picker+PhotoManager.swift"; sourceTree = ""; }; + FCE67E867E7D87D4BB2761D5775A1CB2 /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; + FCF8B7BABFCFD728C47BD91B529B0830 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + FD018790C71DECF6D9B77734AEDDC8E1 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; + FD075C270BA262E2E0C9C7E705229ABB /* GroupInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupInterpolator.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift; sourceTree = ""; }; + FD30BE25D5B77C034CA2040AC6EF80E6 /* UIView+SDExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SDExtension.h"; path = "SDCycleScrollView/Lib/SDCycleScrollView/UIView+SDExtension.h"; sourceTree = ""; }; + FD3856AE45707685922FEF462D919D7B /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; + FD45EF31979AA82A13DD5D21DD34ADD5 /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = ""; }; FD694DB3E09A81036691F823E3211D44 /* MarqueeLabel-MarqueeLabel */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MarqueeLabel-MarqueeLabel"; path = MarqueeLabel.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FDE553DBFD8986CB772D81F3EA41D6F1 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; - FDF694330205FA2699A346C81F89D14B /* IQKeyboardToolbar.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.debug.xcconfig; sourceTree = ""; }; - FE0F2F0A1C318B0FFFF4DFE36D1A69C5 /* PhotoTools.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoTools.swift; path = Sources/HXPHPicker/Core/Util/PhotoTools.swift; sourceTree = ""; }; - FE27247B0F48B326AF1DDFF5E52E4127 /* Zones.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zones.swift; path = Sources/SwiftDate/Supports/Zones.swift; sourceTree = ""; }; - FE42C469235FE439145DB1ED23358021 /* TimePeriodChain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimePeriodChain.swift; path = Sources/SwiftDate/TimePeriod/Groups/TimePeriodChain.swift; sourceTree = ""; }; - FE4D3EFFD11310558DF46FD1F4BC3E8C /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - FE4FB396B3AD5E4CCCF7D904075E382A /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; + FD8F7F80F12F551B6BDDBBD6981BC3E1 /* PhotoPreviewVideoView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPreviewVideoView.swift; path = Sources/HXPHPicker/Picker/View/PhotoPreviewVideoView.swift; sourceTree = ""; }; + FDA2360D1A6E94ECABACD3E1106335EF /* FillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift; sourceTree = ""; }; + FDA3B029D6EB1945FC6FE325674E10FF /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + FDAE672DFD3D8A61B0D211BD81FAAE76 /* IQKeyboardToolbar.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.debug.xcconfig; sourceTree = ""; }; + FDECDECD34ADFC847CCA706F55AFC610 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; + FDF437331E3175752D0F2C1F3736BACA /* PhotoPickerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoPickerViewController.swift; path = Sources/HXPHPicker/Picker/Controller/PhotoPickerViewController.swift; sourceTree = ""; }; + FE18999B476D598F337EE1381FA8246C /* CocoaMQTTReasonCode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaMQTTReasonCode.swift; path = Source/CocoaMQTTReasonCode.swift; sourceTree = ""; }; + FE2D768229B35C3FE454C2B95DEEC7BE /* ShapeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift; sourceTree = ""; }; + FE537AA8E8B46BAB0B6477FFC2C8F915 /* UITextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Rx.swift"; path = "RxCocoa/iOS/UITextView+Rx.swift"; sourceTree = ""; }; + FE548559FF88988E65F345D73AA762B0 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = ""; }; FE6B8ABE5D0AD8A55BCFA48D21915C07 /* ObjectMapper-Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "ObjectMapper-Privacy"; path = Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FEBCF31BB53A7A17C21471A5D93034A1 /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = ""; }; - FEC5AA73C23F8210E1D7C888097942B0 /* EpoxySwiftUILayoutMargins.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUILayoutMargins.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUILayoutMargins.swift; sourceTree = ""; }; + FE6FE100A253357F7FFFAAF9AB9378C4 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Core/Notifications.swift; sourceTree = ""; }; + FE7774FEDAEA41B1AA9734250483E1FE /* AMapSearch.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AMapSearch.release.xcconfig; sourceTree = ""; }; + FEB39954F2E0BFA206C3D194C20D02C2 /* ItemsExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemsExtension.swift; path = Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift; sourceTree = ""; }; + FEED446863E4D0E5C67019C24F146920 /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = ""; }; FEF9AC89E9C4BD37AC0AB78B535D1CFC /* IQKeyboardNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardNotification; path = IQKeyboardNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FF0025CF7C17D6A5F84D9489FE650FBA /* KeychainWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainWrapper.swift; path = SwiftKeychainWrapper/KeychainWrapper.swift; sourceTree = ""; }; - FF07CBD86423A03E1F891EF47BBD0D56 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; + FF0216C421365AD84F77ED22BEA23707 /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = ""; }; + FF2C24B67E5E17219B18B1D700847444 /* PHPickerResultImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PHPickerResultImageDataProvider.swift; path = Sources/General/ImageSource/PHPickerResultImageDataProvider.swift; sourceTree = ""; }; + FF39E4326B5C2C88D65E04B5814284C9 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; + FF3DDD4A011290EF797564EFFFF0D7A5 /* ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist"; sourceTree = ""; }; + FF7E14938F3989FCF9A133CE332AC1B2 /* AlipaySDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = AlipaySDK.xcframework; sourceTree = ""; }; FF8B264DFE802855D5D67E7CDDABFC3C /* RxRelay */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RxRelay; path = RxRelay.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FF9D3F780F9307B2A4956B12C94603D9 /* FilepathImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FilepathImageProvider.swift; path = Sources/Public/iOS/FilepathImageProvider.swift; sourceTree = ""; }; - FFC1B522A7D474FA4DAA6C62A6BEFB3D /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; - FFCED4E784FD6B990CD666FDBBA0A426 /* DotLottieCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieCache.swift; path = Sources/Public/DotLottie/Cache/DotLottieCache.swift; sourceTree = ""; }; - FFD2FEBE902487EB11E1F3B27258FDE6 /* PreCompLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompLayerModel.swift; path = Sources/Private/Model/Layers/PreCompLayerModel.swift; sourceTree = ""; }; - FFD32F8F371F0FF3AB2E0204D4001137 /* KingfisherWebP.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KingfisherWebP.debug.xcconfig; sourceTree = ""; }; - FFDFDE1F81FF2DFCF0881704A4F39FAB /* MAPolygonRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygonRenderer.h; path = MAMapKit.framework/Headers/MAPolygonRenderer.h; sourceTree = ""; }; + FFA5203579DE0199D1EEBA334E365319 /* RxRelay-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-umbrella.h"; sourceTree = ""; }; + FFD9EB2C14D6F3DD35809C4C91193549 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; + FFEF543AD54697BFC217DAF8CAB97D91 /* UploadFileCallbackProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UploadFileCallbackProxy.h; path = OpenIMSDK/CallbackProxy/UploadFileCallbackProxy.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ + 01975CBDD3B70D1E18BB91B8301AE617 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01AE4BFCC836B4A0E0D7BFBDA19C9A6C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 01DFC48E1F53F491E4BA276CB013D8FB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 04C139C841E5A69C3B73E4E7788DB3C3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5234,6 +5395,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 06328DAD038631B177DE7D4FD4AA9DD9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 09ACE5949EBCC5684672B2F1201524B9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5242,6 +5410,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 09DC200874950881346CB5CF3030DCDE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 893AE39673116061407A043A4E4DEA45 /* Foundation.framework in Frameworks */, + ED83D98E4E3641FBF4262E1B02B459E7 /* ImageIO.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0DFEBF6D5E3C7C73145E1449BA46D43A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5275,6 +5452,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 12B469B686D5B69A29FDCCD4BFD6C715 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 136888DB274708E87E58453C5DA09BEF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5283,43 +5467,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 14B3CCFC54C48FF903C4430B0CB61D11 /* Frameworks */ = { + 1E2B6A394F883A79D7671E5A135C602E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BA9ECBC5C994B303E135BCAE0A5A5047 /* Combine.framework in Frameworks */, - ECE1AFD4546BB60DCDB4FC88549B68C5 /* Foundation.framework in Frameworks */, - 0E7F7BDD99F835B83F946ED6E6C5E69E /* UIKit.framework in Frameworks */, + 83BE1DD5CA7DD2FBB5AE7012A78E405E /* Foundation.framework in Frameworks */, + 2943E6BAA581FB96B5D98F32706C231D /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 16AB0459A23AC69B658C7E57E2D4A6F2 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 7048639AD3CDF1D671A76A1AC765417D /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 24D572644A965DFE839190D36A91A35A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 27D85D2DE824EC39A220D5DF3A1B3700 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 9E3A87603BC1BD80CDECEB3B52D3C592 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 28953E19C2005E9193DC91008D1DE7BB /* Frameworks */ = { + 277FF12C2651061512FB3A26F0AD2308 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 7B845572152301170E2CDF0BE542D870 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5331,33 +5492,43 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2B6239E683B57810A0877D78BE796C47 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4213F90CA64B4BCAD1CFFB1466A6C2B0 /* Foundation.framework in Frameworks */, - 43585D0A88187F24335F2F72137C28A0 /* UIKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2B63BE43F73E8B74C6CCC14ED87B1CA6 /* Frameworks */ = { + 2C20BFE194DD149BC347E329960B93DA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2DBE7820B8A8EC06685821AFE0665F89 /* Frameworks */ = { + 2C871119D45F7AA4DA2DF9BF90E0CB7D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 1171C66C417E998F0BDC4449B7938B82 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2DA6307D2FA15E8E4881319ADDCC6DE0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 30CBDF3C2C6AD00BB734B3714F0F8794 /* Frameworks */ = { + 2DE5D894FF69B5E9F0E4EFF2354C0653 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 10CE029BDCCADE7B3EEDBA341638EC90 /* Combine.framework in Frameworks */, + A890CF713389EE9AE188A5B8CBD28DA7 /* Foundation.framework in Frameworks */, + D63D5497A20087AF148E0E16581A8572 /* UIKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2FD6D6D3C27D1F0E3E43C4A839524669 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4D45AF0998CCF0F5840FC0D3A4E40BC8 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5369,7 +5540,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3A85F096B63B0C12EE15D40EDFCE39F7 /* Frameworks */ = { + 3C03A0F1C3858E353A966927052F1609 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 66AAA871D0FEB3988852B5D7952ADE68 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 40D2C207639D2CA6A4F3F69BD60D6C88 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5385,13 +5564,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4B344E39C34BAC4E674B21008D14E588 /* Frameworks */ = { + 482C5B1970165B23261707783962CC96 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 9D93C80F910C873F803391661A10336F /* Combine.framework in Frameworks */, + 12FA9B81BDD131CCF1C8796918207858 /* Foundation.framework in Frameworks */, + 72F7783C7C45D4D19CE96B5060EB75AB /* UIKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4C91894590E9C4C8EFBADF42B0003F66 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A203342FF8908BCE627B0AD03D4C6516 /* Combine.framework in Frameworks */, - 04AC99F44BE90EF4C3AA1C4E650524A2 /* Foundation.framework in Frameworks */, - A0ECDE88D35F5D0348C2A533B07EBFA3 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5403,6 +5589,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 53C0E00DF3D2426FEA276C429C101E9B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5818C83C454E520A2E7D3B3EDBD093EE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5419,6 +5612,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5A1052A1D08809487D5D3AEF8E2C85A6 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + C73BBC138DDA380D3E412D48E86E24C9 /* CFNetwork.framework in Frameworks */, + B5BE51A4B56D53A453BF0090448E8CE2 /* Foundation.framework in Frameworks */, + 4203437AC6CEDF0C0455C95FCA7CEC31 /* Security.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5A771016DD37C120FBAB27FB6D003C31 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5429,6 +5632,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5AA94748A595AC7488968B9CBB02CD39 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8256A78362EA6D8BCD88DBF2722A1EA0 /* Combine.framework in Frameworks */, + C801C2CF68F147169189E69F641D7F76 /* Foundation.framework in Frameworks */, + 93C3B1F0BE88C1985707ECEAE55E15A3 /* UIKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5AD337ADA1AEF4CA3BF4F85311013FD8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + C87EEEAF062456D346356447B16867FF /* Foundation.framework in Frameworks */, + AD39CF4A2A15D137EE8908099B9FB9E6 /* UIKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5B6537CFC952FC20C4EEDE8D0C5409FC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5B8C51C6BFA979E81A28179CCC2C0936 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5438,21 +5667,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5E44D54AD5CEEC2711966638831C7F79 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 7E64667C414AB0AA1AB5A09DA40A443A /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5FC385F019F30F8056E28B6D1E8B86B9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 699D447FBD731295C49F2CFE5CEA1E77 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5464,57 +5678,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6AC1271961B00B1E2C927BD726508CF5 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6C6E81B9C8466DCF26580F0595755D0B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7019CB1612D089CFE4E3335DDD7699EA /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 71AA829AB846AF235426263C08793A12 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 675B77428EFD5FED7CE72863A1FE8962 /* Foundation.framework in Frameworks */, - B50CAB2E13D6CA8AA00F024343B9129D /* UIKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 72DC59A6CF54BE63D611BEA35D572B2A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7936B8B37C6C2E82AEC25493A2EAB735 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7E3F89ED6BDF72DF1BBFF1EBFA833D09 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 81093B8E8148F160F3801A65A3BE7BC6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5560,31 +5723,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8E714EDDA0F6731D47EF41DFD8F372CD /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9044335B6F58888C40BF8DAB731BD484 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 76A8EFC057455679D223E762AECCCF3D /* Combine.framework in Frameworks */, - EA4EB4A44D9B8DC03032A43AB3CF7EFC /* Foundation.framework in Frameworks */, - 1B6904F021949ED4F17DE3BFFE7C55E2 /* UIKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9070E29A77AEF224DAD68D5CE02D9E9D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9825A28BFE907B062A94929F53216E87 /* Frameworks */ = { + 967D01C15ADC84B0D6F6465C3150ACF1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5599,6 +5738,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9F142B267B422862220164D4351D1977 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A10D2F79E7AE84861E35970014FF750E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; AAF3397F858476B2322944A6873F8D53 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5607,36 +5760,49 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - ADDFCDC2EA09AB785B0D83C34C20DE39 /* Frameworks */ = { + AFC8FAED3CBB80D1E3253859DF9AF754 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DD169E134718B3EBAB25987CE95481AE /* Foundation.framework in Frameworks */, - FA923FB0492E22E87E728F69AA94188F /* ImageIO.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - AFD31CE975B174D16F411C4BAF7804F7 /* Frameworks */ = { + B23C743B74BC309410049E6A67B6727B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 913A7FD6C80BA64EA81C7CA2B420D588 /* Foundation.framework in Frameworks */, - 128276DC4BA59E2853877B13A2F4AEC1 /* UIKit.framework in Frameworks */, + C98EE67EF74B92C9AC9E23B9A1E74E74 /* Foundation.framework in Frameworks */, + FE410F461D895A1284A9BBB6A13A65AF /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - BD2E7A934A2FF328A64E6344985665A6 /* Frameworks */ = { + B55C9F1352AC4E1A79DEF57943336A49 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 88105040BB0E3998C89E898BF3362A36 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C2C83C8CA83F939FDC972D46AD672DFA /* Frameworks */ = { + BDAA83BE9DECB0452B6AB5A57C3A2237 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + A34060A696287851E155DBF22FA07A8C /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEB9B0D56F4008740021BAADA40238A3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B177B54D22587EACF66B2AC074C5D053 /* Accelerate.framework in Frameworks */, + 76C49441ACBD4BB270E50BCFA217F7BF /* AssetsLibrary.framework in Frameworks */, + C8BE034A357A252B055FA0C4A9E4C978 /* CoreFoundation.framework in Frameworks */, + 6982C676E5EA5D0EFDF7E13FE8747A9C /* Foundation.framework in Frameworks */, + 8DD1C035F8672F10066660417B5BAF12 /* ImageIO.framework in Frameworks */, + 50669B24372B93D32B3A617D0058F215 /* MobileCoreServices.framework in Frameworks */, + 78BD0F8D256532CA562E15911B11F746 /* QuartzCore.framework in Frameworks */, + 52D60BAAE980A153100A4881975E8CF6 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5648,28 +5814,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CA9CE68CE719691AA3A4ADACC21F0AF9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D04E0124F8432BD77BD51B9C2D21EF3E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - C4005FC583ECAC0694F5042A24F8B663 /* Accelerate.framework in Frameworks */, - CA5FA2BC7F938675BEE80B531422ACDA /* AssetsLibrary.framework in Frameworks */, - 146D792687FCC9B4459731BFB80EF030 /* CoreFoundation.framework in Frameworks */, - 5E8A0E4593834354FFFDBC129F5F6081 /* Foundation.framework in Frameworks */, - 12EACF1F31743BA54D16E93D18AA3922 /* ImageIO.framework in Frameworks */, - C50703A0335F75D79E28A40A1A533D8B /* MobileCoreServices.framework in Frameworks */, - CA1FC14C840300F053C820C135E43161 /* QuartzCore.framework in Frameworks */, - 82A5D07DC330993BB604113DC0635FE3 /* UIKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; D07B79E83A18E3018EFA8CE654EF97CB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5695,13 +5839,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DC5E36FEFA1FBB27AEBDCF22AA3C06EB /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; DE564298200439AEF79C87DD67D812F0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -5718,14 +5855,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E3B5144A411ABAD0C7783D05BEEE9BFC /* Frameworks */ = { + E33664E8D18621F813D4AEBF9D1CA702 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E6292162CEFD75B0B4A16072BC9C5ED4 /* Frameworks */ = { + E386FCD9D8F479EEDED94B4214191574 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3AF7819D3384DD52FC3A8D2752EFAE8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EA57FD53CD6CF350CFD35FC143E54D17 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EB3A6F364D9092D07EE373210EB67CEA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5742,7 +5900,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F57A48E3CEA6A2A74CD89B2D260FAD89 /* Frameworks */ = { + EDF83DFA2B9A14CD4ED7411626774CF6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5757,7 +5915,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FA994E5F3F5CBAFCD1C9D3AB03A4C48D /* Frameworks */ = { + FCF72B5CA4B711A9EF957FF9913B2161 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -5767,1121 +5925,813 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 010A71F4BB02A46FC706439881A18810 /* SwiftyUserDefaults */ = { + 01003CED91A500DC951FDE1309E8688F /* Resources */ = { isa = PBXGroup; children = ( - A66DF04928172288AAF39431F1258403 /* BuiltIns.swift */, - 3959E727B7E6D436C58E8154A7EBB3E0 /* Defaults.swift */, - 0E521769293502BCC89258E2797104EC /* Defaults+Observing.swift */, - D835F5767328148D3747835C4E0D09CD /* Defaults+StringToBool.swift */, - 3FEC6077DC3237CA46D42ABFDC14A37E /* Defaults+Subscripts.swift */, - CBAAAB6F1E8977B72F66A0CD9B335B76 /* DefaultsAdapter.swift */, - 850578387A0EBC9B04FB5459FE3B3212 /* DefaultsBridges.swift */, - 64A97DF1ECAA601838BDE6A51B36E743 /* DefaultsKey.swift */, - 71FD6427BA94D4884EC2B62E60E9E7A3 /* DefaultsKeys.swift */, - 196C119B4B99656411031B27E64A2D95 /* DefaultsObserver.swift */, - 41ABD5255F5B3887A1E6C0B3CD1A9071 /* DefaultsSerializable.swift */, - 3BE0270AFD495A209831013F68A46EAA /* OptionalType.swift */, - B26E10D04B2569140F59199A5C55C891 /* PropertyWrappers.swift */, - DA82333E2C26E6CDAC71C128CC3E9276 /* Support Files */, - ); - name = SwiftyUserDefaults; - path = SwiftyUserDefaults; - sourceTree = ""; - }; - 02143E9AFEAEC702FE2D8A4CE262415A /* Resources */ = { - isa = PBXGroup; - children = ( - 8839B71D73943CF891974FAA99B0A1FC /* PrivacyInfo.xcprivacy */, + 0E1989088B503751B4F0FDA7441A4656 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 03FAA533C0E49FB41631ABB12321A6A2 /* Support Files */ = { + 033B8765E42B8234A55FA3C94BF730F6 /* Resources */ = { isa = PBXGroup; children = ( - 0D09C384F5AC385694E5E067051A5F38 /* YBImageBrowser.modulemap */, - 1C537FE6F5932E4CC8555D24BCEFB66D /* YBImageBrowser-dummy.m */, - E24E20ED22C9155BB317012B54D36A84 /* YBImageBrowser-Info.plist */, - C0F9D43170F9BCCB6D568800C5992073 /* YBImageBrowser-prefix.pch */, - 91C413DA11BA0A2F7D5DE3F394B6B61F /* YBImageBrowser-umbrella.h */, - BF62A78FF66483CF7EB197B4BC26ADDF /* YBImageBrowser.debug.xcconfig */, - B56ACCB20DA9D768C32CE92ADE5257AB /* YBImageBrowser.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/YBImageBrowser"; - sourceTree = ""; - }; - 0458EA2C95930A3C12D6D36B3393A7B6 /* webp */ = { - isa = PBXGroup; - children = ( - 645B6195BA2EF0CC400908DC32A609F8 /* alpha_dec.c */, - E76CF312E733637C8775BF05416542E0 /* alpha_enc.c */, - 777510880AE0C0FEC2BF99AC49794494 /* alpha_processing.c */, - F05C90425892DDCDF4B66655B97AA849 /* alpha_processing_mips_dsp_r2.c */, - 20042495A7F0AEBBC01B9CB26314CDD2 /* alpha_processing_neon.c */, - 27F811FC60FE7171767A66AB5F507804 /* alpha_processing_sse2.c */, - 82E339D953808BCD8DE3A8DE42F2039B /* alpha_processing_sse41.c */, - 74D831646F1721D18E9CB61D78B92424 /* alphai_dec.h */, - DA66C9C915DAFC02D59574A19D34C580 /* analysis_enc.c */, - EA7E04CEEC7A79FB05E2DE3DAE634DF4 /* backward_references_cost_enc.c */, - 43409DB5BB90B590069DBF410D50DD04 /* backward_references_enc.c */, - D3FAE393EA0CB065CF13EBD52B25C74E /* backward_references_enc.h */, - 9F09F941B55860CCB56708CB4F1FDA5F /* bit_reader_inl_utils.h */, - 45AD7FAD1E5345477CDADB368908F59E /* bit_reader_utils.c */, - 7943889E640D6E0573612C76BC2D55C7 /* bit_reader_utils.h */, - EBC7D79FCFE59C1D4E2B2EEC9415C53B /* bit_writer_utils.c */, - DDDC822826BE0110F15C916A638B4E1E /* bit_writer_utils.h */, - B84ED04EF6E738BEDF956904DC7E150E /* buffer_dec.c */, - 6FA64DC127F889004374FBFEC2973DD1 /* color_cache_utils.c */, - BB26D67793EF0FF90678F9F98CE61847 /* color_cache_utils.h */, - 5AABA4A903D3B1748D2F7ABD73C518B1 /* common_dec.h */, - 88A1873E1B4111D07E4764F077BE2840 /* common_sse2.h */, - 489954733A3E65665BFD9C14B718677E /* common_sse41.h */, - A9EB2433B6E7A927FB90C619CB9BAF2F /* config_enc.c */, - 8587D011AA0593CFF7A1B84EEE2FB3F1 /* cost.c */, - 02446533D9FB702A89B3DEA51B1A3BFE /* cost_enc.c */, - 41C0F4847E0F170E3F59D0BC7F2811ED /* cost_enc.h */, - CEBFF121DDC08559C71E1B1D903EBD52 /* cost_mips32.c */, - EE764BBD21C61C43683701E3F5FE2FAE /* cost_mips_dsp_r2.c */, - 1C1376FC7BB4470F53E0603A9A7FC1AC /* cost_neon.c */, - 1C65529B177CF37DE07312C17C19A0D6 /* cost_sse2.c */, - 16CB11B23A5ACD2B188960D308AFB6DF /* cpu.c */, - 52826A20DDBD116B62604609F4896887 /* cpu.h */, - EFEF2502BCF487C0B50FAB112E1518D2 /* dec.c */, - 72679461AA0F6BDFD187D5631DB82AEB /* dec_clip_tables.c */, - 99DADE9DE147112FECFE409CD724C123 /* dec_mips32.c */, - A7CAC3DB04F7ADB64B8499A90B77C74B /* dec_mips_dsp_r2.c */, - 39DCD7EF97C0B500D13C50F86E116058 /* dec_msa.c */, - E747366903F9ED5B7CBB1D60E84BB103 /* dec_neon.c */, - 00E1EE863C3A3C3630E7BBB6E807087B /* dec_sse2.c */, - B379B52189FCFD6923CABBB988EE366F /* dec_sse41.c */, - D313154C522FDF13B1B8BB1616A141BA /* decode.h */, - CEB0F03F7DE9B75763FEE50F19F9CFE7 /* dsp.h */, - C02CFAD272BDBFF03F29BA64096B6F3F /* enc.c */, - F3B96086AC8BC0098AE6EDCDE92ED2BD /* enc_mips32.c */, - 7A08D4E2AC3083940E2DD5AB50F42519 /* enc_mips_dsp_r2.c */, - F469E5185C17FD6B096DA1F3B7C3DC90 /* enc_msa.c */, - BDE3C415D49D9DBEE2D6B0B692F711A8 /* enc_neon.c */, - 8CBC7A052D892803E76D2FFEAC1C3E83 /* enc_sse2.c */, - AE3A29EAE2AD084E9A58744CA01CC32E /* enc_sse41.c */, - E6E25AB29490F32DE655534A02FF32EA /* encode.h */, - 7410C1DF2145BEBE0C7CD5DAAE9F1ADB /* endian_inl_utils.h */, - C18AEDBF31CB2572AB07F8722E0870F3 /* filter_enc.c */, - 9F376FE855AF22F30019CB36BAA7A1E8 /* filters.c */, - 7E33D64E680019C177618308CB75EF6A /* filters_mips_dsp_r2.c */, - 06C9041561AE6E617D216D91DE531015 /* filters_msa.c */, - B2CFD3CFB14AFD520EDB9E11593AF849 /* filters_neon.c */, - 45A6C83A799C0C051A71B753EBF2E0C4 /* filters_sse2.c */, - B68EA6BB85F8C760488A50BDCC241910 /* filters_utils.c */, - 0C32AEB37F418F32DD29DCF4F8431825 /* filters_utils.h */, - 0DE933906B9742E508D8D788A1D9460B /* format_constants.h */, - CC24CDDC3C41D4E90FB7A47FD047D37A /* frame_dec.c */, - AC2AD7BD30CB7339F736B669B8A956DF /* frame_enc.c */, - BE68E3C8423A0C2B3B2F147C351569BD /* histogram_enc.c */, - F91BB611743387130526B221F2AD7EC3 /* histogram_enc.h */, - 6C64131280A69B51A01F471E184A6303 /* huffman_encode_utils.c */, - 50B830DCD4FD06C452454EBFFF301A61 /* huffman_encode_utils.h */, - F4D184BC6A2082CDEBDF50A9810B022A /* huffman_utils.c */, - EA50E8FECBEF17BCC8D53B8CD0D61CA1 /* huffman_utils.h */, - 8D2F58F6D75CD6EAC8B4645270447959 /* idec_dec.c */, - 1C8B492C658E83648F36B13B1502DD29 /* io_dec.c */, - 0E9018049D3891D6B8326E4C1A96B726 /* iterator_enc.c */, - 924741FD99920A8D329E493A5868847A /* lossless.c */, - BB3FD8C20C18627E7DFACF967A196E8D /* lossless.h */, - 65CC9309308C3EFA965298882EABE106 /* lossless_common.h */, - AB53487CE53F8FB4D70D0221212EC78E /* lossless_enc.c */, - B4EE7A0CB2B38A64ACC0428F57AEC7E8 /* lossless_enc_mips32.c */, - C13189BB9C5B978BC239E0FC3A946821 /* lossless_enc_mips_dsp_r2.c */, - FA38134483F784E7A4AA180ABE16C06E /* lossless_enc_msa.c */, - 8E22F8ED0B0260D140F7BE3E0E75344A /* lossless_enc_neon.c */, - D6710808298E8357BEF9DEDA21E199CF /* lossless_enc_sse2.c */, - 774303A6EF1A2EAA26EEB43E1E3F8342 /* lossless_enc_sse41.c */, - A1A4FD150E8969054E33120D391A51C8 /* lossless_mips_dsp_r2.c */, - 109ACDAA5C60690C3C29F4D995BFF459 /* lossless_msa.c */, - 2721B15D69AAC9EDC592D8D91DE15A30 /* lossless_neon.c */, - DD3998C13E9D092608AC6F455C49F819 /* lossless_sse2.c */, - 2F1EE42D6061CE2501B5E1A22B55D08D /* lossless_sse41.c */, - BA0C32A8612AFBDAB31E407FBDC7FC06 /* mips_macro.h */, - E867074B27E8FABABEB3A062C89F10C7 /* msa_macro.h */, - 45A82B7D82427BF1446499386E18E4FB /* mux_types.h */, - AB13A26BC6750B3E62BC905FFE398E3C /* near_lossless_enc.c */, - 60468C1CDF1862AB603DFA2962774120 /* neon.h */, - B977BF3D227A0AC28B05CD102057BCC1 /* palette.c */, - 04296A362C3407E0A85FD5DB9C3E1EDF /* palette.h */, - D00CD7B0453036235F53A50214D4ED2D /* picture_csp_enc.c */, - 991D1386E3E848056EA3B4E051FE493E /* picture_enc.c */, - 081D3FFF22883789F72BD87362697E6E /* picture_psnr_enc.c */, - 8F2242BE854DD9C19EF4B71CA79AE6F2 /* picture_rescale_enc.c */, - 8CA871A837C87D6CD87F1EF2EC8ED612 /* picture_tools_enc.c */, - FE4FB396B3AD5E4CCCF7D904075E382A /* predictor_enc.c */, - 9F63ADBEB6601A1586154D53C923B5D4 /* quant.h */, - A23F8B3C6F7CCF478BCF4BAE56BD4DF9 /* quant_dec.c */, - BC30D019482F4221FF633E550DAC417D /* quant_enc.c */, - 35940441E1F35674BCA1B41D098A3ED3 /* quant_levels_dec_utils.c */, - 2DD95C19D05E5141AD09F08757FE2699 /* quant_levels_dec_utils.h */, - 7B77DEB6A390666DF68E81ADE12F1BED /* quant_levels_utils.c */, - 087EB3E92C3CE9AEF4989DC32217260E /* quant_levels_utils.h */, - B4181173D600C81E639DF5A03E52AEA2 /* random_utils.c */, - A5BFBD150FA1FFD5F8206A024E6D8015 /* random_utils.h */, - 8C0A1312B50C17A4C611BA04975FA59D /* rescaler.c */, - A9EAC8FC1287A9C24DA5BC7D31F39F91 /* rescaler_mips32.c */, - E003852F0C2ED5D3367CC3BCB111DE40 /* rescaler_mips_dsp_r2.c */, - D712C754D0B3BEFA8D9854077BC94893 /* rescaler_msa.c */, - BBBC010B85BCBA9FA6908DE4D9348839 /* rescaler_neon.c */, - AF7AAD023CD959C7D04EDAEF495E42D4 /* rescaler_sse2.c */, - 63D7A5446C347A4B7702583B88BBD745 /* rescaler_utils.c */, - 7D2B336DD1382EE765ACAE769343CFE2 /* rescaler_utils.h */, - 2FB634BBC441E1A91C3B4D8D27BFF7BD /* ssim.c */, - 1B63629946BAA0F141F5000D45DF5B53 /* ssim_sse2.c */, - 3C47797CF83C8275EB25B782A05E26C0 /* syntax_enc.c */, - 56C83FF28405BC4C60D1E897F48C954F /* thread_utils.c */, - 9A226DD5B5DE35D44F9321FEA69D7502 /* thread_utils.h */, - D872B09828CDE9FED532089388FD1706 /* token_enc.c */, - FF07CBD86423A03E1F891EF47BBD0D56 /* tree_dec.c */, - 583EBFC93BECC151571D0013BD13AE47 /* tree_enc.c */, - 7D5D3CD64711395EDE1E0558AA48CB7F /* types.h */, - 2696085F8CF53F46F0711050C0A10E07 /* upsampling.c */, - E64CECF2B277E1740E8F08CA7B8F77A5 /* upsampling_mips_dsp_r2.c */, - 1F7005538E0ADBFEE28935345444E9BE /* upsampling_msa.c */, - 1AD3C64E24C009607CBD92AC885EF423 /* upsampling_neon.c */, - 9D0884D8E461C506BA1299415A08D8E6 /* upsampling_sse2.c */, - E79CAC9375ACAB81CC6DF05A6F6DC26F /* upsampling_sse41.c */, - 21951539AF1191589E265213E6B8D31C /* utils.c */, - CDB3370B2D9A7B4B4FEE5BBFAC62D485 /* utils.h */, - 4DC53E0ABF02CD9BBAB8D62559EA0E36 /* vp8_dec.c */, - 247A39E873C37C701BDF648B2D50C5EC /* vp8_dec.h */, - 6F733D4160D39073D45BC056455B855F /* vp8i_dec.h */, - 7ACD8B678F457F12617E8F02C445A9F0 /* vp8i_enc.h */, - B0785BC93A1F0C4CDC04A31E0BCA48C6 /* vp8l_dec.c */, - 4123C8FEAA4B2A821DFD684756000B82 /* vp8l_enc.c */, - 6BE2132552A633B5B0604562F34FC8D0 /* vp8li_dec.h */, - F43E549B88EA208A82D3DB6250CB8993 /* vp8li_enc.h */, - 0D22A34E6D8A78B03A3878CC8F4A141A /* webp_dec.c */, - 466A603F12FA5BB31841F6365BACD39E /* webp_enc.c */, - 5F817082B9C5EE4458A59A5A7804DEFC /* webpi_dec.h */, - A95AA6726D0817E43DE36A9CDFFAF8DB /* yuv.c */, - 04BB4A806B019AC1CFA3C776444FE07E /* yuv.h */, - 82DC469C28323FCEAC87DA19052CFFE9 /* yuv_mips32.c */, - 55A2692DAD3BED620DA0EB83FC8A09FE /* yuv_mips_dsp_r2.c */, - E1747F2179C0D6D74389870E47EF63C0 /* yuv_neon.c */, - 7E75BE039ECDC5C98B1B3366AB223FFE /* yuv_sse2.c */, - DEE0EF0F26FC8E76181FFE777C562CBA /* yuv_sse41.c */, - ); - name = webp; - sourceTree = ""; - }; - 04B06F8FFFF140427FD2BA930A50ADDA /* Support Files */ = { - isa = PBXGroup; - children = ( - DE120EE326141F76E75CCE2132DEA784 /* ObjectMapper.modulemap */, - 49CE288F45AE14A8ACBCB47C4E6EF706 /* ObjectMapper-dummy.m */, - 87E096F7DF0D7E8ACA28A30A1DEBB9EC /* ObjectMapper-Info.plist */, - 9E4F572F034A1B90543745C038E95B6A /* ObjectMapper-prefix.pch */, - 8F420C010C7336A4B964E0E4223E96D7 /* ObjectMapper-umbrella.h */, - 0F5B82BDBCAA41F24AD4A6F7D6617A30 /* ObjectMapper.debug.xcconfig */, - BFA6FD03C778C0B691600FE0A831EB76 /* ObjectMapper.release.xcconfig */, - C09B6CDED61FA0453ED2ADB6EA524148 /* ResourceBundle-Privacy-ObjectMapper-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/ObjectMapper"; - sourceTree = ""; - }; - 04E77BF5D241431A7669B65C63C292B8 /* Swift */ = { - isa = PBXGroup; - children = ( - 0DBD93D288BF1971680AC0CBFA87CEC7 /* CocoaLumberjack.swift */, - F26E5F82D1BEC8D2C97277B2D67D396E /* ConfigurationGlobals.swift */, - 27759D268EA3293ACE7824423B8230A2 /* CurrentFileNameHelper.swift */, - 57F981F58E1DB9D729CF4481BFD2287F /* DDAssert.swift */, - ACFDC59C4D51BAC7D448516B4133A38B /* DDLog+Combine.swift */, - F8D6A5FE25A3244C84E4059F96B41735 /* DDLogFlag+DDLogLevel.swift */, - 38F94877CEF3C20AB5A2BC7EECB7F447 /* DDLogMessageFormat.swift */, - B053BB799704A9F6F6384BBAF294DA09 /* SwiftLogLevel.h */, - ); - name = Swift; - sourceTree = ""; - }; - 051971D7584710BD37FD4D9C3A5D4B2A /* Resources */ = { - isa = PBXGroup; - children = ( - 3C0C914066C13DD1C227163AE269AE08 /* PrivacyInfo.xcprivacy */, + 34D94319150FBBDA5DBC6B33CE2A3F42 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 0519FD4567FEF5F75311774168A5E6D3 /* OpenIMSDK */ = { + 0374D4B5D7630697BFFAF476F53A93E2 /* Support Files */ = { isa = PBXGroup; children = ( - 92848CB8CEF981C9B3BC395EEC10733C /* OpenIMSDK.h */, - FA73FB89FFC6C041D2C971504BC4F6B0 /* Callbacker */, - 5A8F097FB03106C24F8891D77A6761F6 /* CallbackProxy */, - 32F0F48DED71A27F831DE40F4142C263 /* Interface */, - 13234F058AC42FE4586F0BC017BCB32C /* Model */, - 4E52EC198AFBBF2895A04ABEF28131C8 /* Support Files */, - 48D9D43C4F7A7EF73D3AC8DA613BAA8E /* Utils */, - ); - name = OpenIMSDK; - path = OpenIMSDK; - sourceTree = ""; - }; - 060C0D7D58AF11D88F155E40DD4165B6 /* Resources */ = { - isa = PBXGroup; - children = ( - FB1A866C2F8021DBDD12F2DE5D772DF4 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 06E4BE89938F40F906CC60D72240FD70 /* Appearance */ = { - isa = PBXGroup; - children = ( - B48EB763FE80E2BD8D9862A3C005F9FC /* IQKeyboardAppearanceConfiguration.swift */, - 6DC4BD17942F389D44EB543440F08338 /* IQKeyboardAppearanceManager.swift */, - A23D984530015E18E2F4B38BB459C1FD /* IQKeyboardAppearanceManager+Internal.swift */, - D5A54FE569BE26DE8F8FABCE0B34BC75 /* IQKeyboardManager+Appearance.swift */, - CFE98B38843AE0C4E89B36CF77B5387B /* IQKeyboardManager+Appearance_Deprecated.swift */, - ); - name = Appearance; - sourceTree = ""; - }; - 08E09B5ABD3FCE71D53961FFCF94B214 /* IQKeyboardNotification */ = { - isa = PBXGroup; - children = ( - 5AD9B8FCF4FD89F4D5143063C5E7A0D0 /* IQKeyboardInfo.swift */, - 9A610F8E5A523D74EB02337C66D2442C /* IQKeyboardNotification.swift */, - F7C7D0A1E1783A005ECB525ED5C4FBD2 /* Resources */, - 83B29528EBBC1B3DADDA36F2BF191859 /* Support Files */, - ); - name = IQKeyboardNotification; - path = IQKeyboardNotification; - sourceTree = ""; - }; - 08E83B3B3F52373C170DB026024CE462 /* Support Files */ = { - isa = PBXGroup; - children = ( - 744818E8CAF84E619740349AA8310B49 /* Differentiator.modulemap */, - 7E6C39A78E34CAF91FE894770A29339E /* Differentiator-dummy.m */, - 04B7C5A25940963070651E91AD48A5B7 /* Differentiator-Info.plist */, - CC3D8146FC10F0640612BFBDF8B23019 /* Differentiator-prefix.pch */, - B5A37D6C6DD50F2C36D62037BC7142EC /* Differentiator-umbrella.h */, - 74CF6920D0B4CFAC98C5DBF9737EA29D /* Differentiator.debug.xcconfig */, - 3D0DB1CEB05AC969288DEAFEB20F65F0 /* Differentiator.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Differentiator"; - sourceTree = ""; - }; - 09B81D7CE8836E15B560B259E1F4AEB3 /* Differentiator */ = { - isa = PBXGroup; - children = ( - 9B47B0F33ADB52865D45F738C9337602 /* AnimatableSectionModel.swift */, - B13474C01D1C0B90896134215E5A5CEF /* AnimatableSectionModelType.swift */, - 7CE41C5B80EA05791BE83C7126E9D35C /* AnimatableSectionModelType+ItemPath.swift */, - 825A9E0CAE8058BD30562436EABB04A3 /* Changeset.swift */, - 61F309BD5CF7919F2B29498052D9B98C /* Diff.swift */, - 989D623AF0CB634DB11052E3FC4DC617 /* IdentifiableType.swift */, - E1729A5C0BDDB7D06AEBD8894DA5153F /* IdentifiableValue.swift */, - 8BDA68A4AB4B1C7ACD7A370540F816C1 /* ItemPath.swift */, - 345CFF4C2DE56AFB5B6B340E3433F8F5 /* Optional+Extensions.swift */, - 4218E7AB0F97FEEDD00E4E037614FB34 /* SectionModel.swift */, - 5C08C88751394A41AA41DF435BE9B690 /* SectionModelType.swift */, - C42E84DD790B283F0D5185499E7E6716 /* Utilities.swift */, - 08E83B3B3F52373C170DB026024CE462 /* Support Files */, - ); - name = Differentiator; - path = Differentiator; - sourceTree = ""; - }; - 0B9B2957C01E56FACDD895263C81308B /* Support Files */ = { - isa = PBXGroup; - children = ( - EEB276E3BB1A9C5CE3C8AA9EF7517032 /* IQKeyboardToolbarManager.modulemap */, - B00B2714CE63029E316A682E308DACC9 /* IQKeyboardToolbarManager-dummy.m */, - 8C686BCF3D7F28862D9F8F441539A7BA /* IQKeyboardToolbarManager-Info.plist */, - 854DC1FA592D76A8399A8D23776140FD /* IQKeyboardToolbarManager-prefix.pch */, - D825F64A76320E65FD8969C6C63148B1 /* IQKeyboardToolbarManager-umbrella.h */, - B02664CA4AF3A20B2AD925D0A1FED67D /* IQKeyboardToolbarManager.debug.xcconfig */, - C96FCAF290E620B33506E5F6F3F26719 /* IQKeyboardToolbarManager.release.xcconfig */, - E5EE5A8E12E72187726895C340E99A1D /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */, + 70CF7B526B329D2F7D16A737DF3E72CA /* IQKeyboardToolbarManager.modulemap */, + A0E60F83DE43BBBF924BEF72B94D7D88 /* IQKeyboardToolbarManager-dummy.m */, + 584FC894D422101627A0823336B995E1 /* IQKeyboardToolbarManager-Info.plist */, + C7E8128FA3C4DC6DC87343890BB0751E /* IQKeyboardToolbarManager-prefix.pch */, + 1D8B96BC951501B73B984B3E5E73D45D /* IQKeyboardToolbarManager-umbrella.h */, + D862C584B59F742B093BA15B55C64CC9 /* IQKeyboardToolbarManager.debug.xcconfig */, + 284AC5B340F1DF3743C872CE02EE8A20 /* IQKeyboardToolbarManager.release.xcconfig */, + 63AF11E68FBA31DEE361A30452C2B610 /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */, ); name = "Support Files"; path = "../Target Support Files/IQKeyboardToolbarManager"; sourceTree = ""; }; - 0C0F35F6B3D37E54F23853FDD1CA32B0 /* Resources */ = { + 06FF378D27EB5DD240AA74B759E4AB73 /* Popover */ = { isa = PBXGroup; children = ( - 705E66B46D3FB6C3860039695FEE7E45 /* PrivacyInfo.xcprivacy */, + DFA03B4AC805A46101403448BA891DEF /* Popover.swift */, + B954CC88C5CA7A509267924263C45070 /* Support Files */, + ); + name = Popover; + path = Popover; + sourceTree = ""; + }; + 073B86CEF0DACD846819D02D4531E844 /* Kingfisher */ = { + isa = PBXGroup; + children = ( + 6563437DD714E4651A54D5D9827E41BB /* AnimatedImageView.swift */, + FCE67E867E7D87D4BB2761D5775A1CB2 /* AuthenticationChallengeResponsable.swift */, + 5262A8466C222B81F01152B34DA64A09 /* AVAssetImageDataProvider.swift */, + 185DAF49A8E1175A987F04CE022957BE /* Box.swift */, + 310A752EAADFC795CC0A69824946DC22 /* CacheSerializer.swift */, + 3C45BD99F26D6E924687C0DEF6BD9871 /* CallbackQueue.swift */, + 0EE8AEF48758E3AF539B73FD6DD3891E /* CPListItem+Kingfisher.swift */, + 953DA43EB13E30AF8D9D972941D5826F /* Delegate.swift */, + 477AB1A71336EC844111AF30835E2B70 /* DiskStorage.swift */, + D8E1A6C1868911E09185610292922398 /* DisplayLink.swift */, + 2FFC90957F5D67E24F21D774D7AA39C2 /* Documentation.docc */, + CDB5DC8D1CA553235FAB3A2185D3646E /* ExtensionHelpers.swift */, + 50B69BB9C494FCADD9F52F68B4745C13 /* Filter.swift */, + 4D21C7C434B3F4BDFF04AA060D589C0E /* FormatIndicatedCacheSerializer.swift */, + 0E3E10F0E4E1EEB483B960CB8AB44788 /* GIFAnimatedImage.swift */, + 3959D145FD2E8F762316E0F5B249252D /* GraphicsContext.swift */, + 99A5D487DE1C7561340E93F71231A048 /* HasImageComponent+Kingfisher.swift */, + 82C0724C0421CBE94F5889AF088B58AD /* Image.swift */, + 6198D280669473ACBA6A084A650DF4D8 /* ImageBinder.swift */, + 75E672D2E3F85192FCB6AA5DB98E8607 /* ImageCache.swift */, + 58257C6D930B04CA0CE4B0BC5E9FBA44 /* ImageContext.swift */, + D5B5E409A3CB6709D1C0EC5240773D49 /* ImageDataProcessor.swift */, + 914D1DC48410EEA11DC4146D823176F8 /* ImageDataProvider.swift */, + F9D77B762A0231CE5705251F42F55AC3 /* ImageDownloader.swift */, + F6870CA7016A7BB8E2033FD030B292EC /* ImageDownloader+LivePhoto.swift */, + DE508651E5E549F78249BDCAD16BFD32 /* ImageDownloaderDelegate.swift */, + 818F80EEBE82BB7416E478C26E7995D2 /* ImageDrawing.swift */, + A84F997BE9F6903E8E03618EBBA3FB65 /* ImageFormat.swift */, + 74CA6CFA6A9272E68BB7A7285B05F588 /* ImageModifier.swift */, + E5377BAA90C9F75A3EAA5CF2746999E7 /* ImagePrefetcher.swift */, + 4076244D29A019001FE69F99345FC805 /* ImageProcessor.swift */, + A2CD2E3BBF844A6612B4784DF5C04CFA /* ImageProgressive.swift */, + 56C4621AA9773E450944A7A00C7F17A1 /* ImageTransition.swift */, + 8E228DE53A7843A9B62E323CFFB04240 /* ImageView+Kingfisher.swift */, + 7C427136B27DC559447F9182284C8042 /* Indicator.swift */, + C8277B036CADFDB18A9032F3676C20D1 /* KF.swift */, + D5E0BA4C08C42E4F935DB00E62F37EA2 /* KFAnimatedImage.swift */, + 80B2C73E9BDABA3F11BF3DB85DAD250A /* KFImage.swift */, + 98AD5468026B6327AC1AC789C55E2B66 /* KFImageOptions.swift */, + 97404EDD54B128EB9F21CCA4CC58A92B /* KFImageProtocol.swift */, + BCC5AC3823AF1F18738C22FBEA8154BF /* KFImageRenderer.swift */, + 64C07CCD1BCB6C218B9CBFD402FD0BF6 /* KFOptionsSetter.swift */, + 9ED7FC1A30A3ECB192352380A7A874A3 /* Kingfisher.swift */, + 8461B294FCAEA798CE2751EEA8891991 /* KingfisherError.swift */, + 83E92D4FF772347A353FB627EFF684DD /* KingfisherManager.swift */, + 503405F11788ADB88FD0ED81209159EE /* KingfisherManager+LivePhoto.swift */, + 1059A598BA4F9CA60155BA8373D9F178 /* KingfisherOptionsInfo.swift */, + 6C1764349B4C733F6B7A6B68D67BC042 /* LivePhotoSource.swift */, + 10E286D9023E96E911902F5ADE064F52 /* MemoryStorage.swift */, + A96139C1CDAA829E1C5C99CC966F3CB0 /* NSButton+Kingfisher.swift */, + 4E2E8E4E7D7E410B6C94E5C4C0C3DC04 /* NSTextAttachment+Kingfisher.swift */, + 5E6697D38397D54AD0F4753556ED8EEF /* PHLivePhotoView+Kingfisher.swift */, + FF2C24B67E5E17219B18B1D700847444 /* PHPickerResultImageDataProvider.swift */, + D76CFBF1AF771B8A842900B6363C910F /* Placeholder.swift */, + D5DB288CA1735838DAB9C361892E54EA /* RedirectHandler.swift */, + D9DE6D779E74364FC3F954FDE24695C3 /* RequestModifier.swift */, + B4A6881CF86D0AD130F065B392BA79E6 /* Resource.swift */, + E69CF3409B5E7DD09C934B8760D26B18 /* Result.swift */, + C0F45767D09215F572F8D80F01EB8628 /* RetryStrategy.swift */, + B39A92039C1C6E5A539881A3C30A3EFB /* Runtime.swift */, + 227239C8727C62367AF6079F3FDB9577 /* SessionDataTask.swift */, + 725BEA8CF189D4B0B923DC15BD501A1C /* SessionDelegate.swift */, + 9108431DE0EE65E182C641811F6F644A /* SizeExtensions.swift */, + 2AD1A0DA62E38A2270776CBC8949C349 /* Source.swift */, + 6FC8E717DED2B35BD1F66E0A8B62D552 /* Storage.swift */, + A0BC8E970B9984DFA602426BCBC66226 /* String+SHA256.swift */, + 8E7634E51DE590157C8F535EA1D247B4 /* UIButton+Kingfisher.swift */, + 5BA1141B7B50BD6B6A92B96743BC3AF7 /* Resources */, + B960B988B8C0E50177465B9A80766883 /* Support Files */, + ); + name = Kingfisher; + path = Kingfisher; + sourceTree = ""; + }; + 07E7846FD9B79697A2F954F23D754BD5 /* SwiftyUserDefaults */ = { + isa = PBXGroup; + children = ( + 1ACCAE49580830784049EDF24569F21B /* BuiltIns.swift */, + 12936157E06A9BD2BBAC1822B010AE60 /* Defaults.swift */, + CFABBFE3E23539AC8A25CB8DF205E4E2 /* Defaults+Observing.swift */, + 504C9200A2BCDBCE5D1038BE5C36DC92 /* Defaults+StringToBool.swift */, + E16098AC15C72D87F44C638C00C7C494 /* Defaults+Subscripts.swift */, + ED9291ABC29121BC7F4C0411D3DFCBDF /* DefaultsAdapter.swift */, + EDFC757F93436D274F31BEDE5022C7AD /* DefaultsBridges.swift */, + 9DAD00461B83C200FA915645CDB0E2C6 /* DefaultsKey.swift */, + B95B13BB8C7EC7678CC95F016E6DB9D2 /* DefaultsKeys.swift */, + D6671E4DAF2E9CAB55C735355A9FEACF /* DefaultsObserver.swift */, + 1C7BAAB90591C5F80AC0B54E492DC5FE /* DefaultsSerializable.swift */, + 1900F12C0F59A2EE38FF64396E3A02DF /* OptionalType.swift */, + 836002A544C87F9B72FD7E93C2F30BB1 /* PropertyWrappers.swift */, + ABEA16F59809309D79522523BDCC8988 /* Support Files */, + ); + name = SwiftyUserDefaults; + path = SwiftyUserDefaults; + sourceTree = ""; + }; + 086EDB8299EBF599D255CC597927C881 /* IQKeyboardNotification */ = { + isa = PBXGroup; + children = ( + 4BB38AD055FDA8B028F1CFCB6AC51C95 /* IQKeyboardInfo.swift */, + 0ACE6098C6600F130B1FBE95DA09FCB5 /* IQKeyboardNotification.swift */, + FC8142659FBF40BE9B6BF0EA9829EF8A /* Resources */, + 14CBF5E833AC8FA8395F48625F0CF0CE /* Support Files */, + ); + name = IQKeyboardNotification; + path = IQKeyboardNotification; + sourceTree = ""; + }; + 0B974A581577490CD7D5FF221AC92B6B /* libwebp */ = { + isa = PBXGroup; + children = ( + 2AF6B1633CB179859BFB0690965321B9 /* demux */, + 615DE90D9A6B679C368696030DBDE803 /* mux */, + 68E97B5CC8B872CEC377656733AA9CE6 /* sharpyuv */, + 6B8C3BD30F79877E090464B0E3CF84ED /* Support Files */, + DFC6A93A11DD820E89FE7DB4B3E90B6D /* webp */, + ); + name = libwebp; + path = libwebp; + sourceTree = ""; + }; + 0C4138CB12761CFFE96C2922C4516791 /* Support Files */ = { + isa = PBXGroup; + children = ( + B2872DE8B11CC0C62C7F1B425BCBB585 /* AMapFoundation.debug.xcconfig */, + 49B586C2492DB8E3B98452DAA26E3559 /* AMapFoundation.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AMapFoundation"; + sourceTree = ""; + }; + 0CBF922902065FFC071B662004D5E28E /* Resources */ = { + isa = PBXGroup; + children = ( + 59A8A113B244267F39733411FDBFD59D /* HXPHPicker.bundle */, ); name = Resources; sourceTree = ""; }; - 0CCE8BF40D7BE148BB02E87A8F5C70D2 /* Resources */ = { + 0E2471BB06D552AB52355B46FDC74EC8 /* Support Files */ = { isa = PBXGroup; children = ( - BF160B94684907A47F9B8E3E019F60FF /* PrivacyInfo.xcprivacy */, + CD3136D404630159D6B3A92001E39C0D /* RxSwiftExt.modulemap */, + 6D85D65A785DD11618ACCAF108CFE339 /* RxSwiftExt-dummy.m */, + 5EB365DD01B0CF9CC6DD2C3FBAD696AB /* RxSwiftExt-Info.plist */, + F01DB60052787E78B38F3A1AF5263644 /* RxSwiftExt-prefix.pch */, + 8DE841174DFB947091CC9730CC27A4D7 /* RxSwiftExt-umbrella.h */, + F5FD142CF1042BDEAD5F794A402A036B /* RxSwiftExt.debug.xcconfig */, + 6C658557DD91AA8F899ABACC31226433 /* RxSwiftExt.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxSwiftExt"; + sourceTree = ""; + }; + 0F307B95D8704D258200CAB8E7EE23B3 /* Core */ = { + isa = PBXGroup; + children = ( + 77108217CD9670D65A815C85CAD4BC74 /* NSBezierPath+SDRoundedCorners.h */, + 729C335AC4480787A0D8A171C363F055 /* NSBezierPath+SDRoundedCorners.m */, + 365D92843D9B2C992588045959368206 /* NSButton+WebCache.h */, + DA0D288497955329D2E2EEE0E11E4A4F /* NSButton+WebCache.m */, + A0219DE9E829EB25509BB1E2C6F67F4C /* NSData+ImageContentType.h */, + C0E35192C63708E12595F0EDB4626CC1 /* NSData+ImageContentType.m */, + 6DC8C41B7AB96DC700B00AEB39525F5C /* NSImage+Compatibility.h */, + E9EFABA771877ADF9180E7DC0B95C72D /* NSImage+Compatibility.m */, + 2EF18E46D35DFA8EA15926BDEF825725 /* SDAnimatedImage.h */, + D3D05FEE8ADDAB27B74995F22E6B4A65 /* SDAnimatedImage.m */, + 467D1F0F2F8DC4407D4DE1A116DA6822 /* SDAnimatedImagePlayer.h */, + A01FFB1189079876A3BE427E2D58D934 /* SDAnimatedImagePlayer.m */, + 67B45AD70807BBDF6B47FDAA4390A5C5 /* SDAnimatedImageRep.h */, + A0754BE3F77591C44FFAB586747F773C /* SDAnimatedImageRep.m */, + 02B1232ED02FD0082124D9CDF6969512 /* SDAnimatedImageView.h */, + D151E0C0C8749B59E1D6C1C422EE6C7F /* SDAnimatedImageView.m */, + 8C9E8A9D320DDF6866142EBCF0AB17D3 /* SDAnimatedImageView+WebCache.h */, + 87CF4E5FA9EF74820C9D72AF08A6E3DF /* SDAnimatedImageView+WebCache.m */, + 2393D8EC822992E154A2A546A2FA3CE3 /* SDAssociatedObject.h */, + 09AB62F03517BF3D5AE88B4968C6DF90 /* SDAssociatedObject.m */, + 6C0F1E0571EE5F74112DC26DEE1DB61D /* SDAsyncBlockOperation.h */, + C613E0A1F41A822EED765247AC1F954D /* SDAsyncBlockOperation.m */, + 9E8B5C0110F4223411274CE6A011F364 /* SDCallbackQueue.h */, + 17F4024785CE7E20270CB82E7E759217 /* SDCallbackQueue.m */, + 4EF66DE3B3203486D7F366B2E5AAD62A /* SDDeviceHelper.h */, + 5E0843B42A030B55090DA9565D93667E /* SDDeviceHelper.m */, + 45676A1039F53B7B44E96257EFC0755B /* SDDiskCache.h */, + 3B1A2F0EC904214E6975457AE08127B3 /* SDDiskCache.m */, + A7C8BB5332F80E96E8D6A4B4D6AA10A0 /* SDDisplayLink.h */, + 53A4EFF13E5D8770804115A05B68B1C5 /* SDDisplayLink.m */, + 6DE422219528B0F8C044E9C23AC7E206 /* SDFileAttributeHelper.h */, + 42A180547A0748580216D31947FCF91D /* SDFileAttributeHelper.m */, + 19AB346F664AF3BB68015BA96F15CA47 /* SDGraphicsImageRenderer.h */, + 5BE93567AA85914227E92BDFE9669A63 /* SDGraphicsImageRenderer.m */, + 68D7AF3B74828F8C2BAC6CC02A1E9A83 /* SDImageAPNGCoder.h */, + 0592B4FDA541D739DA37618ECD3F548A /* SDImageAPNGCoder.m */, + 3E734FF2DDA8DAB55B08800FDD08E017 /* SDImageAssetManager.h */, + FFD9EB2C14D6F3DD35809C4C91193549 /* SDImageAssetManager.m */, + 0AD55A47F1AAA88609AC883AD677F608 /* SDImageAWebPCoder.h */, + 37248EC9C1A753806439CCF5D8B1413C /* SDImageAWebPCoder.m */, + F4A0F3112C8A93C1B0BD8FB9E959BDA6 /* SDImageCache.h */, + 3419BDD44F6743C4AC46FA04B2350FAF /* SDImageCache.m */, + 72DF4AA01E687D7B5FA55FD57819D458 /* SDImageCacheConfig.h */, + 103BCD5D91A86629DA7A02BC546D632F /* SDImageCacheConfig.m */, + E2B7730E3EDC09E9C27731F9211A03E2 /* SDImageCacheDefine.h */, + A3BC31B6E58488D20D1E01F30A6E36A5 /* SDImageCacheDefine.m */, + 1BD6854C4461EA80B767FF2182ED6EF2 /* SDImageCachesManager.h */, + 40AD8D7E0434ABAC40ADD7301AF66559 /* SDImageCachesManager.m */, + F995FF505792148D15A05FD9BEEBD27C /* SDImageCachesManagerOperation.h */, + 4A932087ABB9A35400DD7C526A39F7CA /* SDImageCachesManagerOperation.m */, + 1D623539744C92AC2DF81C3ABEF834DA /* SDImageCoder.h */, + 21EB64BE1424FD67CBFD60640E5AC630 /* SDImageCoder.m */, + BE2B71D301E15E6410F723894618F8B2 /* SDImageCoderHelper.h */, + B212767BD106E5330DDC1032B129ABEC /* SDImageCoderHelper.m */, + 3393DA8B4838F6ACE600A7599089C08E /* SDImageCodersManager.h */, + BAC4832233C2EAA5A0A324B4FECE605C /* SDImageCodersManager.m */, + A49A6F4E09E1DE49F95B7C7B5F769716 /* SDImageFrame.h */, + 30BD85190BA6619C60F905C8C99773A9 /* SDImageFrame.m */, + 2A9598965144DCAD57DA3C09E9D9DF65 /* SDImageFramePool.h */, + 35095A89B3C9A2BF1B30A1C61D469BA6 /* SDImageFramePool.m */, + 78C694E50921AD52B782E980CAE66D3D /* SDImageGIFCoder.h */, + 7DDD2C1AD91FF951A9A5F3D2E8D0913F /* SDImageGIFCoder.m */, + FD018790C71DECF6D9B77734AEDDC8E1 /* SDImageGraphics.h */, + D5E5340CF5421A590D1A25C045077BA8 /* SDImageGraphics.m */, + CCDE73E0140C3BC9F72E28078BAB4C4E /* SDImageHEICCoder.h */, + 442AB6262AFA4173559DD94C6274239F /* SDImageHEICCoder.m */, + 5F121A1AF57280A390FE624572D35BAA /* SDImageIOAnimatedCoder.h */, + A830E1FCCBFF0E3E0CB9AC490BA68B14 /* SDImageIOAnimatedCoder.m */, + 98026ABD4730AD0D7DE536A7F513DDB3 /* SDImageIOAnimatedCoderInternal.h */, + 08261D3B2E86FA4702201DA370E21959 /* SDImageIOCoder.h */, + 91AED5A00B8A2452332D3796039AFA18 /* SDImageIOCoder.m */, + 930A966769BFBCE4E38BBE706B3106C9 /* SDImageLoader.h */, + 86A7C1E882BC355EE233177C35BD2FE3 /* SDImageLoader.m */, + 0E006EB6628D9D7013460BEDD4583E8D /* SDImageLoadersManager.h */, + 03FE134A3FD2889614B4CC40FFEF3581 /* SDImageLoadersManager.m */, + B710990BD7BFF0A6D6E01A535C8AA8D1 /* SDImageTransformer.h */, + 4DF8F1CDC802D0250733D25924A17835 /* SDImageTransformer.m */, + 8157ECA13835DD29BFB8AE4885DE404D /* SDInternalMacros.h */, + 32898454CB13100812704D30105A0D45 /* SDInternalMacros.m */, + 85A7CF7AFC03C91AFB98EF5022FB97AC /* SDMemoryCache.h */, + BDE8C8E66FA082F46F1643FAC6D3F43D /* SDMemoryCache.m */, + 3A5972F6E217179DC514AFBE7916229A /* SDmetamacros.h */, + A9770EBDF903A431CE5AB241FCFFA29B /* SDWeakProxy.h */, + 687C03C1A0D5934231452CF86A151B5E /* SDWeakProxy.m */, + DA0366DC09C0344E545847265A75E5AF /* SDWebImage.h */, + 2B0CEDCECE8F6A5932A40B0EE599F5F8 /* SDWebImageCacheKeyFilter.h */, + 8DEF1FCE593F12623DE48F3406DF7003 /* SDWebImageCacheKeyFilter.m */, + 75AA059908618543FD7A7E7DD4C6BEAA /* SDWebImageCacheSerializer.h */, + F6FB256EA07E33D5F394A9EA0450C896 /* SDWebImageCacheSerializer.m */, + 188EA8631594375F44FE972823A25FAC /* SDWebImageCompat.h */, + A2FB51B9742FF46DD5E6F6CC65B93B6B /* SDWebImageCompat.m */, + 17067DED77C9D2CFC9CF625FA24F832B /* SDWebImageDefine.h */, + F4C9870F922E4407BE5CF841338FA99E /* SDWebImageDefine.m */, + FBFCD3C2F41A889618134EB337C10CFE /* SDWebImageDownloader.h */, + 14A7D6A86A2083A77AE74C11D9E5B400 /* SDWebImageDownloader.m */, + 65C53CB62B4F7435CB3C693234CE5505 /* SDWebImageDownloaderConfig.h */, + C25E233CFC387CA4A006D4D00CDBB57A /* SDWebImageDownloaderConfig.m */, + 0D35826F34C3A15406C7BCA0C286C17A /* SDWebImageDownloaderDecryptor.h */, + 937527F6AC0ACCCA2F3FE296E1CEAA54 /* SDWebImageDownloaderDecryptor.m */, + CC704F85E6DECFEFBA3A0F282033AE27 /* SDWebImageDownloaderOperation.h */, + CD66401597E7952E4DE53DEC58AC4941 /* SDWebImageDownloaderOperation.m */, + BC58BA55D7533F2245DB9FE3327E7353 /* SDWebImageDownloaderRequestModifier.h */, + F27BBCA6BA4C196D7AE3AFB1E1710DD0 /* SDWebImageDownloaderRequestModifier.m */, + E0018F3662070E563761A8EF917D19F4 /* SDWebImageDownloaderResponseModifier.h */, + 773F9B01882667DE86F6CA4CE8008AF1 /* SDWebImageDownloaderResponseModifier.m */, + 93D1007188695E58DB2F07BDFDF18D71 /* SDWebImageError.h */, + 1410AE1CD716A6B76D8C34B2C0718A1E /* SDWebImageError.m */, + 80F422D9CF7F73BDD80C55E658E8103F /* SDWebImageIndicator.h */, + DE742566AA0F5FFDE0409CF795E414D7 /* SDWebImageIndicator.m */, + D705995FC6E23FD467B4D98A67815ACE /* SDWebImageManager.h */, + A1DACC2DC8AD21EC30FE9C39863EC883 /* SDWebImageManager.m */, + AC25F5250554656AB117D165FA972CC9 /* SDWebImageOperation.h */, + B89A1A86F8CF99FF82A13D16543577F3 /* SDWebImageOperation.m */, + F97E68DD72913DDFFA66907E6F040F8C /* SDWebImageOptionsProcessor.h */, + FDA3B029D6EB1945FC6FE325674E10FF /* SDWebImageOptionsProcessor.m */, + 651C41DEE47E984B8359AB6405881E02 /* SDWebImagePrefetcher.h */, + 8168F54744B4E03AC915F62D17CB4288 /* SDWebImagePrefetcher.m */, + 15C41B1F75E0AE177414264D43A54B7D /* SDWebImageTransition.h */, + D62C830395ABE984B932E2867CE13845 /* SDWebImageTransition.m */, + C9FE80D4284F880557EC33949896271E /* SDWebImageTransitionInternal.h */, + C044C8F399ACA5B2EE61EF53158B478D /* UIButton+WebCache.h */, + 9BA3D3A4D6E0BDD3AE5425664D8746EE /* UIButton+WebCache.m */, + 1E644A02D107EFCE505936D2C494F0D2 /* UIColor+SDHexString.h */, + 632FFDAC6AD7D412F1BF8F1A913A0EF1 /* UIColor+SDHexString.m */, + 0905AA9AF1C83106FBB5946C32226A04 /* UIImage+ExtendedCacheData.h */, + A57A3781B2D11ED00B067F77C51CD911 /* UIImage+ExtendedCacheData.m */, + 783FC12BAED041F378F97768D2B28B8C /* UIImage+ForceDecode.h */, + 14F04172F80298AFE5BE335BF76D4501 /* UIImage+ForceDecode.m */, + 3A044FDCB634FCC2E2D4514A1D478D6E /* UIImage+GIF.h */, + 3DE36367B42A69FD745A52FC145EF3CE /* UIImage+GIF.m */, + 76D165A54C30392DFC0BBA605E58B93F /* UIImage+MemoryCacheCost.h */, + D483DE2B67FB68CEE562CE2EA924D7A9 /* UIImage+MemoryCacheCost.m */, + 79B7929EC24027379B0B163DA94A6AFA /* UIImage+Metadata.h */, + D5252618732B4F33066C92F6903EA17B /* UIImage+Metadata.m */, + 88467EFBA0FCF30687E23912DE9B7DD0 /* UIImage+MultiFormat.h */, + DBD5C92406FF93CF245F5E43F82BE580 /* UIImage+MultiFormat.m */, + CC59B2281AD964D6B8FED7B26F17BEC0 /* UIImage+Transform.h */, + 1322DF1CDD5A25B867ADD9873A4AC966 /* UIImage+Transform.m */, + 07AEA36BD7A79BEA1F5BD73E718BEE2E /* UIImageView+HighlightedWebCache.h */, + 12D2895B84AB9CF7B83ED11129E9C360 /* UIImageView+HighlightedWebCache.m */, + 98E65BD4ED51C14C9AEED0810840CC1C /* UIImageView+WebCache.h */, + 78A70A14941070D7C9E513ECE7ECCF02 /* UIImageView+WebCache.m */, + EA52E2692A0A64130E93FC68F11C4F8E /* UIView+WebCache.h */, + CEFAFB0750B061594184687C298B8099 /* UIView+WebCache.m */, + D094492C3C9C70F3767ABB9EF6D63919 /* UIView+WebCacheOperation.h */, + 0592F073094483AED9C6687373CD3E98 /* UIView+WebCacheOperation.m */, + 1493C734914B1D5213D92AB9DC211BA6 /* UIView+WebCacheState.h */, + D3963C0BEB66BA33C14419B6AB8E504C /* UIView+WebCacheState.m */, + E5201F3866F50193E15BB3B6B62DB64E /* Resources */, + ); + name = Core; + sourceTree = ""; + }; + 0FE790F74D50D08C4BB7FCA949573505 /* Resources */ = { + isa = PBXGroup; + children = ( + B3E7BD37B3CED58C99075C4CAF81FBAA /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 0E3D99BD332A3DB3266D1DBF60DFD2CC /* Resources */ = { + 12297B13B49E08710F5950E4859DDB8F /* ObjectMapper */ = { isa = PBXGroup; children = ( - 7C2E339CA969D2C5ED74BA6ECD6F69EE /* PrivacyInfo.xcprivacy */, + 1159483893C79D787E89D45D687672E6 /* CodableTransform.swift */, + 6B8DD93F892EB3A76FC4B0CC65600DED /* CustomDateFormatTransform.swift */, + CAFECD5FCBEEF8FDD448C9D99E7875DB /* DataTransform.swift */, + 88A88BE7352DE9732931C54A38F9936B /* DateFormatterTransform.swift */, + 9A58F10CA935A050138ADEC85D511540 /* DateTransform.swift */, + 4E36CFCF21F8FB81BAA8FBA2F261E949 /* DictionaryTransform.swift */, + 12C03BC1B83CC86160BD1E3A61E1D046 /* EnumOperators.swift */, + 85BEE30BD1FC651C5184A49AFD512A6C /* EnumTransform.swift */, + AE4001EA3C74696CD653D4D456B33090 /* FromJSON.swift */, + E09E6912A84AAB34450313597D8759AE /* HexColorTransform.swift */, + 0DE1E8395E47D386B6490E17E8F67252 /* ImmutableMappable.swift */, + DCACD2069A5D045848CDC2E5FCB44305 /* IntegerOperators.swift */, + CE2D6B492452344FA1B760EFFD9DC1E5 /* ISO8601DateTransform.swift */, + 1C88283412781FE32730568EB4E8A4BF /* Map.swift */, + D59B8B70311C2BD0CBADA376182EF9B8 /* MapError.swift */, + 95E8FA08C357760274FBE094F7121F08 /* Mappable.swift */, + 8D35101D07B11F5698DC173C735AC6B7 /* Mapper.swift */, + 967D6286ECF8DBBE843AB35C9E2CF2B4 /* NSDecimalNumberTransform.swift */, + AE26DEC3493C62F248963D1C42788E9A /* Operators.swift */, + E36C51FA8863274AB0025855E64ACC3D /* ToJSON.swift */, + D105F796848D507AEBB1461B0F8A6D7C /* TransformOf.swift */, + 33019DB9E82E9B11DA3C4C5B100E7390 /* TransformOperators.swift */, + 087AC616BCEA82E356A02B7EFD0EF5EF /* TransformType.swift */, + 732C3D046DA1DDAADB427A51CFA8D702 /* URLTransform.swift */, + 01003CED91A500DC951FDE1309E8688F /* Resources */, + A4E463123A809DF90D0568E1DDE155F3 /* Support Files */, ); - name = Resources; + name = ObjectMapper; + path = ObjectMapper; sourceTree = ""; }; - 0FEF784F0E246EA0D076701814EF5835 /* Resources */ = { + 1240F3E71CF79AFE7599F80E6FA2378F /* Frameworks */ = { isa = PBXGroup; children = ( - DC9DF62EF43848BE1C5F234D65BCBC98 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 10C9798C964CC79A5087E94A601C1F14 /* Frameworks */ = { - isa = PBXGroup; - children = ( - C559E1C6589C2C4D9F94A887A6257ACE /* AlipaySDK.xcframework */, + FF7E14938F3989FCF9A133CE332AC1B2 /* AlipaySDK.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 13234F058AC42FE4586F0BC017BCB32C /* Model */ = { + 14CBF5E833AC8FA8395F48625F0CF0CE /* Support Files */ = { isa = PBXGroup; children = ( - A6169659CBED06CD788319B06F6437EF /* OIMAtElem.h */, - E2664E5BCD9D8BA910C7D09EA6C2AFBA /* OIMAtElem.m */, - 1583E5EDD96C5DC700A9A7CB042E5C7D /* OIMAttachedInfoElem.h */, - ABAA3CDFB336842D51FBF95ABD577DDB /* OIMAttachedInfoElem.m */, - 75E5014C5A20DE4797B4451A675607F3 /* OIMConversationInfo.h */, - 7CC518F434B48E1EC17CB97405E4AAE6 /* OIMConversationInfo.m */, - 39FED66228C9465702293375314C454F /* OIMCustomElem.h */, - 030E7B5E65DD005483DE4FC112390EBA /* OIMCustomElem.m */, - 91C802E651BCE006BD4115AB9D594543 /* OIMFaceElem.h */, - 1BCC4F82D2FB23B74FAFB19A6D5D21C1 /* OIMFaceElem.m */, - 7E23A30B365807329D25B8ECAF0D6DF3 /* OIMFileElem.h */, - A1603778C0EE3DA3ECCBEBA945D3B01F /* OIMFileElem.m */, - 039025967C251ADD69ACE1553B51DDF0 /* OIMFriendApplication.h */, - CB5268316387EAF511FE3FDA946F4C23 /* OIMFriendApplication.m */, - BBDC785D271CA5318A067B81436E8352 /* OIMFullUserInfo.h */, - 565598230E6135EF0029F6DFA99179EE /* OIMFullUserInfo.m */, - 560ABA646A2022BD1E5E93D0A9E39B26 /* OIMGroupApplicationInfo.h */, - 20FFC6126E63DBE03B5555F2CEA45936 /* OIMGroupApplicationInfo.m */, - 5318EE889AE2ED47F81CC78C2069CB35 /* OIMGroupInfo.h */, - 49B2C730E8574BF4D63DAF8204DC6409 /* OIMGroupInfo.m */, - E18772AEBB906F18A2BFD0E99C107C5B /* OIMGroupMemberInfo.h */, - 3031EF8A675A49AB3D585F9F2A638A62 /* OIMGroupMemberInfo.m */, - BF0E479511C18ADD53E88F03961CB9F1 /* OIMLocationElem.h */, - 34B31BD1C43D0EDD718C40AF38280324 /* OIMLocationElem.m */, - 58D937DEC9A6DADC4020FC73AD7DB7DD /* OIMMergeElem.h */, - 5199447D815E8771DC0B057BD811E2AE /* OIMMergeElem.m */, - 7CF512563DEBEF3926ED04F7296DA8B0 /* OIMMessageElem.h */, - 212097E109C37ABABE45EE6C1CB93074 /* OIMMessageElem.m */, - E4B119AE75A9A04C0FC424C31B4F171B /* OIMMessageInfo.h */, - 7C10ED747514E81C114AB0F3CA16FEE2 /* OIMMessageInfo.m */, - C961DD0E63F5AF416C1B3514F9AEBF47 /* OIMNotificationElem.h */, - 7DB99949480CB8A0B0DF10697A19BAF6 /* OIMNotificationElem.m */, - 6E2F7CCC851477208D59289153C67F97 /* OIMPictureElem.h */, - 1C2073401AAF79A598AB6B0B912877B8 /* OIMPictureElem.m */, - 63D81D87D9F9A845B326030633297628 /* OIMQuoteElem.h */, - 4B160D855FFEF98949AC7D84DF900D91 /* OIMQuoteElem.m */, - 54840BCE2FF7D34360F15C8D7EE872EC /* OIMSearchParam.h */, - 59A43B984C0AF852A6F8AB9E25671AE5 /* OIMSearchParam.m */, - 0DD5014CBC7EBE462FEFF1A0895E2A0D /* OIMSearchResultInfo.h */, - BA124264AE4D19CCA7B7B57D21302619 /* OIMSearchResultInfo.m */, - 27C4EB466DCF1D0C56B87A1492131A17 /* OIMSimpleRequstInfo.h */, - EC75BE3FA4A00604568829C9FF27AAAE /* OIMSimpleRequstInfo.m */, - CF707A0420C20F296F4B5A4D3D2534DD /* OIMSimpleResultInfo.h */, - 77677AE1490EEECD80C448F28787D67E /* OIMSimpleResultInfo.m */, - 65A15F4C96CAED1C108C40708EE87EF4 /* OIMSoundElem.h */, - F0C281DB20437F52417B71177BFAEE60 /* OIMSoundElem.m */, - 8D589F9274BAFDCFA26362A2DA2F9EB0 /* OIMUpdateFriendsReq.h */, - BB4CCEF4612B6E93B18A7AB979A7B8E6 /* OIMUpdateFriendsReq.m */, - 6FE753BC375C0C5909BCC6A256CBBD0C /* OIMUserInfo.h */, - AC8A56E876CE12D362A2C2E78A8D3CCE /* OIMUserInfo.m */, - BD860D73C4D35821C2B060BD58768183 /* OIMVideoElem.h */, - 8B1969DDA8CB584F16A88D1B0AB032B1 /* OIMVideoElem.m */, - ); - name = Model; - sourceTree = ""; - }; - 1478CB67C405C2641DB2E3E2AB7A31B1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3C4791B8C2A49D72E41FF9376B1ABA2C /* KingfisherWebP.modulemap */, - F49EBA828878A7FD53EFD3EC52DF8DB4 /* KingfisherWebP-dummy.m */, - FD55ED66E31AAE52903F4144A4A5B144 /* KingfisherWebP-Info.plist */, - 30EAD96D230B4FD77745E03EFA29E7D5 /* KingfisherWebP-prefix.pch */, - 4F68BD6425465F18A23B292AC6D7B869 /* KingfisherWebP-umbrella.h */, - FFD32F8F371F0FF3AB2E0204D4001137 /* KingfisherWebP.debug.xcconfig */, - 5875DE076530A11A7D58B4A3F7C35B1C /* KingfisherWebP.release.xcconfig */, + 99499D0EE1F54DD810D25785B2CEF644 /* IQKeyboardNotification.modulemap */, + 2F5FB553F91C4DAAD1EEBAB85DD87170 /* IQKeyboardNotification-dummy.m */, + D77FDB1C0C58A70586287759D338EF34 /* IQKeyboardNotification-Info.plist */, + 6ED83F2399718196583271FC686CBC4D /* IQKeyboardNotification-prefix.pch */, + 29DD63712BF5682DFBF582E1766154EC /* IQKeyboardNotification-umbrella.h */, + BBEF8ABEDA5FDBA01511762EB65DD72A /* IQKeyboardNotification.debug.xcconfig */, + 1E34C4B78DD7F2261388D210C5CADD36 /* IQKeyboardNotification.release.xcconfig */, + 57B4109175DBB8D4D441F6102ED76412 /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/KingfisherWebP"; + path = "../Target Support Files/IQKeyboardNotification"; sourceTree = ""; }; - 17BF613B5E6E87BD0EFB340EF8E07E6C /* Frameworks */ = { + 1599095F42B10F407428B81B12177944 /* Support Files */ = { isa = PBXGroup; children = ( - 75BB2637D9DB872F6C846F83FBCD4A40 /* AMapLocationKit.framework */, + 090A0F0AF4335239DE003FB4A5980412 /* AMap3DMap.debug.xcconfig */, + E078D46C2A601050DB01A977C864B192 /* AMap3DMap.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AMap3DMap"; + sourceTree = ""; + }; + 17035DDE77D81288E6D4B9C13C5E68C1 /* MqttCocoaAsyncSocket */ = { + isa = PBXGroup; + children = ( + B1F10350695B3DDE24FB29DF4C930600 /* MGCDAsyncSocket.h */, + 5F5B52F8C128A08525589088D88B446A /* MGCDAsyncSocket.m */, + 850C6A13A8188DD67C782628C68BEC21 /* MGCDAsyncUdpSocket.h */, + DE2180C541DB14418AE24C9C09FB2399 /* MGCDAsyncUdpSocket.m */, + B6BC1669B13CBAA9F498D430C4891630 /* Support Files */, + ); + name = MqttCocoaAsyncSocket; + path = MqttCocoaAsyncSocket; + sourceTree = ""; + }; + 1729FC80456CEF9B99374B5D7FA2C982 /* RxCocoa */ = { + isa = PBXGroup; + children = ( + 3CB8C613628313363644BD09AD359103 /* _RX.h */, + 9C4D23E4B97E5589131E460C9DAE5009 /* _RX.m */, + 8F7CC255B973DED6704CF75AA5652653 /* _RXDelegateProxy.h */, + 2B6298FFD801309A5E645D5E694C08F2 /* _RXDelegateProxy.m */, + 144656E3F5F7AE2576B871406A869F02 /* _RXKVOObserver.h */, + 075882F6287E92089A2D5E849864B5EF /* _RXKVOObserver.m */, + C444211868DE12D238B5BF354455FC4D /* _RXObjCRuntime.h */, + E66D165B0BE2563D5DADFEB252DF1608 /* _RXObjCRuntime.m */, + 43406D3985E9918221FE0A4DE1B571DA /* Bag.swift */, + 614D20EE3407F1CF8CF6E98954CC88DE /* BehaviorRelay+Driver.swift */, + B4CDE77BD401C132B20942F8B3CA92E7 /* ControlEvent.swift */, + 8360D5277A3EBD251BE1D7B8B657CBB2 /* ControlEvent+Driver.swift */, + 1E1B0A6502E32D023ACE68E9AAF41799 /* ControlEvent+Signal.swift */, + A912BE71BCC6CE5C8A4741C1D8E0D65D /* ControlProperty.swift */, + 0DBBD891BF6C368D4AE331AD41909336 /* ControlProperty+Driver.swift */, + 6E0C12AE7D6E705E0AB3F100E94BDB07 /* ControlTarget.swift */, + AC1490178B4403F12075DA020083F475 /* DelegateProxy.swift */, + D3BAA59A5DF299D939954B1D0B6BAB74 /* DelegateProxyType.swift */, + D057D2D724536C69CB371BBB638D3B1C /* DispatchQueue+Extensions.swift */, + 24A12D238EE2AFDFD11A5BF137C767AA /* Driver.swift */, + F140B22CB4AB5F7F5608248DFE474EB8 /* Driver+Subscription.swift */, + C5DEF7F662508A12F2DEF686D8ED3570 /* Infallible+Bind.swift */, + 80F95906923E1515A2AD4F0F6690D8F6 /* Infallible+Driver.swift */, + BA453413AE53C58DA619D0B966B41FC6 /* InfiniteSequence.swift */, + B9891B991F8D7F282B6C175E77BE7D0E /* ItemEvents.swift */, + 620866CE6F644E71DD360A0EFAC1D7D4 /* KVORepresentable.swift */, + 5A88BF209F6202B0E730318470DDD8BB /* KVORepresentable+CoreGraphics.swift */, + A63D5EC5608CA5FC91E9F28422C4C1E7 /* KVORepresentable+Swift.swift */, + 9026790117C43E79599D121A106C2214 /* NotificationCenter+Rx.swift */, + 6290E5C0F32B2229537B63C8028A89CA /* NSButton+Rx.swift */, + E7B9D50DDFEECB6C6DE1EAEA0BC8ABE0 /* NSControl+Rx.swift */, + 4BB5E60ABB3231746217C7BE67D898E0 /* NSObject+Rx.swift */, + 9DCED5C705FE63535A256328BB0E994A /* NSObject+Rx+KVORepresentable.swift */, + 7675A584D15BA63139E519FD2CB2457A /* NSObject+Rx+RawRepresentable.swift */, + 11C1ACD4FF2DDE99653570E86A791A22 /* NSSlider+Rx.swift */, + 3CFF889EB81CC40894452F644825AF71 /* NSTextField+Rx.swift */, + FBDE0A3AD89058345ADDE79961120897 /* NSTextStorage+Rx.swift */, + 83BABF10DDCA2F56F8F22F97844ED531 /* NSTextView+Rx.swift */, + 5758CE5A67AFA979046916DC97CC125B /* NSView+Rx.swift */, + 071040A220C8B1B13643EADE3387CE25 /* Observable+Bind.swift */, + 3F5BBFBC93786C1203D7B9FC6A5D8002 /* ObservableConvertibleType+Driver.swift */, + 2F63AC006B2627EE41E02B5552FA3FDC /* ObservableConvertibleType+SharedSequence.swift */, + 5BE318237005B61F9AF9628B6F039D09 /* ObservableConvertibleType+Signal.swift */, + FCF8B7BABFCFD728C47BD91B529B0830 /* Platform.Darwin.swift */, + 46F633D702261FD3818B8BC3F02C82DC /* Platform.Linux.swift */, + 869279DCDFEC7F94D90F59FA986A08DE /* PriorityQueue.swift */, + 3D12B6120AA47A34F846154D94CAA3F4 /* PublishRelay+Signal.swift */, + 75CFF08BA767C49703863DFF96165154 /* Queue.swift */, + 1565C58CB6645EE5908226C8FA71D0F8 /* RecursiveLock.swift */, + 583B4C6A567749AA875BA86DF64F5671 /* RxCocoa.h */, + 6092F696CF83DAF2A79FEC33407A7B6D /* RxCocoa.swift */, + 41497B385EDAC9F73A4855C08692FDB1 /* RxCocoaObjCRuntimeError+Extensions.swift */, + 80B0158484445E6EEDCB488111857C96 /* RxCocoaRuntime.h */, + 7B7E3FC6BDBCDDF8FE344D514AFA47BC /* RxCollectionViewDataSourcePrefetchingProxy.swift */, + 1D0927FACAB8AFC0577E10CE3E51400C /* RxCollectionViewDataSourceProxy.swift */, + 6946053ADEB795CA6BF8DC00F6E9818C /* RxCollectionViewDataSourceType.swift */, + 328666E1FE05310AC0A5D3D31B1E08E1 /* RxCollectionViewDelegateProxy.swift */, + 410138B7DB73A37EA3B12FDE47EC6909 /* RxCollectionViewReactiveArrayDataSource.swift */, + D7F7D27217E891C5F29A685C844B453C /* RxNavigationControllerDelegateProxy.swift */, + 74ED59197619BCC0BC378F7696D9CF23 /* RxPickerViewAdapter.swift */, + EEEC9F1860BDB5691ECDE33AB473E52E /* RxPickerViewDataSourceProxy.swift */, + 808561ABAB1F1D752523D18D433D1913 /* RxPickerViewDataSourceType.swift */, + D9C19B02A149A3CE437F509ED0B3F6D6 /* RxPickerViewDelegateProxy.swift */, + 3F30D8D00A655C7EC5DA8DC98A8361B5 /* RxScrollViewDelegateProxy.swift */, + 9338849C2BBC91DD9D38114527BD13B0 /* RxSearchBarDelegateProxy.swift */, + 4C9C1726151F48CC295DA74726E495B9 /* RxSearchControllerDelegateProxy.swift */, + C258350AE25DA6A17D93C6E9D2CF991C /* RxTabBarControllerDelegateProxy.swift */, + 728E021DA9E63720A04C56E1FB52DA37 /* RxTabBarDelegateProxy.swift */, + 38BE8955A2F8AA0C1F76F5B85C29BB9B /* RxTableViewDataSourcePrefetchingProxy.swift */, + CBA1509DD9D34552546037937DF23074 /* RxTableViewDataSourceProxy.swift */, + 19D41911253A4EA902F92DB8C0EC5822 /* RxTableViewDataSourceType.swift */, + 208FBB9974C322A514DDB9CF05374E5E /* RxTableViewDelegateProxy.swift */, + FC4CC40B8B0D567BE5F577D1576BDBDC /* RxTableViewReactiveArrayDataSource.swift */, + D829C1EF7480121F20D5D88502020A07 /* RxTarget.swift */, + 224EE27EF8A4CB6DE2A2994B3B4BA865 /* RxTextStorageDelegateProxy.swift */, + 13257E2CEB981F8DE0977FDCD119CA08 /* RxTextViewDelegateProxy.swift */, + 60CA0BB648C2262B78659DA12DD51A2F /* RxWKNavigationDelegateProxy.swift */, + E6B17E7E86D3F8E7C697BD0F77163A15 /* SchedulerType+SharedSequence.swift */, + C12787613C350ACAA6E34E28788B71EF /* SectionedViewDataSourceType.swift */, + 66E59E81DC8FF48EDF585F8556EBF878 /* SharedSequence.swift */, + 4CFB6F6DFDEB8E69C4A18B6691BBDD7F /* SharedSequence+Concurrency.swift */, + 56A5A309D34A2E484F6D17F00DAA899C /* SharedSequence+Operators.swift */, + 650CBF9346AD732290BB7ED692D6B5F7 /* SharedSequence+Operators+arity.swift */, + DE77A4C4BB20BB9E98756314B59D7425 /* Signal.swift */, + E5B193016B16AF60E6FAC43E2C25F15B /* Signal+Subscription.swift */, + E861069B4AB76BA0BDB1C06C5147DCB7 /* TextInput.swift */, + 1B9BF634B186B10B3DEB036AF4CFC662 /* UIActivityIndicatorView+Rx.swift */, + 843DE0B172D56D4DE04CED8FE9C2717D /* UIApplication+Rx.swift */, + 844DF282F910BCA1C2789FDB5A2CB231 /* UIBarButtonItem+Rx.swift */, + 12AEC4022B4E74BA76823EDA45EF7B0E /* UIButton+Rx.swift */, + E95702201E937BD3B02E440468773440 /* UICollectionView+Rx.swift */, + 671AC6BBB7E983A9C3A434F31B12481D /* UIControl+Rx.swift */, + D813A5AF071FD0BD4182C8B22E365A01 /* UIDatePicker+Rx.swift */, + C1D497158B767F77BFA5E0748C677F85 /* UIGestureRecognizer+Rx.swift */, + D68DD308DBBCA95916FA607C00564308 /* UINavigationController+Rx.swift */, + 6448C33FD616D663955373268AD9800D /* UIPickerView+Rx.swift */, + D5FE50E2C3759529F39015ADF4515455 /* UIRefreshControl+Rx.swift */, + CDCD962236713536EFF122F0B8A174DF /* UIScrollView+Rx.swift */, + 2779AC1EA6378DFB55EC94CB2A921AEF /* UISearchBar+Rx.swift */, + 5F2CAB5804E5C6FE12F21F2E73D0504C /* UISearchController+Rx.swift */, + 2E82BF932F82DDF213C52EC34483CFB3 /* UISegmentedControl+Rx.swift */, + 17213D82F9306746169202894B0EAD94 /* UISlider+Rx.swift */, + 83A7C22E3795619790A213E6D8DC23DB /* UIStepper+Rx.swift */, + 4CDD47B22A2046775AB63801AE6381A4 /* UISwitch+Rx.swift */, + A73D10EE0B3B95755803C56234B8C194 /* UITabBar+Rx.swift */, + 4B3A498E078050E333B31F85315541AC /* UITabBarController+Rx.swift */, + CCD7BCD9C08B7D6A5BDF7D7B7E93E2C4 /* UITableView+Rx.swift */, + 45847A481163BB50EC86B3708DED15B7 /* UITextField+Rx.swift */, + FE537AA8E8B46BAB0B6477FFC2C8F915 /* UITextView+Rx.swift */, + 7697809BBA99F7988F7FFD07178DF004 /* URLSession+Rx.swift */, + EFDC09EB16E3515D1F2F66533C832822 /* WKWebView+Rx.swift */, + F2885CB689AB458D2550825B8891B537 /* Resources */, + E14CAAD9AACB44493155D716691D2BB6 /* Support Files */, + ); + name = RxCocoa; + path = RxCocoa; + sourceTree = ""; + }; + 17E8652D5B87475A0EE4D8410FF319FB /* RxCocoa */ = { + isa = PBXGroup; + children = ( + B10E608E3748FA5D17E35C221637F5CB /* distinct+RxCocoa.swift */, + 00D5B305DEE1ED75EE8C4354CC33DDCA /* mapTo+RxCocoa.swift */, + 3BE64571CFA39F6E7F89C21A96D1D7FB /* not+RxCocoa.swift */, + A9C7F4582926271F92F237DDB69DF485 /* partition+RxCocoa.swift */, + CA661D4F822BB9E46CE4E3531131BCF2 /* UIScrollView+reachedBottom.swift */, + 0992FBF15192FDE359109D457FACCB68 /* UIViewPropertyAnimator+Rx.swift */, + A66A31893F6C7863209C97E72EC09DF9 /* unwrap+SharedSequence.swift */, + ); + name = RxCocoa; + sourceTree = ""; + }; + 182B8E01020C6F0D2E94C066E3B19A52 /* AlipaySDK-iOS */ = { + isa = PBXGroup; + children = ( + 1240F3E71CF79AFE7599F80E6FA2378F /* Frameworks */, + 1A185B21DDF02650E788089C3A9EDFA0 /* Resources */, + 55C4125A98F46875D476B398546E5702 /* Support Files */, + ); + name = "AlipaySDK-iOS"; + path = "AlipaySDK-iOS"; + sourceTree = ""; + }; + 19A53117A1E38E29943319780A65256B /* Frameworks */ = { + isa = PBXGroup; + children = ( + F6F7F87E9741597E5B0B6B3E10027344 /* GeYanSdk.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 183806F986FA7C7B9F4550202167A862 /* mux */ = { + 1A185B21DDF02650E788089C3A9EDFA0 /* Resources */ = { isa = PBXGroup; children = ( - 547E17D5968AAA672C509552228E9667 /* anim_encode.c */, - 09A47D8BBE8F670AEE1597E694E9299C /* animi.h */, - CAA1AA03A70AEA0C5A111D92FB984179 /* mux.h */, - CBD645FB492CC8ABAF8474214E280CC7 /* muxedit.c */, - 66E1CD8AB08972115F770800608A1BDC /* muxi.h */, - F2929AA63D82688BF8DA0D85380910E8 /* muxinternal.c */, - CDB7FF942B90BE067AA3B27A25238BA5 /* muxread.c */, - ); - name = mux; - sourceTree = ""; - }; - 184104BE580B9AD33844D3C3137BD7DF /* lottie-ios */ = { - isa = PBXGroup; - children = ( - 18A15E6769049B4159AC23B4E203B59A /* AnimatedButton.swift */, - 90ABBE9D63AD78104E5DACFD423F724C /* AnimatedControl.swift */, - 44EBEF9387307DC81A32EFFE81F6035F /* AnimatedProviding.swift */, - BED7A2A6B98402F4898A2ED5031C9DD6 /* AnimatedSwitch.swift */, - E7742E45657024F0DDFEBD97D410588B /* AnimationCacheProvider.swift */, - 41CC3F3DD2BB8D3B4156748F2141ED40 /* AnimationContext.swift */, - DB9746CC3590A586C2503988C11BFE17 /* AnimationFontProvider.swift */, - 55FD0B6A9D6EEFE6A1C9B281B105F80F /* AnimationImageProvider.swift */, - 872E8E52ECD0CD6B77BAAB141EA3389D /* AnimationKeypath.swift */, - 5EDD5DC412BB584AD5F6B72E3728689F /* AnimationKeypathExtension.swift */, - E2FB81BBD6BCBE9C6D6A155576A27671 /* AnimationLayer.swift */, - 522FFC7277C7384DC812F49DAC6A2BD7 /* AnimationSubview.swift */, - D9AABB0BF024C76A2F4778A8BF77E9BE /* AnimationTextProvider.swift */, - 775230A1FA491738DF687BEEB0E36177 /* AnimationTime.swift */, - 29501204E1391BC59AB7AF310834F053 /* AnimatorNode.swift */, - C9889E1671FA4909135510BCB410874E /* AnimatorNodeDebugging.swift */, - 35D0028F706E6F2DD1BBA09C9DD8E405 /* AnyEpoxyModelProperty.swift */, - 89EF7D735951E4D80CDBC73A687206F8 /* AnyEquatable.swift */, - D5BE10E514BD8C3BBDC238C222A00125 /* AnyNodeProperty.swift */, - 616B42C1149DA62E1819065E55738C44 /* AnyValueContainer.swift */, - AD27972448441D5FB6107C986BEBBE74 /* AnyValueProvider.swift */, - 3A5135277BD48056B6627693C1C65126 /* Archive.swift */, - EEBAAA80E335D6590A9D194325FBA00F /* Archive+BackingConfiguration.swift */, - 35B2495153788DD6EBBE5BF78859D1A2 /* Archive+Helpers.swift */, - 82431D0B15FED817380B6ECAC0135BCC /* Archive+MemoryFile.swift */, - 60BB1F68A42EFD825729CE824368D4A7 /* Archive+Progress.swift */, - 37835981F866845A76C1CFB6F3D10614 /* Archive+Reading.swift */, - B88D5DEAACE6FC226515037194E0A093 /* Archive+ReadingDeprecated.swift */, - E8D7DF632932C141A3A0BC1099B53183 /* Archive+Writing.swift */, - 803551D524EB59D9A654D4CB1D25BE8F /* Archive+WritingDeprecated.swift */, - 02FF9BD791E7E79B5F6D78F088939100 /* Archive+ZIP64.swift */, - 80FC60B5A2EE8A0941AF06CB71BD4601 /* Asset.swift */, - DB7856D2A89B795002794BEF5165A081 /* AssetLibrary.swift */, - 165FC294BFD8A65FF438D6516CD19815 /* BaseAnimationLayer.swift */, - 8EA54F0BF8E86197CCAC3BD763221B5F /* BaseCompositionLayer.swift */, - EFFEA7E4A731859F2E8145F75A7FCBA0 /* BehaviorsConfigurableView.swift */, - D9469079C705E0ACD65CE0D499E85ADB /* BezierPath.swift */, - B2001A2C582FBBA94AF91ADD4B9931C5 /* BezierPathRoundExtension.swift */, - BE5939CE0FDBDC6B3C62814EA03E1F30 /* Binding+Map.swift */, - F5D7AA96F4C384FFC61ABBD9C65C7F0A /* BlendMode+Filter.swift */, - 4132CF769C59E4962F728199F4EFDCCB /* Bundle.swift */, - E29063E89830E3D7872C21835ACA7C8E /* BundleImageProvider.swift */, - 975ECCBDDA389719AEC4E54DB0112147 /* CAAnimation+TimingConfiguration.swift */, - 36F5425BDC1B6DC62C60458D483CDA77 /* CachedImageProvider.swift */, - 285EA2B479EE8B45155F473C9D20EED7 /* CALayer+addAnimation.swift */, - 0A010C711309127F26077A97DB9D8DE1 /* CALayer+fillBounds.swift */, - 0063BE2DFA2C0152F5DDEEF7CA4531B7 /* CALayer+setupLayerHierarchy.swift */, - A6C5691B4B9FEB2303C898F704D97B3F /* CallbackContextEpoxyModeled.swift */, - 635BD03226AC5A8DC2C0FCBBE2A1A271 /* CGColor+RGB.swift */, - CD53BA557DF4BC4953A4AB9EC6A4FF57 /* CGFloatExtensions.swift */, - BAFDBAA1B3E4639B806A656741AAC875 /* CGPointExtension.swift */, - 43CBA87A6062D67B43C728A78CDD889F /* ClassReference.swift */, - 2EC2049C823875676B5A5A9A7CF7CCCA /* Collection+Diff.swift */, - EE8AC2C8937DC5474F53AD860FC089B9 /* ColorEffectValue.swift */, - 73B1D5C56726F64AE0476C0C1DE058EC /* ColorExtension.swift */, - C0242CA8AEDD877040E56C254660FC43 /* ColorValueProvider.swift */, - 9BD6B4F346C99BD856693783A8C59593 /* CombinedShapeAnimation.swift */, - A7D400804C9D63E6FC3EC09C0CDDD6D2 /* CompatibilityTracker.swift */, - 4C52DF26092158048682358F43565CB5 /* CompatibleAnimationKeypath.swift */, - BFEAA4C469AAC85BB62868EA0E706D5F /* CompatibleAnimationView.swift */, - B702621E70E249E80F3885815B6D43E0 /* CompositionLayer.swift */, - AD03CCC56A646093FE8F14113693E9AE /* CompositionLayersInitializer.swift */, - B6C2FBB7FA150DD8D8F445CC781BF20D /* CompoundBezierPath.swift */, - E82B6099394C2F5A543E192B85CC8691 /* ContentConfigurableView.swift */, - 687267D7FB090DB33AAF5A62DA1D0495 /* CoreAnimationLayer.swift */, - E4B19EAC26B64E59FF162E36726E6092 /* CoreTextRenderLayer.swift */, - AA285ADE8A6A7FDFFE668150218D3D8C /* CurveVertex.swift */, - 38EEDE814FAD2740F02699B6E4BB0001 /* CustomPathAnimation.swift */, - 30ABC2B69AA7FDD403BBA66A483AA50B /* DashPattern.swift */, - DB7D268FBB10E0D836B97C3928B5321B /* Data+Compression.swift */, - 050847A31B5BFFB8A95DC61D0BE1E3A8 /* Data+CompressionDeprecated.swift */, - 0CD26ACB38019F95EF4C9767072D150E /* Data+Serialization.swift */, - D6F586A5D8FE098F83C58AFB7B88C5B9 /* DataExtension.swift */, - 3E4BEB998FE521E695D73DC9BF2ECA90 /* DataIDProviding.swift */, - 86CDC89A868B6D3092C6F3EE456FC553 /* DecodingStrategy.swift */, - C8F3F7FD348306025BE447B96E130A74 /* DefaultAnimationCache.swift */, - 7E5D68AE59A4587387B9319DF7CF3358 /* DictionaryInitializable.swift */, - 09C9FFCB4BFE694DCB6775DB83FA38FE /* DidDisplayProviding.swift */, - D5D3C4F3B57323AEE14C3961892E5BBB /* DidEndDisplayingProviding.swift */, - 88CF94B26432761AD7272FFDA7D98646 /* DidSelectProviding.swift */, - 7FB7CFB34CBF3DE8D9065DC420ED9447 /* Diffable.swift */, - 2C6A602E36472CC2DC2327225B04D330 /* DiffableSection.swift */, - 0406D4904704EB518E43EE52B4F1D1AA /* DotLottieAnimation.swift */, - FFCED4E784FD6B990CD666FDBBA0A426 /* DotLottieCache.swift */, - 9E8AF1331E01EDB4F004F4129550A574 /* DotLottieCacheProvider.swift */, - C184E760724FA58B37DE2A4F77BFEFDC /* DotLottieConfiguration.swift */, - 1F6B612D76BB12D1DD8A1C1714E48765 /* DotLottieFile.swift */, - EA9838D5568CF08D46DA7E59F8CF6C0D /* DotLottieFileHelpers.swift */, - A2739ABA43794B9409EE2F3DDA37D1A7 /* DotLottieImageProvider.swift */, - 10BDD4803F2D3B0D30C89BAB4D03D216 /* DotLottieManifest.swift */, - 9AE453074B44CE425E74E7005ECD4AE8 /* DotLottieUtils.swift */, - 3A27D042C38FA3F775A3165A4F4623C4 /* DropShadowAnimation.swift */, - F6A1B9FE2A7F11E3B46CD429C4BA078D /* DropShadowEffect.swift */, - 6746F5634973F191E0B1F6461DB1945D /* DropShadowNode.swift */, - EB8EED23F953B16F768563FC931049B9 /* DropShadowStyle.swift */, - 48F6E0EA41E40ECC2E2F6DD4D0B38CB1 /* EffectValue.swift */, - F531DEF9CEEFBD2F35BEBFBF41D073F4 /* Ellipse.swift */, - 471AA0E6419BEC2F99BC28C13F677E88 /* EllipseAnimation.swift */, - CAE7582B7C4BC8106041A1A832420987 /* EllipseNode.swift */, - 637A7313065D5EFD2C26D2F8C370607D /* Entry.swift */, - 4DECC62F44E2E42AF9DA7B4D12D109AD /* Entry+Serialization.swift */, - B96763E0F72C4F15536986714E73823B /* Entry+ZIP64.swift */, - CA1147DBAED55DD02A850E00497B92DB /* EpoxyableView.swift */, - 0E8F9DC1785CD80E71ADCCAC6918470F /* EpoxyableView+SwiftUIView.swift */, - 86450CB64F3B277D05E16E3FCFBDDDC6 /* EpoxyLogger.swift */, - 291F235F7EF38C4F833B4A14B6C4236F /* EpoxyModelArrayBuilder.swift */, - 1FF7D4D50D65E9D4198254BB3BEA4CA0 /* EpoxyModeled.swift */, - A132C1553C8DE2206B733C062A0E2D83 /* EpoxyModelProperty.swift */, - 22C59EA8496E114A956C1B762EB73B8A /* EpoxyModelStorage.swift */, - DB4DCA05AF0C1A1C21B89A7468E041BE /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */, - FEC5AA73C23F8210E1D7C888097942B0 /* EpoxySwiftUILayoutMargins.swift */, - 477382C0F53729E89AD8720A95AB42A7 /* ErasedContentProviding.swift */, - 7E794613B7B4967B7E315E58575C19E8 /* FileManager+ZIP.swift */, - FF9D3F780F9307B2A4956B12C94603D9 /* FilepathImageProvider.swift */, - 3672AB437DFA2D3DB0B46CE5363FFC21 /* Fill.swift */, - 3C6988BCE07821C58551CEC828E29088 /* FillNode.swift */, - C61CA1E7129FC9BB178D8C730B3B5A79 /* FillRenderer.swift */, - ADEB27CA669C4121E999811969AC33BB /* FloatValueProvider.swift */, - 4E088D11842C15829D25C41127693532 /* Font.swift */, - 2D85C068680B34A7EEFF48F7268DD710 /* Glyph.swift */, - AC3BD5DF5C448ECFA97F2D14FD13D728 /* GradientAnimations.swift */, - 0A6039DC25796F9AE9A8B94A69984B37 /* GradientFill.swift */, - 020D6025AE9566485C60DFB72DEE5B18 /* GradientFillNode.swift */, - 716D4AEC881C597AE0F28479D16E71AE /* GradientFillRenderer.swift */, - 7381A6E52759A60F4F9B92C1DE3B2E15 /* GradientRenderLayer.swift */, - 0CE84950E22DD459CF2C5DB2783BAFFB /* GradientStroke.swift */, - 97F0DF9B08CCA8D2A5749BBA40C04F42 /* GradientStrokeNode.swift */, - 51F373DF5148C21C78733AFACF8E29F0 /* GradientStrokeRenderer.swift */, - 380BDB77A870AFA5A57428CCF35356E9 /* GradientValueProvider.swift */, - 812C339FF35298294B26DF3F2FC34F31 /* Group.swift */, - 5AA735164364C8F331D4C9C21EA6F20C /* GroupInterpolator.swift */, - C40F5AA4F27B5CB9A27F0ACE39DCE988 /* GroupNode.swift */, - 675B12B7CAD812ECF38A4EBD29B11E06 /* GroupOutputNode.swift */, - B2436D99B65B6A8D428A0B859116B860 /* ImageAsset.swift */, - 8E6324703E1125DF8EE3BBB0953D938B /* ImageCompositionLayer.swift */, - 2A75DA3631019C8E174047B15B8ABDEF /* ImageLayer.swift */, - 5F93EC958C215B385E15337C6289B91B /* ImageLayerModel.swift */, - 8D3D018125621B4BB8BD7ED705778350 /* IndexChangeset.swift */, - E7F0E8464FD7AF4F138EB5EAA5FA48F4 /* InfiniteOpaqueAnimationLayer.swift */, - DF15FC481CCD2B54A0EF2DC21F04F419 /* Interpolatable.swift */, - BB34224D13F0A6C900F251943BDB8520 /* InterpolatableExtensions.swift */, - EC837C19FBB78BFC74ECCA16877EF7B6 /* InvertedMatteLayer.swift */, - 6C7351CB3EB502D83F5D34EE4B38D7D8 /* ItemsExtension.swift */, - 5E919CC6590A0AF2C026C7FA6371EFD8 /* KeyedDecodingContainerExtensions.swift */, - 79B611C17C06D5FF4CCB095774A495E9 /* Keyframe.swift */, - 0C4A9542376C040D061E6FE28C2DB9B7 /* KeyframeData.swift */, - E9DE577BCD3B1980C66068F5BBF9C1DA /* KeyframeExtensions.swift */, - 2445A2BFA4F1F72112D3E9B9BD1ADDE7 /* KeyframeGroup.swift */, - CD3394AEB6113760F63CD2C8E55F0743 /* KeyframeGroup+exactlyOneKeyframe.swift */, - 78F7A8987B24B2D899CBD7F38349871F /* KeyframeInterpolator.swift */, - 41E7C809EA33C0393A6AE27000AB14AA /* Keyframes+combined.swift */, - F8DEBF09645160014D2988AC5BC499ED /* Keyframes+timeRemapping.swift */, - 2AC04D79457374349B95B0B732D07A31 /* KeypathSearchable.swift */, - 659C2CC0C7E0DE1574B6730492D6AD01 /* LayerDebugging.swift */, - 54869EC81C5539A8AD92881BFD342D18 /* LayerEffect.swift */, - 94D516F270368ACF9D94D50BA45877D7 /* LayerEffectNode.swift */, - DA521EA6BA5447EBEE592BCF358F83F9 /* LayerFontProvider.swift */, - 95443C107F9AEEA2EE018985A7D23387 /* LayerImageProvider.swift */, - E3EEB3D929F12DA17005E1F37882A2F8 /* LayerModel.swift */, - 745E49067846460E0A71AE45B322158C /* LayerModel+makeAnimationLayer.swift */, - F79EF22CDC01C744BFA86A491B88C628 /* LayerProperty.swift */, - 882FA463C133D41CD8499FE6FB7A999F /* LayerStyle.swift */, - 59FC1BD33170A2BC4D498D0B282E04C9 /* LayerTextProvider.swift */, - 67C415CE5B3DA27754A005F1E2626DEB /* LayerTransformNode.swift */, - 4C16BCB8E73F50157A1D93FED070EE1D /* LegacyGradientFillRenderer.swift */, - 9F4DD82FA503C00D1869D0680B76A86C /* LottieAnimation.swift */, - 6CA6F39A42F8F26B1001FC6ABA7D43B5 /* LottieAnimationCache.swift */, - ABC97A3BC2FAB2610A09174860B90436 /* LottieAnimationHelpers.swift */, - AB7FA079A6480E26839E652C739D968A /* LottieAnimationLayer.swift */, - 7BF5D4957693B5B5DBC61FAC96B2CF23 /* LottieAnimationSource.swift */, - 2FC7510690F9C1195797935F509A996D /* LottieAnimationView.swift */, - 89492CD7805184F37D66C74AF64E60D5 /* LottieAnimationViewBase.swift */, - FAC27B316D383024F0A59D8133F0685B /* LottieAnimationViewInitializers.swift */, - FD07A6AA3A8ACBCE80E15C6F1BEF8D8B /* LottieButton.swift */, - 722701F61A9A66CC4971FB3EA06BD853 /* LottieColor.swift */, - AC62F1FD8293CE55DC16776968CD8EFA /* LottieConfiguration.swift */, - DD253B873F2B67521833408BB82D843B /* LottieLogger.swift */, - 5D8646AABF9B045A43689BB1CD400420 /* LottiePlaybackMode.swift */, - 9EC2C9B5255FD1BD8E427E9A7A199580 /* LottieSwitch.swift */, - B0786928B2C05998AE8F0FF54CE85D00 /* LottieURLSession.swift */, - 801C736CBB37EF2A92BFFF9A8DFBDC70 /* LottieView.swift */, - C664CD013CBAA23F9525F2EC6C50AC09 /* LottieViewType.swift */, - 8A09E695B709DD7B53EE9791CFE0DA7E /* LRUAnimationCache.swift */, - B5190657508F7147ACBE8B04917D52D6 /* LRUCache.swift */, - 36CF504BACFF929BC4D8BACB9C800E9F /* MainThreadAnimationLayer.swift */, - 57CDD5F0D5ADF12E245977A57296A75F /* MakeViewProviding.swift */, - BEB9AB80392ECE7248709873DCA13FCC /* Marker.swift */, - 46FA4E5C6AB9828AA051B5295DB7401A /* Mask.swift */, - 6FCBBFB94C92AAF65512098808136293 /* MaskCompositionLayer.swift */, - 8E64F4612761F1A967A05BC539DAF105 /* MaskContainerLayer.swift */, - F4F177FBFF8775FCFBEBEB5746A1F62D /* MathKit.swift */, - A598A01BE8C27F0423DB78EB55F82E42 /* MeasuringViewRepresentable.swift */, - 0D3E95B767FD6876A4F79F0E3E0A61F4 /* Merge.swift */, - 846B243885678469AE5CDB8168133AEA /* NodeProperty.swift */, - 350390ECD2B359290A8084CB7DDCEF31 /* NodePropertyMap.swift */, - 0FCB1FD240155B644AD7582F70744DC4 /* NullCompositionLayer.swift */, - BD766BEEA3CB87371EF37EDE094330B4 /* OpacityAnimation.swift */, - B2377187B31347A650A1587E782382FA /* PassThroughOutputNode.swift */, - 33DAC44C2ADAB17A1E18E59C3363BA98 /* PathElement.swift */, - 896165C77437B3E3CA729B4CF267209E /* PathNode.swift */, - 2A744FA8696B38DECAED24C7D0829A18 /* PathOutputNode.swift */, - 31C067D5AA45DE8118D9B9C303CDF1C5 /* PointValueProvider.swift */, - D48287B30F0088EC0C5310945CA4B7A1 /* PolygonNode.swift */, - 94F7F3E3105E990CC2499FF7816AE311 /* PrecompAsset.swift */, - 6F774BD72D02B75021A7214A32F49A43 /* PreCompLayer.swift */, - FFD2FEBE902487EB11E1F3B27258FDE6 /* PreCompLayerModel.swift */, - 2355152919250DBBD5FD5A9E31F11464 /* PreCompositionLayer.swift */, - 09E8A3E05EC079477747443AD301E860 /* Rectangle.swift */, - 6B6F61BE674A89311CDDD88E71D4B831 /* RectangleAnimation.swift */, - 7A5D9C68C0A84DD8FEDB37BAD59E8E7C /* RectNode.swift */, - FD5E810B692FBB786B2032A23F252AFE /* ReducedMotionOption.swift */, - 6BB44B5239CC920575CAF69072F84164 /* RenderingEngineOption.swift */, - 9B10279D7918F58546A902DD776F193D /* RenderNode.swift */, - 19D327EFE94ECB1A3205002302180EBC /* Repeater.swift */, - F5F861507F91FE57B627EB903164472C /* RepeaterLayer.swift */, - 277586195FD85080AED690938D317998 /* RootAnimationLayer.swift */, - E24C7A21B6750630893FB2EA5D1EFFBA /* RoundedCorners.swift */, - 146CAAD47B8060678F231FC28E0A3B60 /* RoundedCornersNode.swift */, - E27470085DEB31191E56C66DFE1A64EF /* SectionedChangeset.swift */, - 249F08F366A61A80DBF012BB16BE82AC /* SetBehaviorsProviding.swift */, - A3ED3DE1B23ED24A4AD3B102497F472B /* SetContentProviding.swift */, - DFA30AF832CB05775709E542E804898A /* Shape.swift */, - 59AC7679378D0A2B32322B3D52CC590D /* ShapeAnimation.swift */, - D2509D403C834A34D7305D4C90158B37 /* ShapeCompositionLayer.swift */, - 84A69E76676E2422A40553AA70F4B9AF /* ShapeContainerLayer.swift */, - 8EBAEB62E0BC6BBD2A99A9FFC0297E16 /* ShapeItem.swift */, - 598460A5DF3B56203B29D01ECAC0F8F9 /* ShapeItemLayer.swift */, - B4E269F1764BE1BC501E09F81012012C /* ShapeLayer.swift */, - 7A5645C607400D64B7E1AB629322A90E /* ShapeLayerModel.swift */, - 0BA20785663BFF2D9EB5DA399BF39DB2 /* ShapeNode.swift */, - 5592B24A3177FEA4ABEED9D0B3A6F84B /* ShapeRenderLayer.swift */, - B37A3310A4C1CE6AF8477A9EDAF2E4A6 /* ShapeTransform.swift */, - 630AE44EDCEF6C485BEB0D998AE18947 /* SingleValueProvider.swift */, - 5BFE805D984AAEF8498138BA0166F120 /* SizeValueProvider.swift */, - 27B83BBA92B0D0F145F36F867F55084C /* SolidCompositionLayer.swift */, - 8F23207FD91B4D58996E1529198654DB /* SolidLayer.swift */, - 3901977A60BEA76544CA1152762821E1 /* SolidLayerModel.swift */, - B496E0B79F00C67F9FFBDAA29BD68B37 /* Star.swift */, - ACC3F849100B4177C338AEEF424E627F /* StarAnimation.swift */, - 57760EBDF3FB84060CA612EBDDE56C1C /* StarNode.swift */, - FBC49F1BCFB02AB1359A624A65AB5824 /* StringExtensions.swift */, - 18A237F8AFB1DD864B2E065B762851FB /* Stroke.swift */, - 2DABBD081B5C4DA063F4DB121147E586 /* StrokeAnimation.swift */, - 9E3C9772593EC36053DCE3AD21CDA16D /* StrokeNode.swift */, - EDB98AB321A5B30B05F0F320384699D3 /* StrokeRenderer.swift */, - 62AA6CBDC90F15752FBBFAD594E0DB65 /* StyledView.swift */, - CACA5F91164444FD018604161211CEC8 /* StyleIDProviding.swift */, - 12AC14DB654B07B92FC565359BB24729 /* SwiftUIMeasurementContainer.swift */, - 344CE732EC91350D560B03E4C413A059 /* SwiftUIView.swift */, - EAEC149E660F72FBA6F717D362ECF1F5 /* TestHelpers.swift */, - DA153F1787B4626C642F61ECE6F84F95 /* TextAnimator.swift */, - 5110D595F02FD67EECD601B158E606C1 /* TextAnimatorNode.swift */, - BF41EFA1EAF19A24E823D999541E1D14 /* TextCompositionLayer.swift */, - B37C4EA7F5ED5F46E43C8DB7203FFA1E /* TextDocument.swift */, - A77598EF3EBC00300D5A3F9E4B15F065 /* TextLayer.swift */, - 86EE28E7DEABA7E24637E97FC9F503A5 /* TextLayerModel.swift */, - 24CF5FE8FABF08B21AE1B4496D4FD182 /* TraitCollectionProviding.swift */, - C4C753919F581AE643532B0D59A3E5D3 /* Transform.swift */, - 89A49B541760965E76940F9AFC9F361A /* TransformAnimations.swift */, - B281FF7A2ADCDBC7ABCD018AE61A7C48 /* TransformLayer.swift */, - 340B01518155A1C6DF9490C3B5583041 /* Trim.swift */, - 6278C6F6E095466FC0747AED3A82DBAC /* TrimPathNode.swift */, - AA0BB7AB446A12933B77D4C0AE7B8AA8 /* UIColorExtension.swift */, - D5C78551AE5DF3F869970B180F880896 /* UIView+SwiftUIView.swift */, - CC3798F5D6C9EBC45E8AABCABA094C90 /* UIViewConfiguringSwiftUIView.swift */, - 01E5DBFAF8111481E00D7B8906879F31 /* UnitBezier.swift */, - 1FA284AAEAD628F6B638EFC01ADF2225 /* URL+ZIP.swift */, - B1B5154A7E3B2A7CADF24AE27A2BFB71 /* ValueContainer.swift */, - 9A2A7C5D27987780C1AD46450EB28461 /* ValueProviderStore.swift */, - 489AB4A9B338E825DFFB1745D2B1E16E /* Vector1DEffectValue.swift */, - E31B8E2DE2928272DE12C9F3AA9BF334 /* Vectors.swift */, - C592FF44021E880C95CFE088D4C80A27 /* VectorsExtensions.swift */, - 6929D9112D6D2BA2861A61C822056E89 /* View+ValueChanged.swift */, - 3189E69539A5AFB420AA7887844BAD4F /* ViewDifferentiatorProviding.swift */, - F559BB90CE3167F1DC71176358384C83 /* ViewEpoxyModeled.swift */, - 3735BF48C165F1FF3722190A8D76CEAB /* ViewProviding.swift */, - 2E60DA40527A43576DB5B9BD90EF96BE /* ViewType.swift */, - 11557BC158C05BFB9E2F996F3EEF9C99 /* VisibilityAnimation.swift */, - 7D638901CE9A00B98FD0FD8D2DADCB2A /* WillDisplayProviding.swift */, - 2566AB51BD5335A457DA787A36A8A979 /* Resources */, - 233402B58F7F4938646F3CB5C0464CE1 /* Support Files */, - ); - name = "lottie-ios"; - path = "lottie-ios"; - sourceTree = ""; - }; - 1A9319BF8FA8992A9F1BE19B24A88C2B /* Resources */ = { - isa = PBXGroup; - children = ( - 4B8D141C5CB92565EBE4E408187A268A /* MJRefresh.bundle */, - AF41612EEB9F8E1B8A0A9496A63C2391 /* PrivacyInfo.xcprivacy */, + BDE8A491D26688B79C66157CE598DB67 /* AlipaySDK.bundle */, ); name = Resources; sourceTree = ""; }; - 1B64ABA8F436EE83F74E37C2167D564C /* Moya */ = { + 1C04CC67740625319DA7C97E12910ECA /* Resources */ = { isa = PBXGroup; children = ( - CCA7DCBB8267C4F607C0972B50D2BFF0 /* Core */, - 972E5EC9A62033D326264F0F98074964 /* Support Files */, - ); - name = Moya; - path = Moya; - sourceTree = ""; - }; - 1DCA065307115405102822179113DBA5 /* Support Files */ = { - isa = PBXGroup; - children = ( - ACC681D108A8345F492BADBED19B1FA5 /* WechatOpenSDK-XCFramework-xcframeworks.sh */, - 1F0F417D668A29E1F52CC4DA14DE80D6 /* WechatOpenSDK-XCFramework.debug.xcconfig */, - 8CB579539F7E67A543281235A347A0DD /* WechatOpenSDK-XCFramework.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/WechatOpenSDK-XCFramework"; - sourceTree = ""; - }; - 1E19CB73CDC36544434FB01B82AFCA32 /* Picker */ = { - isa = PBXGroup; - children = ( - 06A671AD153C13287C7F5677F7728291 /* AlbumListConfiguration.swift */, - 7F6E07FC92F07EE8755B8F09EA81360F /* AlbumTickView.swift */, - 8552E5A9E1DCA523D27BEF65DF4E6F35 /* AlbumTitleArrowView.swift */, - 0DDF4C5CB57A76EED48FAB3C5DE0F648 /* AlbumTitleView.swift */, - 23627BEB011259D12B07A6DA62769D64 /* AlbumTitleViewConfiguration.swift */, - 6CDDF5A118E717FCD167B130920711D2 /* AlbumView.swift */, - 9245CE764CFC8D2EE878F9982D8D7E40 /* AlbumViewCell.swift */, - 725E391E4DD80A683204D50692D49254 /* AlbumViewController.swift */, - 6268CFADCC4FF23E0CF60396A20648CA /* CameraConfiguration.swift */, - 9591005EF300740D15A68DC41F123102 /* CameraViewController.swift */, - 026F29BAA77629475C91162F66FF4839 /* DeniedAuthorizationView.swift */, - 4D03C4A705D61C193A9538DBE31D5AA6 /* EmptyView.swift */, - ECB898FD774D9886C3F4389AF60B275C /* EmptyViewConfiguration.swift */, - CD4BB25B01C11AECAA30B2010211F454 /* GIFImageView.swift */, - B30CA8E9E2F081102A0E466E3DBCA97C /* LocalAsset.swift */, - 6588BE6EAD95A062EAD65E4406523B33 /* NetworkAsset.swift */, - 97DE3A82457FECCDA36D235A9A527121 /* NotAuthorizedConfiguration.swift */, - 988C977871E4F16B43124775C5442980 /* PhotoAsset.swift */, - CAD52A080AAEE8A81783F36FB0CFFCE0 /* PhotoAsset+Codable.swift */, - 6B7A648559C518EA6DDF715D86F642BF /* PhotoAsset+Network.swift */, - 2F65A5161CB9361350076FDB1F6C69D5 /* PhotoAsset+Request.swift */, - E5F3B932CFBC76ABF24A9176D190C4B5 /* PhotoAsset+URL.swift */, - D773DCDA3327CB85C313A8E3F689E532 /* PhotoAssetCollection.swift */, - AF440B48F12C86D500E4870C7336F8CE /* PhotoListCameraCellConfiguration.swift */, - 1294CE8A5F4523CADF3F15AD30A2FC36 /* PhotoListCellConfiguration.swift */, - 45D6D7BCFDFDF29A6DBD06C86894A520 /* PhotoListConfiguration.swift */, - 12E98132350361407F1F060CAF282D79 /* PhotoPickerBaseViewCell.swift */, - 13C32C8D313CE54C938117F79FB42909 /* PhotoPickerBottomView.swift */, - E3272B858A42201B36637AFF8EAF9B45 /* PhotoPickerController.swift */, - 8A8670B27DF4CBC108E75715DC9B290A /* PhotoPickerControllerProtocol.swift */, - 462A0CFAB7382F9081365327D7F33267 /* PhotoPickerSelectableViewCell.swift */, - 53F1950A2EA3EAEE2DB8542A2B3D3F33 /* PhotoPickerViewCell.swift */, - 01CFD68B658BAD15EF824BA4028CA1A2 /* PhotoPickerViewController.swift */, - FCF8F600071E7B3102920CAB6FF48BAF /* PhotoPickerViewController+SwipeSelect.swift */, - B0E23FC914AC918A3812AD96D4739ED3 /* PhotoPreviewContentView.swift */, - A8D92D190853671E509BAA5E005AAD97 /* PhotoPreviewSelectedView.swift */, - EA80AAE9A8F4745194A22138D50BAC46 /* PhotoPreviewSelectedViewCell.swift */, - 25A588051320603C531C4D4D035FD277 /* PhotoPreviewVideoView.swift */, - E20299373650F59323E2017B3AFF9EA4 /* PhotoPreviewViewCell.swift */, - 25DE73A1EA9F7ECF0E1D5E9F2897CA07 /* PhotoPreviewViewController.swift */, - 42313B5EA1C08DEBCB6B59020C9314BA /* Picker+PhotoAsset.swift */, - DC2CF79AC36312C82B7879494F47F301 /* Picker+PhotoManager.swift */, - 50B45299DA66A11F777502AF15634A23 /* Picker+PhotoTools.swift */, - 445052D7B6C3849EF4DC935731E697FC /* Picker+UIImageView.swift */, - 2A687625895E5B7535DC57C8C7718D36 /* Picker+UIViewController.swift */, - 62AA96A19742574F4A188E5B86334BA6 /* PickerBottomViewConfiguration.swift */, - 9013133C38E66F88D918BAA5D7105F92 /* PickerCamerViewCell.swift */, - B281B08D41A8C1539780B8C2DCEDFBFB /* PickerConfiguration.swift */, - F565D5B158AF3BD7A2398E2AB52BB084 /* PickerInteractiveTransition.swift */, - CA4B9D8BFF9CF3F65AD2916D9197DF2E /* PickerResult.swift */, - DC0ED2914A2752C49E36A33BF535265E /* PickerTransition.swift */, - 25285C5E626F30148926D9D6A6202443 /* PickerTypes.swift */, - DF6EA89B3D938E7704E068A325DCF64B /* PreviewLivePhotoViewCell.swift */, - BF59DBF677935AFE11100B7BA87711D0 /* PreviewPhotoViewCell.swift */, - E5F61B293B8A4C483CC96C8328E45C9D /* PreviewVideoControlViewCell.swift */, - 21DB69F87DC93861A4FEB14C6B788C7E /* PreviewVideoViewCell.swift */, - C13D413FA74ACD184F48EEECDAF835AF /* PreviewViewConfiguration.swift */, - ); - name = Picker; - sourceTree = ""; - }; - 1E8F7BE6175C1532BFCBD66DDCE82460 /* SnapKit */ = { - isa = PBXGroup; - children = ( - 54A3F0BF75389BB6C8ACD25D8C0B04B9 /* Constraint.swift */, - DD4AA3C5C4BE5AF110BEF84C2B425AA0 /* ConstraintAttributes.swift */, - 9F2A1EB79C2BE2EA918A66FEF777D04D /* ConstraintConfig.swift */, - 937BB6E663A5DDF84A196EB20804E1C1 /* ConstraintConstantTarget.swift */, - 6E2E823642914FC324B9D6472E687E6F /* ConstraintDescription.swift */, - 4DC7F488D40CE43018AB21B6B897E2FC /* ConstraintDirectionalInsets.swift */, - 7E9CDCE5F0043FB2C6DB3BCFEA9F9D6C /* ConstraintDirectionalInsetTarget.swift */, - 270430691446D7F2AA48696D223B3B36 /* ConstraintDSL.swift */, - EDD4F7BA6A5912E04B2CD34EE7001335 /* ConstraintInsets.swift */, - 01F8EA59DEAAA738ECEF7D68FCD45C7E /* ConstraintInsetTarget.swift */, - 005D4C8AF425EF161CADC4688A651EFA /* ConstraintItem.swift */, - CDABE3383A3C68EFCCE02018595AFFB3 /* ConstraintLayoutGuide.swift */, - D116F3B6A0E7D4C7816BC8AF483B3EE2 /* ConstraintLayoutGuide+Extensions.swift */, - 5ED33FEB3529F8C9B342C7C2A097E8A8 /* ConstraintLayoutGuideDSL.swift */, - 7DAD49D64090D08FBC52E7C52FFBFF8A /* ConstraintLayoutSupport.swift */, - 5E03558060FDD52E3C586D6C52AE3EEB /* ConstraintLayoutSupportDSL.swift */, - 79E707A863CA7859212FEFF8209B2C51 /* ConstraintMaker.swift */, - C17C21B8184E139AF017777649C7942C /* ConstraintMakerEditable.swift */, - 0DAE279F4B34773AA505A877C76A03B1 /* ConstraintMakerExtendable.swift */, - CB6180AA64A729F29163E3E4DA72B8DA /* ConstraintMakerFinalizable.swift */, - C2874A5748A76E6FF8D240C980346F2D /* ConstraintMakerPrioritizable.swift */, - 4C04BCB613C18841E80E12AD65B54EB5 /* ConstraintMakerRelatable.swift */, - 5F64866AC624BC264E03015321237874 /* ConstraintMakerRelatable+Extensions.swift */, - F17F7847C169C42CD6A56A88675DE83D /* ConstraintMultiplierTarget.swift */, - C803D3D90266F99C8F0394B468092649 /* ConstraintOffsetTarget.swift */, - DB018CCCA925531421DF2AABFAE43A25 /* ConstraintPriority.swift */, - 56AE43789F036F7E37E7C78CE526A331 /* ConstraintPriorityTarget.swift */, - 85DC559A3ADB0AF3A0CC24573A6D4F03 /* ConstraintRelatableTarget.swift */, - 89FDADBEBF7D7F7E8ED56EA6D6D96604 /* ConstraintRelation.swift */, - 8E4F0EB967D731167573C0D43015BE39 /* ConstraintView.swift */, - 24EB183736E04F3300474C4908E03098 /* ConstraintView+Extensions.swift */, - C669EF21008A80A60B3840300815827B /* ConstraintViewDSL.swift */, - 342385D452E45822DD7ECD2003E65B56 /* Debugging.swift */, - 44AA35264925F43D3EC251BF229096B1 /* LayoutConstraint.swift */, - 0BBC5AF8C3A9691541305496A8731034 /* LayoutConstraintItem.swift */, - 80DEFE3B1718E8C2DAB2BE3561944DAD /* Typealiases.swift */, - A0B615FCCC02CD636E8D81ADC0F6C65A /* UILayoutSupport+Extensions.swift */, - 051971D7584710BD37FD4D9C3A5D4B2A /* Resources */, - A0BE7DE0F770AF3D3C34A3D4430737E5 /* Support Files */, - ); - name = SnapKit; - path = SnapKit; - sourceTree = ""; - }; - 20DC7C2F68E6D225F8A28218243E68AD /* Support Files */ = { - isa = PBXGroup; - children = ( - 29EC4402BC322A41C3AC32102A7AD878 /* RxDataSources.modulemap */, - 57E9017AEEC33B5ECECDD10EAB6C564E /* RxDataSources-dummy.m */, - 59F548CA31617CF52B2B366F78407B53 /* RxDataSources-Info.plist */, - 65C686468BAEE92162C48CCAA7C15D4C /* RxDataSources-prefix.pch */, - 4163D447B518D4BC6E0EE0EAC80736EC /* RxDataSources-umbrella.h */, - B538CBD104D8A06AE7A78D4BE98E50CE /* RxDataSources.debug.xcconfig */, - DBF62C0D3DDC64AEDEF9A5454DD073DF /* RxDataSources.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/RxDataSources"; - sourceTree = ""; - }; - 21764D062FBD199DAC83E1EB5A269654 /* Support Files */ = { - isa = PBXGroup; - children = ( - E9FDA15702E93A36F94093E64FFCBDAA /* GTCommonSDK-xcframeworks.sh */, - 708DBDCABBB77C6D70637B96FB6FC314 /* GTCommonSDK.debug.xcconfig */, - DC18C5356E15BE7E1C0CC9337F251372 /* GTCommonSDK.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GTCommonSDK"; - sourceTree = ""; - }; - 233402B58F7F4938646F3CB5C0464CE1 /* Support Files */ = { - isa = PBXGroup; - children = ( - DA49A84F2674310313ACC307E2624882 /* lottie-ios.modulemap */, - CDFE58BD47F6BD0FC9FB7D6FB1471943 /* lottie-ios-dummy.m */, - 0B6E92282095998AE496E1CD388E290E /* lottie-ios-Info.plist */, - AD2D1327000C70FC0BBAA01C490E011C /* lottie-ios-prefix.pch */, - 1CFB860E83288CAFEBE347A6D5C2A748 /* lottie-ios-umbrella.h */, - BDB33574F45BE6091CBD60487B6B9FAC /* lottie-ios.debug.xcconfig */, - 70EB9DECE01FBEF4BE7887739229CDA6 /* lottie-ios.release.xcconfig */, - CB74ADFB0BA860873B5973342495B456 /* ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/lottie-ios"; - sourceTree = ""; - }; - 23EA7C5FAF45429CC662159E2C59682A /* Editor */ = { - isa = PBXGroup; - children = ( - C008E791217FF7AE2284DE4ED33D82DC /* CropConfirmViewConfiguration.swift */, - 29D2B882480874F42D53FD7B196E67AC /* Editor+PhotoTools.swift */, - EB48C25BA36E7A3A90DF6A7ACCF696A7 /* Editor+UIImage.swift */, - 402415CFF7312E2B08AADA79DA73A4E1 /* Editor+UIImageView.swift */, - 3F90E27702A8F171A62776D2F844F0A4 /* EditorChartlet.swift */, - AD9041B6DF19370EC5F993457993D52D /* EditorChartletView.swift */, - 075CAD90D4B9F0A4CD5758A057138771 /* EditorConfiguration.swift */, - F84C87D3D449237C53594AAF0191B383 /* EditorController.swift */, - 15D5EFF4E9FEA0C1A35B46E0B26B96DD /* EditorCropConfirmView.swift */, - 7E377318D40E300ABE825A4367FCBD80 /* EditorImageResizerControlView.swift */, - 1106559DE680E75DE166E285D84655EC /* EditorImageResizerMaskView.swift */, - C148AA1C2819A5B7DEAC0ECF49DDB109 /* EditorImageResizerView.swift */, - CFC284EBBDD148F95EC62C58F49F6110 /* EditorStickerContentView.swift */, - B6FF27B4385AF3373CEC3201BDC261F2 /* EditorStickerItemView.swift */, - 27CFFE88BED57C1FE5BBB3011F19DBF3 /* EditorStickerTextView.swift */, - F6C485474804F77A7EDCA1DE1FA325B8 /* EditorStickerTextViewController.swift */, - 43E499C40D12F0BA44448C3A8FE1BA57 /* EditorStickerTrashView.swift */, - 346BF7588267CADD317DE1D52AD7134D /* EditorStickerView.swift */, - 23F9CE86B59F74334043FA327497FA4A /* EditorToolOptions.swift */, - C130B750A15BEC82321EE1FB7C52C2EE /* EditorToolView.swift */, - 483A34A8F177C29CC7FBA298C2881921 /* EditorToolViewCell.swift */, - 6AA2BDF2A6AEC64BE57DDA9A5A18B11A /* EditorToolViewConfiguration.swift */, - 7E5A66AF3F7558F7194F9003783F97B0 /* EditorType.swift */, - 2ED6C4C1077B91FD00A25B4E57EA4C75 /* PhotoCroppingConfiguration.swift */, - 3AC4B8F50BFE837EACFBE3C44B0388D1 /* PhotoEditorBrushColorView.swift */, - 690512071EDC44B3B6B7DAC39FB28E74 /* PhotoEditorConfiguration.swift */, - 628023983AC1634CE080F49424225367 /* PhotoEditorContentView.swift */, - 3F982914D28918E5ED7DABBD318AB9CC /* PhotoEditorCropToolModel.swift */, - 49624603A0AE8BE4B18806F2DAD7B3D4 /* PhotoEditorCropToolView.swift */, - 94E6EE5AEC188C24CA3F770D37E635EC /* PhotoEditorDrawView.swift */, - B023E00F6097377AEE33C52783C2D1FB /* PhotoEditorFilter.swift */, - 7AC1D8D7E70806DAFFF676321C42C9EC /* PhotoEditorFilterView.swift */, - 41F90D943D1430057060CE7D0D884CEC /* PhotoEditorMosaicToolView.swift */, - 693F8ECA090561B610BA6FF8274178DA /* PhotoEditorMosaicView.swift */, - 1A4EDC467901C4C5FD494CCC7C2C7D0C /* PhotoEditorView.swift */, - E0718A024C52D04F10056B23069A34F1 /* PhotoEditorViewController.swift */, - 8203A43BF6030189020CD4BD6F61CE28 /* PhotoEditorViewController+Animation.swift */, - A66D9F8A28B2D8B918FF71CBEC6E5BC5 /* PhotoEditorViewController+Export.swift */, - 47C1FF137DA42CBB07A1EF1B8D4A2D29 /* PhotoEditorViewController+Request.swift */, - D3DD3163F3F69703D57F0C5EE33BFEE0 /* PhotoEditResult.swift */, - 5C4A63F49D323F784BCA69785BB2D563 /* VideoCroppingConfiguration.swift */, - CF7AD9CDBAEA6134EE92F10730C7351A /* VideoEditorConfiguration.swift */, - ED63C76DB0E4B5BC896EBC92A06916DC /* VideoEditorCropView.swift */, - 57693EF93CD5CEFDC6308D6BDAB5934B /* VideoEditorCropViewCell.swift */, - 8F085795F289B5BEEE1A9F7E1FFCAA53 /* VideoEditorFrameMaskView.swift */, - 173B97065E201D29718EA0986BBECA8C /* VideoEditorMusic.swift */, - A8212076E19A3552BC329E458689B1B1 /* VideoEditorMusicAnimationView.swift */, - FB887A9561D276DB34EA50EEE4EC12AC /* VideoEditorMusicView.swift */, - 120ADFE75C0204A5F6266DF89EC4FAF2 /* VideoEditorPlayerView.swift */, - 9FC8B0D7C9DF7F1E28698FF3993A1672 /* VideoEditorViewController.swift */, - C8FC5D8D4CAD082AFDF06500203F157F /* VideoEditResult.swift */, - ); - name = Editor; - sourceTree = ""; - }; - 2566AB51BD5335A457DA787A36A8A979 /* Resources */ = { - isa = PBXGroup; - children = ( - E906AAEBF4DCC02DEAD03D193A8E8CC1 /* PrivacyInfo.xcprivacy */, + 904B48D203DDC37F7BD33F40FE034271 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 2593E1DD2DC47C75EF3A0CE509D4C1AB /* WechatOpenSDK-XCFramework */ = { + 1C6C2CFBB7F1907271C7CA2745B014A8 /* IQKeyboardReturnManager */ = { isa = PBXGroup; children = ( - B22F019765CB5CAA957DD04C8674CB94 /* Frameworks */, - 1DCA065307115405102822179113DBA5 /* Support Files */, + DA8120E1B44E61CCB3091659BA9A096D /* IQKeyboardReturnManager.swift */, + 3543AC184D347C03D551F192980FD16A /* IQKeyboardReturnManager+UITextFieldDelegate.swift */, + B29722D6230A4E399189B5B3E153D285 /* IQKeyboardReturnManager+UITextViewDelegate.swift */, + 184F947CEF38F5F5A56AAC37D7C72109 /* IQTextInputViewInfoModel.swift */, + 83E626F61C8B74E4A4E472AF4DA1B54B /* Resources */, + 97F3D01C278D7DB488701511B859D170 /* Support Files */, + ); + name = IQKeyboardReturnManager; + path = IQKeyboardReturnManager; + sourceTree = ""; + }; + 1CCD02D2E10EF5E63B685645A6CE4A25 /* Support Files */ = { + isa = PBXGroup; + children = ( + ED167E45D7D1D195B797F19B14612D2F /* MBProgressHUD.modulemap */, + 94AFF6B159156CF9FB52FA537C9D048A /* MBProgressHUD-dummy.m */, + 9A0653D24FED7922043E4E7661E6A56B /* MBProgressHUD-Info.plist */, + 39B0A6CA0BD6828A3BDAC8FDCB446598 /* MBProgressHUD-prefix.pch */, + A42061DFC6E2B374C142A8DB9B3289E6 /* MBProgressHUD-umbrella.h */, + 727C62357BCC8E0AE55A67EC6658490C /* MBProgressHUD.debug.xcconfig */, + 35B8F8C3682AB04ABE8141037BDAA739 /* MBProgressHUD.release.xcconfig */, + FF3DDD4A011290EF797564EFFFF0D7A5 /* ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/MBProgressHUD"; + sourceTree = ""; + }; + 1ED39D70B77D04A440300E85A5468541 /* Resources */ = { + isa = PBXGroup; + children = ( + 18091BE40C28018BF17A58A3B4E68CDA /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 213F7456FA3CBD6ABF7ABD856222F406 /* Resources */ = { + isa = PBXGroup; + children = ( + 6842A0E2A2DB80154F5F93850EF93F27 /* YBImageBrowser.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 21E4E40C3B4B7D5606D3B896CEBBC9DF /* WechatOpenSDK-XCFramework */ = { + isa = PBXGroup; + children = ( + 9C63DD6DC4AC196298456B1A2338DEBE /* Frameworks */, + AD60C8588DD34B9746332044870D56C5 /* Support Files */, ); name = "WechatOpenSDK-XCFramework"; path = "WechatOpenSDK-XCFramework"; sourceTree = ""; }; - 27051B64C26EB0CDE32F75D2844F36EA /* Support Files */ = { + 22B2590D022CBB1EB5BE49DCE4663481 /* Core */ = { isa = PBXGroup; children = ( - DE123DE4EFA58528204D822F2B11982E /* SGQRCode.modulemap */, - 0F0B7C25AA2F40A4E6FFD122B936E9B5 /* SGQRCode-dummy.m */, - 2F762DB144E20011CDA76B1FFE2F011D /* SGQRCode-Info.plist */, - AA2009BD31AB4862C0F522D1157D1B11 /* SGQRCode-prefix.pch */, - 450ACC10D4C6E5EF773D09E25222F0C0 /* SGQRCode-umbrella.h */, - 9F8AF2C5A4BBDB77E38E045AFFEBF172 /* SGQRCode.debug.xcconfig */, - 6DFB7C4372393229F1688792BAC624F6 /* SGQRCode.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SGQRCode"; - sourceTree = ""; - }; - 29BB9916C4BD6341ADCF265DBFF6E4DB /* Core */ = { - isa = PBXGroup; - children = ( - DDB45231F1F5EB920B95C347ADDA37E0 /* NSObject+YBImageBrowser.h */, - 9CA16EE1A89EBCA3540FF1842B65A1F0 /* NSObject+YBImageBrowser.m */, - 02D106F8687416EA77319E7ADE562850 /* YBIBAnimatedTransition.h */, - 28E32AB0F1A47BA5A7A51B18B2079AB8 /* YBIBAnimatedTransition.m */, - 5BEF055B7F4F83D3D0FEE7E0F24A888D /* YBIBAuxiliaryViewHandler.h */, - 28D97C1931912760D88F8AEDC0081E77 /* YBIBAuxiliaryViewHandler.m */, - E0CE0ECA12ED2394C3ED2CEEE96A2BA8 /* YBIBCellProtocol.h */, - 9FE22C52F3EFE4A4578ABF3C37C14741 /* YBIBCollectionView.h */, - E8E3080423B25BF6C6075F57320D28B6 /* YBIBCollectionView.m */, - 4E9B98311325CDF25036C3281CDBCA4D /* YBIBCollectionViewLayout.h */, - 2724F7D5E46D3CB108BBF81954389D65 /* YBIBCollectionViewLayout.m */, - 30D98D1A29F5DC6D072CD99F8B268931 /* YBIBContainerView.h */, - FAEA6E5F8BC0A7CAF9400093BB333FED /* YBIBContainerView.m */, - 4E591ECDB169F1C1FEA1146E243A7C90 /* YBIBCopywriter.h */, - B10210F7003D8FCDC58E9897BF8F9A7C /* YBIBCopywriter.m */, - 51DC42C2419121C34A1A37FAEF5CADCD /* YBIBDataMediator.h */, - 6F040177292504B70D8F778A5E3CD95B /* YBIBDataMediator.m */, - 6FF0DAC53114F5A38ED18BC9E4CFB6EF /* YBIBDataProtocol.h */, - 4EA880E07DFDD100C561A72CF77D3DB3 /* YBIBDefaultWebImageMediator.h */, - 2E18007B9B2D27C7163D2478DCA136F4 /* YBIBDefaultWebImageMediator.m */, - 46CA00F3ED3A39266FD0485E6A9A52E8 /* YBIBGetBaseInfoProtocol.h */, - 5BF71EAF82417B414C95B361533EE14D /* YBIBIconManager.h */, - EE250BA3582E9617496529A94B3D2AD0 /* YBIBIconManager.m */, - 31C67847AA0011E797287DE347F30612 /* YBIBImageCache.h */, - B2FF70490B2E1F91F3313E405F04F864 /* YBIBImageCache.m */, - A35504DC759D1D6D581B34A9591AB9F4 /* YBIBImageCache+Internal.h */, - 5453B61652D70959B356E49D87F13FA2 /* YBIBImageCell.h */, - E0979D045CAFD37581816EC0C09D3F4F /* YBIBImageCell.m */, - 26E7CB556326C9077DF63BEEB7B2E40E /* YBIBImageCell+Internal.h */, - 797D2CF8D70578E3BCF39EF8F5D828CE /* YBIBImageData.h */, - 21D531AE86A9BDBC117C3BE120B6E7E5 /* YBIBImageData.m */, - D68C40790FE6F29278192AF58A55C115 /* YBIBImageData+Internal.h */, - 2324FAB2BCAFFED67E845E6DD9A96D61 /* YBIBImageLayout.h */, - 0264AC943656AA3FA9C6B88AC02C1E97 /* YBIBImageLayout.m */, - 99A0AB85281536E0E545FFA662C432F5 /* YBIBImageScrollView.h */, - D20A56560F315942F27C111F2B851792 /* YBIBImageScrollView.m */, - B2AFEC94AC3BE895818CC20EF1694D57 /* YBIBInteractionProfile.h */, - 6115E13375F7CD6D73AD6BF3A4D25C83 /* YBIBInteractionProfile.m */, - DC22F1149C5A3255693D354900D95EF3 /* YBIBLoadingView.h */, - 568B09274F880366B93DA437F7833148 /* YBIBLoadingView.m */, - C90D4DF6532EC599263E6EAF62E3B481 /* YBIBOperateBrowserProtocol.h */, - 98CB8DA217C5930EC3944F99F5D655D7 /* YBIBOrientationReceiveProtocol.h */, - 98D78C9FF90C7172E103F3D42D122546 /* YBIBPhotoAlbumManager.h */, - ACCCADC954162C87B199D3E8C5D94DA0 /* YBIBPhotoAlbumManager.m */, - A7E16049507CC03B9090F2AF6AA72E29 /* YBIBScreenRotationHandler.h */, - C7B41E31317DB329D97E70B6AE1B3AAC /* YBIBScreenRotationHandler.m */, - 73CD422A69C42F923FBDDB22D2266109 /* YBIBSentinel.h */, - 7B158E503EAACD9D43DEF7BA2586498A /* YBIBSentinel.m */, - CB5ED48D1C2FEE6F9B6572BC3DC8D105 /* YBIBSheetView.h */, - D7BAE3331BAA65418B42B63EB7A827D8 /* YBIBSheetView.m */, - BB3D3CAB8E5BB7D166549F00AB9C0C15 /* YBIBToastView.h */, - CB8D8C5604011BB605F1D1874F011C0E /* YBIBToastView.m */, - 6D1B3B65DA5FD5A5576321B0DF0050B4 /* YBIBToolViewHandler.h */, - 0FA833C33B5AC6E4CEC49F9D1321C982 /* YBIBToolViewHandler.m */, - 5BB390B0E40E89FDDE554F21ECB7CCF1 /* YBIBTopView.h */, - 99DE9108716840253E3172EC905024FC /* YBIBTopView.m */, - D7A6B09B1EB0F21A79A335F239769653 /* YBIBUtilities.h */, - 58A066A3C3FB7F76C197EADAE084688C /* YBIBUtilities.m */, - 5AA9CF87A7F0EBCDA4F896271A17A3F8 /* YBIBWebImageMediator.h */, - C871A85DF5F63890D0CDE0EB704B3560 /* YBImage.h */, - 91C711A1DC0B3F501774D59914B427DF /* YBImage.m */, - CD18DA084428987D08B37C1AEAC65E52 /* YBImageBrowser.h */, - 4658669320F17E4FF1069C73ED9C3838 /* YBImageBrowser.m */, - CB9679AFC8A1A93C637AD8DA4B2A103C /* YBImageBrowser+Internal.h */, - E4510CDCA226DCE0E5A193FC8910CA58 /* YBImageBrowserDataSource.h */, - A2CE242AF1F10BE3EF9A73779447424E /* YBImageBrowserDelegate.h */, - B943263DB4496297CFA039D0DF444E2D /* Resources */, + 8354BEF8A173F7C560C84148593F0CD7 /* and.swift */, + 1EB524C0849E4B0FDC0EC4D3FBADF657 /* apply.swift */, + 5D5883A9A254761FD72FD4BD60F9207B /* bufferWithTrigger.swift */, + 57E872926A9F0A58259D98D0E6C8AD28 /* cascade.swift */, + 1C8C4047820D21477920765A198889CD /* catchErrorJustComplete.swift */, + 1BC19FD29586F1661E5FB91599DACA72 /* count.swift */, + 231246BF2A5913AF9CF769DF47AB7806 /* curry.swift */, + 99239440EF284973039A0999DC626537 /* distinct.swift */, + 5BBE0E370C0970A23FE497F665D3E7BB /* filterMap.swift */, + F91B42E3A00BA1BA0E898C80945E1CC3 /* fromAsync.swift */, + 183ECF3CB3F9B9A28400DF0443F735D0 /* ignore.swift */, + 2FD132A96BC176A0BD3C8AB88344FAC5 /* ignoreErrors.swift */, + AF0B8DBB8BE630A64C34C16B1D7F8343 /* ignoreWhen.swift */, + 5A21A112A2FAD7228F3F968043407B52 /* mapAt.swift */, + 041BE6B75085B8D8F3F94945290C1279 /* mapMany.swift */, + 976B64416E3016008D42A1E155509FD3 /* mapTo.swift */, + 591FE62A8AED50273FB3FD3B80759AF3 /* materialized+elements.swift */, + D387B9EF45C30A00D99BDDC504B89E42 /* mergeWith.swift */, + 2ECDE574BC8FD1E32B99075B12144063 /* not.swift */, + D6153CC74CC2C4EA27387FCAB1619F3C /* nwise.swift */, + 2C03FDAE6EE74E76EBA2288AEB50A1EA /* Observable+Alias.swift */, + 65EB44BEDF8C30E6FF3250EEF9BC03B2 /* ObservableType+Weak.swift */, + E91F66139CDDA437F057F79B815A732D /* ofType.swift */, + 1B7F5FD6DA9BADA51B3252CFD995B944 /* once.swift */, + F966211AE623F7F0393C7F5139C6CF61 /* partition.swift */, + 5ABBFFA488022C89EF93575377A4C200 /* pausable.swift */, + 0E68A3533F3C2D4D73D3AA397B395563 /* pausableBuffered.swift */, + D9020DDE726D79775743E62A9859FF53 /* repeatWithBehavior.swift */, + 5AA2CD254B942B1A97437DFF6AA4C3B8 /* retryWithBehavior.swift */, + 38F764035CA9E883524E86CEB7BF6FF7 /* toSortedArray.swift */, + 3E321387479547D50CFE05D0B62300A0 /* unwrap.swift */, + 63881AFB6BB011EFCF1252118D2C46A8 /* zipWith.swift */, ); name = Core; sourceTree = ""; }; + 26ABA9AE35255DFF6F3ACEC229D38FE6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7C922F108D85E1DA2A7D649B99419548 /* ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist */, + 6E26B46220F7707A660D0AD6D5B62D5B /* RxRelay.modulemap */, + A27A11E0906C1DEC75B5B18E610C9434 /* RxRelay-dummy.m */, + 5F7A74C16497D9325EA8E175061E4488 /* RxRelay-Info.plist */, + AE89F8D1916B993D275FAF4DB3647381 /* RxRelay-prefix.pch */, + FFA5203579DE0199D1EEBA334E365319 /* RxRelay-umbrella.h */, + 914F74DC9A660B3CCD6B5049FA3E857E /* RxRelay.debug.xcconfig */, + B479A2DD7E7DF27106FC6E8B4BCC9594 /* RxRelay.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxRelay"; + sourceTree = ""; + }; + 28EC08A03CA2595F80D3D9862F151DF9 /* Resources */ = { + isa = PBXGroup; + children = ( + 7307E2DAAF66A2DA284CCE8C33EB8980 /* MJRefresh.bundle */, + 7282B196E51A3F4664251AA4023D0C02 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 29405DD8F64F6FB41A395D9CC6104EDC /* Support Files */ = { + isa = PBXGroup; + children = ( + DC32760A5BC1C280C10033E024BA7D38 /* ResourceBundle-RxSwift_Privacy-RxSwift-Info.plist */, + 953299ECE8729913D60E8FE4347C81B9 /* RxSwift.modulemap */, + CF54465B2588A0521DFFB1FF4940DF6C /* RxSwift-dummy.m */, + D507F5D54565CF1A7DE4A2435AFE878B /* RxSwift-Info.plist */, + 360CE21F80E46FEB77949658AF62C5B3 /* RxSwift-prefix.pch */, + 83A1F2D48A891A026C113A34ED4483E3 /* RxSwift-umbrella.h */, + BDF903CC6F915E514FBF685B2291C574 /* RxSwift.debug.xcconfig */, + 4DDFE96FD63E4568E70A89429B350567 /* RxSwift.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxSwift"; + sourceTree = ""; + }; + 295DBC4F5635C5B494F285F57C8224E0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 2EFECD383B69C269278B54B4C8841167 /* AMapSearchKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 29D9D99885D1DFB30DC95AD7C11467A6 /* Support Files */ = { + isa = PBXGroup; + children = ( + F91C2C9B1E3C54C520A2D6DBE17AFB1B /* IQTextInputViewNotification.modulemap */, + 997167D7CBCAD446D8B3CDD072502918 /* IQTextInputViewNotification-dummy.m */, + 6351AB2D7C8FD9BADEFC1065E0AEC081 /* IQTextInputViewNotification-Info.plist */, + 4898667850B1F683D057A578214EAE3E /* IQTextInputViewNotification-prefix.pch */, + BF32372FBC1D4CEB416B12E4E4D35483 /* IQTextInputViewNotification-umbrella.h */, + D5B31C16DC507AA7342155F0550B0D79 /* IQTextInputViewNotification.debug.xcconfig */, + EA0077E342A252E846F4FF0AC2A7752E /* IQTextInputViewNotification.release.xcconfig */, + 9A6F311555A73BB737010366B0CDEEDE /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/IQTextInputViewNotification"; + sourceTree = ""; + }; + 2AF197CA5C99CF72FF47CF9E963E3B00 /* Interface */ = { + isa = PBXGroup; + children = ( + DDAB292AFEE428D9B577D74F07D5A0EF /* OIMManager.h */, + 31B8537D70EEE6E1BCF41B5917CDDC13 /* OIMManager.m */, + E8B97DC75EF7EDB859A6C3C461EDDE5B /* OIMManager+Connection.h */, + 25B0AFDE6F490BD489C84DE9AB7B623F /* OIMManager+Connection.m */, + 387A1E82C97FC165F805C0A885316D08 /* OIMManager+Conversation.h */, + BA50CF2B5D2F41B255A98CBFC75EF571 /* OIMManager+Conversation.m */, + 610421EA2DB40C1997A6697143D26FCD /* OIMManager+Friend.h */, + 33A714CAD18FD98B82C934FCD845F5A4 /* OIMManager+Friend.m */, + B7FBDEBE2C4E628598655B74A3137531 /* OIMManager+Group.h */, + C45803DEA9BBD6D69D4D24C69F4DAFA1 /* OIMManager+Group.m */, + A8E0AFB41829ABCBA41B2E4A12FC1FF8 /* OIMManager+Login.h */, + D63FD645FB3FE4E761A51B32132ED16C /* OIMManager+Login.m */, + 26B525A296261CA1942BF343253871F1 /* OIMManager+Message.h */, + EF3AAC0045F4635A4281CCE672E15EB1 /* OIMManager+Message.m */, + BF86B2932209BF72B21D027CCB3D5BE2 /* OIMManager+User.h */, + 6C2E793CB5C9B430F36FE3573B5EBAB4 /* OIMManager+User.m */, + ); + name = Interface; + sourceTree = ""; + }; + 2AF6B1633CB179859BFB0690965321B9 /* demux */ = { + isa = PBXGroup; + children = ( + BA028C6C6E1A7001499331E6B38C01F9 /* anim_decode.c */, + 9A82381F95A0B1C9085F0DC4DCDEE26B /* demux.c */, + 7CB02546BA5EAF3A87B631DFDF1A12A9 /* demux.h */, + ); + name = demux; + sourceTree = ""; + }; 2B01C5D34569DBC173A53875424B8908 /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -6890,1595 +6740,1394 @@ name = "Targets Support Files"; sourceTree = ""; }; - 2B8B8B2850D43FFA2121E925FA9D97A7 /* IQKeyboardCore */ = { + 2CE3D4270C99A67151A062702A2DF753 /* YBImageBrowser */ = { isa = PBXGroup; children = ( - 2D7480D6550C594F75C2C72FDFB92E91 /* IQKeyboardConstants.swift */, - B86E1E6F43F67612B84DE9E72FB2157C /* IQKeyboardExtended.swift */, - A22DC8E59A81000BBA63235416889042 /* IQTextInputView.swift */, - 1FE7D3EF3525CECB919C94B7CBAAEB8D /* UIView+Hierarchy.swift */, - 0E3D99BD332A3DB3266D1DBF60DFD2CC /* Resources */, - F00883E6CC241DFA597CE4D826864AAB /* Support Files */, - ); - name = IQKeyboardCore; - path = IQKeyboardCore; - sourceTree = ""; - }; - 2C4CCEE85247151B2A47A9EB0FBE6349 /* URLNavigator */ = { - isa = PBXGroup; - children = ( - 486C16E381473095D0AA5D90E00E5843 /* Navigator.swift */, - 4DF16DAEEB6F7357BF3520DDEBB204C5 /* NavigatorDelegate.swift */, - 78EDEE5E177BF6DF888E2F685ABDAF79 /* NavigatorProtocol.swift */, - F89D901F96E665E5495CE0A5C598E200 /* UIViewController+TopMostViewController.swift */, - C40FD0E6009B44B34D4CA91F002AD958 /* UIViewControllerType.swift */, - BD4119C293858086ECD9A8866275C5A9 /* URLConvertible.swift */, - 0DAE16684B183BA733C62C1A5D862E6B /* URLMatcher.swift */, - 7DB6990AB0882562E03133DB23E906A8 /* URLMatchResult.swift */, - 7373E895FB24690540181BFF56955312 /* URLPatchComponentMatchResult.swift */, - C2FF16D1D087D591C2B162AEF8018694 /* URLPathComponent.swift */, - FE1D993C35E23F57C7F678604B14B362 /* Support Files */, - ); - name = URLNavigator; - path = URLNavigator; - sourceTree = ""; - }; - 2D9B4061D217ACFDC5B354E5FB959489 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8D38B1AD3D58D53753B87B7C2A825199 /* CocoaLumberjack.modulemap */, - 865E473975582293F0FE384ACE2EC425 /* CocoaLumberjack-dummy.m */, - 193C2F05AD905BA3B2BAA978950E4592 /* CocoaLumberjack-Info.plist */, - 83F042965F53FBDB5EA105FFEEBF54BF /* CocoaLumberjack-prefix.pch */, - C90B489DE950DD12FC8930AC3EAFE6AB /* CocoaLumberjack-umbrella.h */, - 615A1FD3776094E854318EE01C75786B /* CocoaLumberjack.debug.xcconfig */, - E6E2849379444297D6642C171B517AA2 /* CocoaLumberjack.release.xcconfig */, - 302F5D48423E1570B6919F852C173899 /* ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/CocoaLumberjack"; - sourceTree = ""; - }; - 2E7EB23330599E9FB94E7FBFF85F9A04 /* Resources */ = { - isa = PBXGroup; - children = ( - 2DB115166094A8D48E376C2F668892BE /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 2FD4164449FB5747C85C9C31E81DE2C1 /* RxDataSources */ = { - isa = PBXGroup; - children = ( - 8D6DC81BAFA296758CF20F117E7A283A /* AnimationConfiguration.swift */, - F12FF728132D421A61C2C6BF2D0F056D /* Array+Extensions.swift */, - E834870E6150A5FFB1FCE3D10C8A1A67 /* CollectionViewSectionedDataSource.swift */, - 9361EDCF72DA935BC195CF2F2E7FEEB1 /* DataSources.swift */, - F9604381FEF2D16AD7ED3B5538527210 /* Deprecated.swift */, - CFC30276B8929B72D79A2C9660B6AAD1 /* FloatingPointType+IdentifiableType.swift */, - 52A9B8EECAC572CE3407A8026D6DA569 /* IntegerType+IdentifiableType.swift */, - E3FC69F2F25AD2A73471B55D72EF3D88 /* RxCollectionViewSectionedAnimatedDataSource.swift */, - 71D2F825E8CB5F153CB1129FD6C30A14 /* RxCollectionViewSectionedReloadDataSource.swift */, - 72D229FA5EF1F07B5006BB07983E73F3 /* RxPickerViewAdapter.swift */, - 85AB9F198071F4FFFD3967362E9EDB76 /* RxTableViewSectionedAnimatedDataSource.swift */, - 1A5AE75EBDE8DA870927704CD94AC0E1 /* RxTableViewSectionedReloadDataSource.swift */, - E91916B07C37A209D25B7D910842E604 /* String+IdentifiableType.swift */, - 142413141212B735369078BF6388CA5A /* TableViewSectionedDataSource.swift */, - 130BE4B7F904DF2C8DB08317F844B561 /* UI+SectionedViewType.swift */, - D1DB3CB1B0F9F8FBA6EB3FF0651D9C39 /* ViewTransition.swift */, - 20DC7C2F68E6D225F8A28218243E68AD /* Support Files */, - ); - name = RxDataSources; - path = RxDataSources; - sourceTree = ""; - }; - 2FEEEE07FF0A91834891F9CC2A86EC56 /* Video */ = { - isa = PBXGroup; - children = ( - E1BCDBFBE4B6AE506F7500D541CCA4B8 /* YBIBVideoActionBar.h */, - 8BCADFC48E2D3683403AE676EBB1FAB3 /* YBIBVideoActionBar.m */, - 25786E146AAE30629FEFFFCD7FEF1C8A /* YBIBVideoCell.h */, - F49EC34BA25445FFAFDB75752FD9EFFE /* YBIBVideoCell.m */, - 59FF3CB194901CFCF1A50573DE01113E /* YBIBVideoCell+Internal.h */, - F06C8ABB058B9D2FEF1726930EB05BCE /* YBIBVideoData.h */, - E9A43AEB8060E50780CE46E8FFB7F94D /* YBIBVideoData.m */, - 6C0DB89854D24E5D70FDE2EA792BBCE4 /* YBIBVideoData+Internal.h */, - 7462F84AB2989D3A2675AA6CA2CC540B /* YBIBVideoTopBar.h */, - 86A3B7CF5EAD9973DAF3C6FFBAEE5AFE /* YBIBVideoTopBar.m */, - C5B7E713872D1FF5E662E3E0EA2B6505 /* YBIBVideoView.h */, - 4F32E9C5ED25E45138C2B009244D8436 /* YBIBVideoView.m */, - 5C6354E910C26010E6650204C68A6B1B /* Resources */, - ); - name = Video; - sourceTree = ""; - }; - 32F0F48DED71A27F831DE40F4142C263 /* Interface */ = { - isa = PBXGroup; - children = ( - 5393BC5A87C5F37D204A620A3F1979BA /* OIMManager.h */, - EAF1091660C6429B118149BE01714056 /* OIMManager.m */, - FB4ADEBB4D4F0969EDB1E98FD06BD24A /* OIMManager+Connection.h */, - D1DB4F36A216F0FE7063760FC77B8302 /* OIMManager+Connection.m */, - 65AF056AC49D66AA67CE8E4CC5F7ABFC /* OIMManager+Conversation.h */, - B23C3A2C524E46A832566B9E8F3565B5 /* OIMManager+Conversation.m */, - 5DFA11B23F0F29B0B8105FB002C0BB1D /* OIMManager+Friend.h */, - 30BCDBE3285AAC94EE2E1B2D935E8DCD /* OIMManager+Friend.m */, - 44456B4A49FD97858C88390117FC8890 /* OIMManager+Group.h */, - 1E5EAE84819EF1BA77DF74FCED0F3399 /* OIMManager+Group.m */, - 00A34944CB3A07DB54E4A187735E5EDB /* OIMManager+Login.h */, - A2C6981FB90E9DB2786F343976922ECA /* OIMManager+Login.m */, - 97847B9AE08AA8C0D6CD270E39CDC0E2 /* OIMManager+Message.h */, - 41B686351F84A98FEEC222FA207E8D99 /* OIMManager+Message.m */, - 89EFF37CC53F11B002498B5B55AB037F /* OIMManager+User.h */, - D1298B1397ACD7C9C70CFD673D14E200 /* OIMManager+User.m */, - ); - name = Interface; - sourceTree = ""; - }; - 346D59E9FB8F99F5AA4CE3479F2C2499 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1F5D6827AFB3166F91E146F96204DDFE /* MJExtension.modulemap */, - C816BC11F808237533A304258E6B9519 /* MJExtension-dummy.m */, - 5B58ED15172BCCF27E385B5BF68A6918 /* MJExtension-Info.plist */, - 62A9CAE160221A15F9869953E47C95D0 /* MJExtension-prefix.pch */, - F40F3FE6E6E74FE180EC6601023DBA74 /* MJExtension-umbrella.h */, - DF72176577676D86E77A44C57C98F44B /* MJExtension.debug.xcconfig */, - 0728A2587FDDC0AF78C982A4DC85EF61 /* MJExtension.release.xcconfig */, - F77154D97D4ACDB3794B86B36A4D2C2B /* ResourceBundle-MJExtension-MJExtension-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/MJExtension"; - sourceTree = ""; - }; - 35E526B6E4CA6A7E89FE8C5A5B1F2259 /* Frameworks */ = { - isa = PBXGroup; - children = ( - F7FCEF70C7D9750C1B6ED3C89E1E04E3 /* iOS */, - ); - name = Frameworks; - sourceTree = ""; - }; - 38344D8DE159517DCEBA9F6784602714 /* RxRelay */ = { - isa = PBXGroup; - children = ( - A89C8E12857A90B1C389AB823B07BD56 /* BehaviorRelay.swift */, - BC93400A9949AF32E23616180B0B6CDD /* Observable+Bind.swift */, - E6FB79E861E4F3D89D4BDDCF33899DB8 /* PublishRelay.swift */, - 001B292321BC5B049194157ACD963619 /* ReplayRelay.swift */, - F1E36184832E3BA860B6D06AC2293606 /* Utils.swift */, - 57681D8DCFCD935A4581C91E6E877085 /* Resources */, - 9AA229A44FED65851AA309B6B73724C8 /* Support Files */, - ); - name = RxRelay; - path = RxRelay; - sourceTree = ""; - }; - 390D6C41E231B4F2FB55A27601653A77 /* Support Files */ = { - isa = PBXGroup; - children = ( - 44D3D9364C5E3681429B741A17C6D231 /* RxSwiftExt.modulemap */, - 558D712381B568AD9457624A9865B29B /* RxSwiftExt-dummy.m */, - E9C0E7881BEB03E2172FC9B3A9B1ABB3 /* RxSwiftExt-Info.plist */, - 2E2DA381D265C5A84E4274615BD3C37F /* RxSwiftExt-prefix.pch */, - 62851F93EAD70B5DAEBEAE1D63184C5A /* RxSwiftExt-umbrella.h */, - 62068575E84E562D2715857256F195F2 /* RxSwiftExt.debug.xcconfig */, - 1EEA2A47DAF2DB781EBC24E6A1DCA2E5 /* RxSwiftExt.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/RxSwiftExt"; - sourceTree = ""; - }; - 3C982D2C8B65ED186C10F67411894FEC /* SDCycleScrollView */ = { - isa = PBXGroup; - children = ( - 57E2B9941F8CBF419C46C68C9AF8CE62 /* SDCollectionViewCell.h */, - 85CEF0B57610430DC6C0900DC77AC6F5 /* SDCollectionViewCell.m */, - 137B6C5117E166291507375196C29E1B /* SDCycleScrollView.h */, - 9167B3FF06763D714F9660F54885ECEF /* SDCycleScrollView.m */, - 990707B203C5928699E7AAADC40C85D6 /* TAAbstractDotView.h */, - 3B2B2FCF8F9A4061EFB2C1C80198FBF1 /* TAAbstractDotView.m */, - 112275B5F2DA020D1F5AAA0ADA2963C4 /* TAAnimatedDotView.h */, - F8E0F9310F8F3E8573FC448EDC98B78C /* TAAnimatedDotView.m */, - DBB07160DFB218EECCC7DBA7F12212BD /* TADotView.h */, - 17FF6580767902B4011A015F2B07A578 /* TADotView.m */, - 6A82911D5CB0F6C7A32A79C0374FCDBC /* TAPageControl.h */, - FC4E893F753ADB394FE8F1C9F855C83D /* TAPageControl.m */, - EA293B714E3EFFF2B4E110D6741A5097 /* UIView+SDExtension.h */, - 4AB6CBC4746778086E329DD344D09063 /* UIView+SDExtension.m */, - 7B1FDE28B5BF6553429E7FC2CFAB3163 /* Support Files */, - ); - name = SDCycleScrollView; - path = SDCycleScrollView; - sourceTree = ""; - }; - 3DAA87A8620CF6996E21D4944FCC4EF8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 660B0D3207CDA50941350787E807EBF9 /* AMapLocation.debug.xcconfig */, - 3AC0F3EEDD22751DD4EF0DA40250DC07 /* AMapLocation.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AMapLocation"; - sourceTree = ""; - }; - 3EAC53B0FD10D8BEA680859F029696DC /* RxSwiftExt */ = { - isa = PBXGroup; - children = ( - 44569C2887381E8BB6BAAEC55A9774F2 /* Core */, - 61C5249FDF751F004C93823AE354DDE0 /* RxCocoa */, - 390D6C41E231B4F2FB55A27601653A77 /* Support Files */, - ); - name = RxSwiftExt; - path = RxSwiftExt; - sourceTree = ""; - }; - 4178D8EA87022F419C02300A214DE0D7 /* Resources */ = { - isa = PBXGroup; - children = ( - E90211449D1194D31D1BE906BFB6FEBB /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 4275D96115AA00916CE1FD010F0ACA4A /* Support Files */ = { - isa = PBXGroup; - children = ( - 9C4BD1FDD57389DDABA93B25B1F33C60 /* ResourceBundle-RxSwift_Privacy-RxSwift-Info.plist */, - B239ED9649801435305F59AF6D6AE50A /* RxSwift.modulemap */, - 40FD25DC1921B871C7F788075D01E4BD /* RxSwift-dummy.m */, - A120227F9F4B625771EBD96F015D8008 /* RxSwift-Info.plist */, - 74108890315A63C8D0AA1EAC2AA753B1 /* RxSwift-prefix.pch */, - C8AD3E343425805782DD3A683C4AB359 /* RxSwift-umbrella.h */, - 1390CC8E3CD88975425399A7BD6E60F3 /* RxSwift.debug.xcconfig */, - 8CA76143A5698109811F6465625A7D19 /* RxSwift.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/RxSwift"; - sourceTree = ""; - }; - 43DDE9F3971026A744DF261023296BCF /* Core */ = { - isa = PBXGroup; - children = ( - A30F967339486C931FF72A91349018AC /* IQBarButtonItem.swift */, - BB38A21B400317176AA9BC8FFBF61A5E /* IQBarButtonItemConfiguration.swift */, - 750F89B19E3F2994003AEED155F64886 /* IQInvocation.swift */, - 52DFC3D116D363CE880108238BB7C1B9 /* IQKeyboardToolbar.swift */, - EC0B5B97AEDE09AD78D399CF70F6468F /* IQKeyboardToolbarPlaceholderConfiguration.swift */, - 993FD35E999A7AB78E66C8B6CB9FDB35 /* IQTitleBarButtonItem.swift */, - B7FD01CF991B2947E8743F34F758F00A /* UIView+IQKeyboardExtension.swift */, - ABDDA2F98E6FF243C9EAAF78BE220BA3 /* UIView+IQKeyboardExtensionDeprecated.swift */, - 886EDE3EF4D2E04DC332BE8E363F892F /* UIView+IQKeyboardExtensionObjc.swift */, - ); - name = Core; - sourceTree = ""; - }; - 44569C2887381E8BB6BAAEC55A9774F2 /* Core */ = { - isa = PBXGroup; - children = ( - EF6DF531579CE69496EA3326B6B5AB0C /* and.swift */, - 99DBBEE27AA60246E2BFF5947C21C49F /* apply.swift */, - 326281CC28396A68E89160486CB6C8EF /* bufferWithTrigger.swift */, - A0A2D3C3FF94DFA55B6240A4E3F7EF71 /* cascade.swift */, - CF1A17DE9613A991E0CA0C68744B81D6 /* catchErrorJustComplete.swift */, - 4912A79A08146F11C569FC6DA4735C57 /* count.swift */, - C107644E8F1B43B9190403B7575902BF /* curry.swift */, - 4A695E041567399C0A6E1B8B2BB5790E /* distinct.swift */, - 871E714FD37A86D38B34456ADD948A3D /* filterMap.swift */, - 5581B1DE9E573F96230513861EAC652D /* fromAsync.swift */, - 7C734560368C98DD1126AAEE26285B2F /* ignore.swift */, - 4A86205BBD9A0C0A9ABA8E148F66C648 /* ignoreErrors.swift */, - 0D84E9F9F6E555A1543E50A0B611DEE8 /* ignoreWhen.swift */, - 986D3638256A93D202D509D2EA916718 /* mapAt.swift */, - 59AB42D5F7656B8882D8F442ED7CC8B8 /* mapMany.swift */, - 58EB1FF15EF91274F887D47E933DE7AF /* mapTo.swift */, - 8C69CF0F0BF608B7192C8C2D478D58D4 /* materialized+elements.swift */, - 03AF9077A88CE3FDD85D74403482C1A5 /* mergeWith.swift */, - 7BB619052F7DA53A970B433F53AAEA9E /* not.swift */, - 3D5CC7490D18D68B024892F6BD86A7B6 /* nwise.swift */, - 79397AC7344C5EAFB7C39EC8AC865589 /* Observable+Alias.swift */, - 7B95BC3382D56B69F02F01E003F03796 /* ObservableType+Weak.swift */, - 42C932923F54BF07D5682A760F4539BF /* ofType.swift */, - 705E874F6D90A41BB91F8827850D08E5 /* once.swift */, - F491CDC277C6297CED0F4DB7FDB3B7D1 /* partition.swift */, - 64219E8625D4757F4535A81DE9CC4D2F /* pausable.swift */, - 09BF0462A5A73BDAD46E8893D422BE0F /* pausableBuffered.swift */, - 22AAC60424375432315859887EDB95E9 /* repeatWithBehavior.swift */, - 414EA10691F9648F2A822D776442BEE8 /* retryWithBehavior.swift */, - 31E78FA0D84F351E9823CE5E2062575E /* toSortedArray.swift */, - BC43992A1CEA954A9FF7EAFBFE2123A5 /* unwrap.swift */, - 500A5FEB2506800042D1146A691F3EAA /* zipWith.swift */, - ); - name = Core; - sourceTree = ""; - }; - 4488B0D9649AF3F5F70FA1186039A325 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1CF8E6F541077AC2F8784FCFDE14C12A /* ZXSDK.debug.xcconfig */, - 0D7269015D795415C30E6E7FDA887D10 /* ZXSDK.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/ZXSDK"; - sourceTree = ""; - }; - 45E0ABCC560E63CCDC698046D2CECAC8 /* Pods */ = { - isa = PBXGroup; - children = ( - AEF8663A15DF8CF8A388BC4C30E322BB /* Alamofire */, - 922C4D794D5DA21F27DE371A32C81DC9 /* AlipaySDK-iOS */, - B61AC084DCC6C390EBDE866B52662BAC /* AMap3DMap */, - 7A5773BE75C2857E4292FEA4F45F9E2D /* AMapFoundation */, - AE36DC85671F639195920D649C814426 /* AMapLocation */, - B7D0F0451498E39540F43B4DDEAD0C16 /* AMapSearch */, - B8E0F5D7A2B95FFBDDFDC37C469BC5EB /* CocoaLumberjack */, - 09B81D7CE8836E15B560B259E1F4AEB3 /* Differentiator */, - F92D38EEB283873DE3BC6F7542FD9F5C /* GTCommonSDK */, - 8DD960C6BAF6200C0F8AC067AF5A4C83 /* GYSDK */, - 8D0F34B7C644039F8828C76FE8328485 /* HXPHPicker */, - 2B8B8B2850D43FFA2121E925FA9D97A7 /* IQKeyboardCore */, - FA3643B9EB0DC348D5E145744C5C997D /* IQKeyboardManagerSwift */, - 08E09B5ABD3FCE71D53961FFCF94B214 /* IQKeyboardNotification */, - B5889D6F654B473CDBFF2CF8681A3584 /* IQKeyboardReturnManager */, - 82F85F900EBAB66976B458FBAC8F5FCA /* IQKeyboardToolbar */, - 8A848EB67D0A89E7BC70198D9A75F857 /* IQKeyboardToolbarManager */, - 566CC6A3EC260171A8FBAEA09BFF55CE /* IQTextInputViewNotification */, - 840CD23F46524B69F4F4B6D47FB84919 /* IQTextView */, - 609116DC7A2BA0263416EFDAF019810A /* Kingfisher */, - 6B08B74A389EBF7A9C550C3097EC1C9B /* KingfisherWebP */, - 78842ADE4139DB0C6164E6B45B78B68C /* libwebp */, - 184104BE580B9AD33844D3C3137BD7DF /* lottie-ios */, - 4A894EC0AD009DA1A763159D3C7411AE /* MarqueeLabel */, - 5C0E6D6169A820864A2D9A306561E746 /* Masonry */, - F456D54BFDB45606FD2826FBEEC75A16 /* MBProgressHUD */, - A21F7BF51B43F3776F3DE3D773340DFE /* MJExtension */, - 68A769A6E27CDF42F6D607017780F5D6 /* MJRefresh */, - 1B64ABA8F436EE83F74E37C2167D564C /* Moya */, - 4B455CD6D951F3EC367FB3AB3CE3C165 /* ObjectMapper */, - 0519FD4567FEF5F75311774168A5E6D3 /* OpenIMSDK */, - 81191C65D2D480F4497CBD765FC7846C /* OpenIMSDKCore */, - EA761952229FF5E736A9D51024E3B26C /* Popover */, - 6B80073677AE375026360827C4C7760C /* RxCocoa */, - 2FD4164449FB5747C85C9C31E81DE2C1 /* RxDataSources */, - 38344D8DE159517DCEBA9F6784602714 /* RxRelay */, - 6356E43B41589558755AE4C5507D1720 /* RxSwift */, - 3EAC53B0FD10D8BEA680859F029696DC /* RxSwiftExt */, - 3C982D2C8B65ED186C10F67411894FEC /* SDCycleScrollView */, - 8C5931FD55311A7709205B34F5C00512 /* SDWebImage */, - 9F23C9A2C862A7761153F64FC8E53794 /* SGQRCode */, - 1E8F7BE6175C1532BFCBD66DDCE82460 /* SnapKit */, - 5055DB441F1704A906957742BCED1440 /* SwiftDate */, - E2A7FEC7F567EF8BD435292F80BDC7E8 /* SwiftKeychainWrapper */, - 4BB7C0154E46DCC2E9593D7827BCB5C3 /* SwiftyJSON */, - 010A71F4BB02A46FC706439881A18810 /* SwiftyUserDefaults */, - 47D23715B90AA6C74FC7A1B149AE2909 /* TagListView */, - 2C4CCEE85247151B2A47A9EB0FBE6349 /* URLNavigator */, - 2593E1DD2DC47C75EF3A0CE509D4C1AB /* WechatOpenSDK-XCFramework */, - 6028094BC34E181454B871B6D6A83CFF /* YBImageBrowser */, - A72913F8546147BA91D824527DC723A4 /* YYImage */, - 6F410325126C659B7B795978916FCE77 /* ZXSDK */, - ); - name = Pods; - sourceTree = ""; - }; - 45F0B9ECB870C481059FDD419A46F91D /* Support Files */ = { - isa = PBXGroup; - children = ( - 42F1702D21C1AAA9E33E2984581D4FCA /* AlipaySDK-iOS-xcframeworks.sh */, - 1098D704D51AA0E2DEDC327834F7740C /* AlipaySDK-iOS.debug.xcconfig */, - F7FA543E892B922765067621A07C87FE /* AlipaySDK-iOS.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AlipaySDK-iOS"; - sourceTree = ""; - }; - 473006755050AAF82ADE32D6DCD56438 /* Support Files */ = { - isa = PBXGroup; - children = ( - 22EDB49EB35BB9C086E37ED89EAB052B /* YYImage.modulemap */, - E3B2CD25D2368F0AD91857FAB79E8FB1 /* YYImage-dummy.m */, - BE1897BB0C9F910694FC61F30214A0EE /* YYImage-Info.plist */, - FA40745829B66EE3DC8E5C60D9CC9BEE /* YYImage-prefix.pch */, - 816BB0C72A261BD1EB7BD6894E8AA38F /* YYImage-umbrella.h */, - CF3E1C0900F540641D8FE98FD89E3640 /* YYImage.debug.xcconfig */, - BC7E39CC063AB41D123D508DC96ED3C7 /* YYImage.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/YYImage"; - sourceTree = ""; - }; - 47D23715B90AA6C74FC7A1B149AE2909 /* TagListView */ = { - isa = PBXGroup; - children = ( - 0D70F2602168F1347FB7D9F6E7603D10 /* CloseButton.swift */, - 4D51AEB7941D5096807E59C7B4F7596A /* TagListView.swift */, - A3789559DC432ABA817A4958988A7DE5 /* TagView.swift */, - CD0D9A28EB7FA8BDD8B46AECDC9967E8 /* Support Files */, - ); - name = TagListView; - path = TagListView; - sourceTree = ""; - }; - 4804C5A011C353043D9438F1BC53644D /* WebP */ = { - isa = PBXGroup; - children = ( - BC3F664E09F2AC1761DC4ECE861F83C7 /* Frameworks */, - ); - name = WebP; - sourceTree = ""; - }; - 4837C1DDFDECF77E1AAA1C217E746E6C /* Frameworks */ = { - isa = PBXGroup; - children = ( - 6006D4E765AEC9D031BC10150FC24B63 /* ZXSDK.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 48D9D43C4F7A7EF73D3AC8DA613BAA8E /* Utils */ = { - isa = PBXGroup; - children = ( - EE4A4FAAB99051ED36282D6DBBCEA552 /* OIMDefine.h */, - 63E347ABA937E1A86307E97B31D7E50C /* OIMReachability.h */, - 6777B5B9C83F2B2289CF20ACC0542106 /* OIMReachability.m */, - ); - name = Utils; - sourceTree = ""; - }; - 4A894EC0AD009DA1A763159D3C7411AE /* MarqueeLabel */ = { - isa = PBXGroup; - children = ( - 938E1CDDDC030960A63016E0B7190652 /* MarqueeLabel.swift */, - FA8BC2C4FFD28ECB131D96288CDC922C /* Resources */, - E08F64891F9C2915133647F92424EA3A /* Support Files */, - ); - name = MarqueeLabel; - path = MarqueeLabel; - sourceTree = ""; - }; - 4B455CD6D951F3EC367FB3AB3CE3C165 /* ObjectMapper */ = { - isa = PBXGroup; - children = ( - 87DDD42375DF8D0404926440BA144451 /* CodableTransform.swift */, - 1643B1405173B32A64A5AB78741EBA0B /* CustomDateFormatTransform.swift */, - EE530A41C456C8942C48BEE1BC4ACB0A /* DataTransform.swift */, - 046756EDF821762DDB9FCB12B7D5EF28 /* DateFormatterTransform.swift */, - 5DA8B2B1E25EA9FC5AD2833490B8F5C4 /* DateTransform.swift */, - 78E82B74D1377FBBEC130E8053016A10 /* DictionaryTransform.swift */, - 41FAE3704616441F385176547E15B85F /* EnumOperators.swift */, - 577E69204BACD94290D8AA0F05255858 /* EnumTransform.swift */, - E4E622365146682D7E08A6242B2B73CB /* FromJSON.swift */, - E60749802573F5E98F0C09AA9D2F3812 /* HexColorTransform.swift */, - 5001850E080A2D52833E20CF7C699547 /* ImmutableMappable.swift */, - AD14CB3A9622BD754B4DDE7ACDA1BA7A /* IntegerOperators.swift */, - 889EAD92A301DE400B16BA95A2544CF0 /* ISO8601DateTransform.swift */, - B47068467C61A7C35C481F7855A87237 /* Map.swift */, - 227FD73B3C6B806CCAF3C3B7499D12D0 /* MapError.swift */, - 845BD000FE8A9E1EB45F78DC1E70E618 /* Mappable.swift */, - A70FED667384419D528193F57E48A8F1 /* Mapper.swift */, - A852BD96FBC53D4DB881E0209211A72C /* NSDecimalNumberTransform.swift */, - CE864E35FBE5668BF392096A7DF58B8C /* Operators.swift */, - 3D01AEE6FEB31BADC6ABBB964F92BFA6 /* ToJSON.swift */, - 7CFD834B07B9BC8B466E8ACB23CF66F7 /* TransformOf.swift */, - 0D6CE6CF210C12D6787846819CB8D3B1 /* TransformOperators.swift */, - 26EE58E648FD163D54D97151C69A93BA /* TransformType.swift */, - DBD1A131E0B3DB38642A84F2E5057152 /* URLTransform.swift */, - B0262CF67135F1713BB90F3C8B3C05E6 /* Resources */, - 04B06F8FFFF140427FD2BA930A50ADDA /* Support Files */, - ); - name = ObjectMapper; - path = ObjectMapper; - sourceTree = ""; - }; - 4BB7C0154E46DCC2E9593D7827BCB5C3 /* SwiftyJSON */ = { - isa = PBXGroup; - children = ( - 781602548FAD9A55430D9ACCCB6098CC /* SwiftyJSON.swift */, - 4178D8EA87022F419C02300A214DE0D7 /* Resources */, - 8D190C4888D13FCFDBA0427CA2C62633 /* Support Files */, - ); - name = SwiftyJSON; - path = SwiftyJSON; - sourceTree = ""; - }; - 4E52EC198AFBBF2895A04ABEF28131C8 /* Support Files */ = { - isa = PBXGroup; - children = ( - FBE3F550FE18AA6D139CD1B842365721 /* OpenIMSDK.modulemap */, - D6B2C759FB92C7CAA19BAEA2B83D076F /* OpenIMSDK-dummy.m */, - D32609E1BA7CBC157907FAC2FA760E85 /* OpenIMSDK-Info.plist */, - DD64D1E7E04C06593281056370568625 /* OpenIMSDK-prefix.pch */, - 20659E5169F93017F52987EB322E311C /* OpenIMSDK-umbrella.h */, - 7DCB1E01613F7B40578A36E6266BC0B7 /* OpenIMSDK.debug.xcconfig */, - BFBF528C9DC2F22EF9166D52B4955E30 /* OpenIMSDK.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/OpenIMSDK"; - sourceTree = ""; - }; - 4F0CDE059BDFC8D56B1C035A7A27130C /* IQKeyboardToolbarManager */ = { - isa = PBXGroup; - children = ( - 43FB9E973A47305B19D631375B80A59A /* IQKeyboardManager+ToolbarManager.swift */, - C5A5182C75AEAD0F757530B825BB3DA6 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */, - ); - name = IQKeyboardToolbarManager; - sourceTree = ""; - }; - 4F89238B91B8EC63E038E27A33985BD5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 7631896C502615B6F84E4C67DA4FFCD8 /* libwebp.modulemap */, - 5D7E275A9F465A83ACE378819BCFC362 /* libwebp-dummy.m */, - 4AC41A04D19C36C0AA63528AA7AFDC61 /* libwebp-Info.plist */, - 20831C4464FC6DB5647CA8FFB3BB782D /* libwebp-prefix.pch */, - 49B0BA1B9007316089950248F030BD49 /* libwebp-umbrella.h */, - 615A84F5D6E75DCDEE4DE6130DF59E85 /* libwebp.debug.xcconfig */, - CE5309C36CA7E076181ADB8990797A85 /* libwebp.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/libwebp"; - sourceTree = ""; - }; - 4FA4E6AD15A0774E395365FBB07F4357 /* Resources */ = { - isa = PBXGroup; - children = ( - C53081C00C8A2D5E4DDB3C986037310A /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 5055DB441F1704A906957742BCED1440 /* SwiftDate */ = { - isa = PBXGroup; - children = ( - B893A474C858F5C4E36D48E3A0D8C038 /* AssociatedValues.swift */, - 85D1B0A1709FD35727940D11722F80FA /* Calendars.swift */, - 7F851682E599767E9AA044FB11D2D5E4 /* Commons.swift */, - AC74A3DD06D0A473754208FC64517B43 /* Date.swift */, - AC806792CC71E85249287A955EF3507D /* Date+Compare.swift */, - DC143A0F924BCC3BADED1EC0C737709E /* Date+Components.swift */, - 393D78DFF9D51838A2054D5FB8A454BE /* Date+Create.swift */, - 12A7038866A941BC4F3263821D30DE6D /* Date+Math.swift */, - 6D36685DBD069796D57F250F298F4E12 /* DateComponents+Extras.swift */, - 6661F713463BAE855AF1063C2C8C4ADB /* DateInRegion.swift */, - 7C22CE4CD1F8C21C3216ED7B7D0E2880 /* DateInRegion+Compare.swift */, - 5C6097CD51385779D9DD1CD30E169A70 /* DateInRegion+Components.swift */, - 4A843D530EED2334A0CD6860F27AE9F7 /* DateInRegion+Create.swift */, - 7E28567FB181BF2D15FA053910918A9B /* DateInRegion+Math.swift */, - 8F5DBC544730FD8223729C38F6CB1F5B /* DateRepresentable.swift */, - B60F33DE3FA740B4B9EE0AD8B0619BC0 /* DotNetParserFormatter.swift */, - 65EEC6191682ABA20B8A0411040B8329 /* Formatter+Protocols.swift */, - 0DE992B84532B2F0319D59578C0E1B8A /* Int+DateComponents.swift */, - B4C026C1C0C1FF7FEE5FF1768B7C1F9D /* ISOFormatter.swift */, - EC974D5440D46C2475A13210B5072DF5 /* ISOParser.swift */, - 1A84325CE3F960B48B1C19244D0063D0 /* Locales.swift */, - 5751CB4FB7042A2EF15A1E430570581E /* Region.swift */, - DB8309D96FCEC99B33E677AF7698B74F /* String+Parser.swift */, - 93EAA2A959A3EA70624A72F2FB588943 /* SwiftDate.swift */, - 52DBEA1CC4EF7DC089E199B3B942A583 /* TimeInterval+Formatter.swift */, - 533D9571D1EC332BF0EBA2C3A4F8E994 /* TimePeriod.swift */, - 6B34EDD0EC5E729369F40418B69FA49F /* TimePeriod+Support.swift */, - FE42C469235FE439145DB1ED23358021 /* TimePeriodChain.swift */, - A468180CC8FED21C9CBCF714A602BA70 /* TimePeriodCollection.swift */, - CCE90CA40DDCE3B2A7557F7300F48BDA /* TimePeriodGroup.swift */, - 8B02944BAFEBFE6942DBA3EA87B8E5AF /* TimePeriodProtocol.swift */, - 5C26C5D03455E309DF3A4CCB403C5CB1 /* TimeStructures.swift */, - FE27247B0F48B326AF1DDFF5E52E4127 /* Zones.swift */, - 77CF13DDDF26C9E4E6E4540F1931B8F2 /* Support Files */, - ); - name = SwiftDate; - path = SwiftDate; - sourceTree = ""; - }; - 53B93844EBCF80417E7E1D4E3018F18B /* Resources */ = { - isa = PBXGroup; - children = ( - 3702CCA67B68183FAC858084EE553452 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 566CC6A3EC260171A8FBAEA09BFF55CE /* IQTextInputViewNotification */ = { - isa = PBXGroup; - children = ( - C727B0032405B20871145670E76F6A35 /* IQTextInputViewInfo.swift */, - 0654D9122788EE00CAED6C0FFEE73F77 /* IQTextInputViewNotification.swift */, - 8C838B4F0C1E0AF68E1BBEB1D7486F72 /* Resources */, - 58C963E516427F24AF5ECB05B9C7320B /* Support Files */, - ); - name = IQTextInputViewNotification; - path = IQTextInputViewNotification; - sourceTree = ""; - }; - 57681D8DCFCD935A4581C91E6E877085 /* Resources */ = { - isa = PBXGroup; - children = ( - EDE1FC37AA6F040B0AF72E17C31A9E4D /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 579600557A8818FE806DB3940CD84BE1 /* Resources */ = { - isa = PBXGroup; - children = ( - 13E5190A07461E9AA35ECDE444AE8025 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 58AEBDEE0FD26AA73906FD316397D0D1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9529091C803AAABDBA7281A7BC067C73 /* IQKeyboardToolbar.modulemap */, - 7BA4DAE10AD47725EEC376152E05E20C /* IQKeyboardToolbar-dummy.m */, - D841D091A56096AAE13A8CF138CE6130 /* IQKeyboardToolbar-Info.plist */, - D82B68410AFC0685799BD4FFEDAEDDEB /* IQKeyboardToolbar-prefix.pch */, - 7BEFF4F4EB8D45BF83AE2F386D71FE70 /* IQKeyboardToolbar-umbrella.h */, - FDF694330205FA2699A346C81F89D14B /* IQKeyboardToolbar.debug.xcconfig */, - 1DF1E44CD5D56F8194F2390A6116F36D /* IQKeyboardToolbar.release.xcconfig */, - 28DA339E778E6063A58C7ED7DB35705C /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardToolbar"; - sourceTree = ""; - }; - 58C963E516427F24AF5ECB05B9C7320B /* Support Files */ = { - isa = PBXGroup; - children = ( - F66066C78D6415B17CD2A32354EDC61D /* IQTextInputViewNotification.modulemap */, - 080BA283B9623B19CAC631DFF76437E6 /* IQTextInputViewNotification-dummy.m */, - 8F37D52910A532640524D149440D7052 /* IQTextInputViewNotification-Info.plist */, - EF11D95E8530B336C22B28260B2E1056 /* IQTextInputViewNotification-prefix.pch */, - E67302D9EB7537412F3092EFC7E74F0F /* IQTextInputViewNotification-umbrella.h */, - 93608F9DC483D379F667A4F03EDE2D96 /* IQTextInputViewNotification.debug.xcconfig */, - C6EED8EF1941D023328AEA4B21A95EFF /* IQTextInputViewNotification.release.xcconfig */, - F176357BA383DB166EB1ED8951BA321C /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/IQTextInputViewNotification"; - sourceTree = ""; - }; - 5A8F097FB03106C24F8891D77A6761F6 /* CallbackProxy */ = { - isa = PBXGroup; - children = ( - 69F0240DF73AE0C77CD3F808BF400356 /* CallbackProxy.h */, - 56B8A080F84269FEB98617E83C0454DC /* CallbackProxy.m */, - CD009445A239BEED49369C3E6069079A /* SendMessageCallbackProxy.h */, - 155E20CA6BEFC121FE0CABBBC97155F2 /* SendMessageCallbackProxy.m */, - 3C0CF0C62F67692E4295190EE91E610F /* UploadFileCallbackProxy.h */, - 13CFBAC771749F005DCDC9210BE8D854 /* UploadFileCallbackProxy.m */, - ); - name = CallbackProxy; - sourceTree = ""; - }; - 5C0E6D6169A820864A2D9A306561E746 /* Masonry */ = { - isa = PBXGroup; - children = ( - B8BB502A0A93569100EFA0D73E3A13AE /* MASCompositeConstraint.h */, - AAED5794D1814F1E87DB3BBCE6FBE1B2 /* MASCompositeConstraint.m */, - F00857D4A1176AE49F933BBAE966C775 /* MASConstraint.h */, - 54D4326B12078EADA37433D8A7688F45 /* MASConstraint.m */, - 003BC8561F8A2CDBE8792BA3D972D3B4 /* MASConstraint+Private.h */, - 0211CECFDC73CE25407A46059C53DB42 /* MASConstraintMaker.h */, - 6261B6AFF7CE8B3C5FCA2DA3C060B8CA /* MASConstraintMaker.m */, - 38E3AB8EB5CD905844D10DD03E94B4F6 /* MASLayoutConstraint.h */, - 73AAE64514CF9375B037045D901E983C /* MASLayoutConstraint.m */, - 8C0385510E7B13F5AF7511624C9E5C9F /* Masonry.h */, - 2CA207F1841764F2BDB2505E309C0D98 /* MASUtilities.h */, - 780859E89AEFB4AE5934635E23DD9F9E /* MASViewAttribute.h */, - 5BFD69CA959D1A9B459B375E711D2513 /* MASViewAttribute.m */, - A5579C794B8B2149F7FF896EA599A88A /* MASViewConstraint.h */, - 91E03E21D00A0CFC8BB4829B9104C22F /* MASViewConstraint.m */, - 35E8846F57F00F87FD95FD897542C502 /* NSArray+MASAdditions.h */, - B8435CCF2311680F3ED5C6D68A7DB889 /* NSArray+MASAdditions.m */, - DFFB232AA60913FE340369D4DA3F470F /* NSArray+MASShorthandAdditions.h */, - 5C82451206DF153E55585157CFB2164B /* NSLayoutConstraint+MASDebugAdditions.h */, - D2F6C3141B01558E41612E3CB9A5B3F5 /* NSLayoutConstraint+MASDebugAdditions.m */, - 111E59CE836AAFABF981BB302BED14EC /* View+MASAdditions.h */, - 3372B0460260FFF150042F100790D87B /* View+MASAdditions.m */, - F214D9285BDD834DE0F15BEBB695D5E9 /* View+MASShorthandAdditions.h */, - C7047394005D22EF48C06D0F8CD2813B /* ViewController+MASAdditions.h */, - E9EAC640CE6D964C3A01D2AD0D9CA661 /* ViewController+MASAdditions.m */, - BC6AE7D0ED3FEE3FC0A3BB6704C3832A /* Support Files */, - ); - name = Masonry; - path = Masonry; - sourceTree = ""; - }; - 5C6354E910C26010E6650204C68A6B1B /* Resources */ = { - isa = PBXGroup; - children = ( - CB4260D2F04BDE7B69E9332D05E23C54 /* YBImageBrowserVideo.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 5F726C3754EEA0BCB582C4A55E735D16 /* Frameworks */ = { - isa = PBXGroup; - children = ( - F6537FAA9BB9B73F701513A06F3F030E /* MAMapKit.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 6028094BC34E181454B871B6D6A83CFF /* YBImageBrowser */ = { - isa = PBXGroup; - children = ( - 29BB9916C4BD6341ADCF265DBFF6E4DB /* Core */, - 03FAA533C0E49FB41631ABB12321A6A2 /* Support Files */, - 2FEEEE07FF0A91834891F9CC2A86EC56 /* Video */, + 3999BA7BC5D3C7658CCCB2D544E611B4 /* Core */, + 745A4C25FE9F7A927352F897E4FBED48 /* Support Files */, + E67F28A7BFC2D0A10F4A859FF3252BD1 /* Video */, ); name = YBImageBrowser; path = YBImageBrowser; sourceTree = ""; }; - 609116DC7A2BA0263416EFDAF019810A /* Kingfisher */ = { + 2D59480D417D31C1242C59A486BFA4CB /* Support Files */ = { isa = PBXGroup; children = ( - 3FFB55FA3F07B1F7CDEF3C5945A8B171 /* AnimatedImageView.swift */, - AD658EEF20E9119CE663C6D7FC68A348 /* AuthenticationChallengeResponsable.swift */, - E3A95178FB209B1FAE668822F7A4DEFC /* AVAssetImageDataProvider.swift */, - 598A7AAC951814B1308789BB200D8911 /* Box.swift */, - 9BC0A20DD2D47C97E991C418B88BE2C5 /* CacheSerializer.swift */, - 7A4F33BE715AF8213D74710FD0599549 /* CallbackQueue.swift */, - 054BFF3B2D649118B2DCBE549463B70B /* CPListItem+Kingfisher.swift */, - D68BEDC9751B141065CF1027FED503E6 /* Delegate.swift */, - D1C5BEE9A50F34D3FE4396E083ABA3E4 /* DiskStorage.swift */, - 5481E8B55B3E97A187B601A410FD66DB /* DisplayLink.swift */, - 1B3C11BF7CD9B3366062CA6E41292DCD /* Documentation.docc */, - 19008898D15EB1FBBCD1A15590CF8625 /* ExtensionHelpers.swift */, - EE8173DD24489D8BFB8A788C54567E2F /* Filter.swift */, - 01B81C446E6D0311D5E6B347C63082D5 /* FormatIndicatedCacheSerializer.swift */, - 4298E753B82537A2B8C44313CCC2E168 /* GIFAnimatedImage.swift */, - E1490DB57DB8A1ECD1F3411B7761EAFD /* GraphicsContext.swift */, - 9B38CA1B256C4DC4578E9BED9368B736 /* HasImageComponent+Kingfisher.swift */, - E98072F9E435CA10388C986C4EAA96F6 /* Image.swift */, - 773911D3EAAE3F33A663F7CC1EC09005 /* ImageBinder.swift */, - E0611803A1D39F6DB0A37D8FC405B3AA /* ImageCache.swift */, - 83FC585A2073635F19A93B8712ADFCDE /* ImageContext.swift */, - FB7A47E1684EE076EE4D20C87EA82A15 /* ImageDataProcessor.swift */, - D460BB20DEA54F4F1227BF8309D4153C /* ImageDataProvider.swift */, - BD4667C302EAFF74DF30B4071AAC48CA /* ImageDownloader.swift */, - 3C0DBF3930B6D9B41590221ED28D0ABD /* ImageDownloader+LivePhoto.swift */, - F2208D0296FB7B05852D116F0936A6DE /* ImageDownloaderDelegate.swift */, - CB58640348852BF733D2F0BD5379DDE5 /* ImageDrawing.swift */, - 037D39577B12B91D443CB163F5B8C2BA /* ImageFormat.swift */, - A7E6A17940D1B64025EF4866E44EB716 /* ImageModifier.swift */, - 7C809857309C827761D59B9706AD5589 /* ImagePrefetcher.swift */, - 3359376B97F44EDE8A748CC630F6B455 /* ImageProcessor.swift */, - 7375C57236DEA3235E0F2EEB61FA4BC5 /* ImageProgressive.swift */, - 54B4A854479D2A862E4A10285D168D0F /* ImageTransition.swift */, - 716510DE893831EBA6423B0D86C62DDB /* ImageView+Kingfisher.swift */, - AC5247F475E31AF3FCDD129E145E5EA2 /* Indicator.swift */, - 1923C5F56BFC83403AE09CB6E7168D18 /* KF.swift */, - DDA8392764223ED541726AFFDD11B807 /* KFAnimatedImage.swift */, - D7BCE18E08BCB73003FA4EAB713A67F6 /* KFImage.swift */, - 1FDD4EA270A2514B7D7491E50CF6BA4B /* KFImageOptions.swift */, - 7CA4413BD540BFE68830E04D0B5F80B6 /* KFImageProtocol.swift */, - 3ACE2A2FCD1CB79DDBD88BFB0583269E /* KFImageRenderer.swift */, - 185E9EEEEA7B324631291ABE87B55BF9 /* KFOptionsSetter.swift */, - F49C1B5C54E03ED988C89B6FA16BDB5C /* Kingfisher.swift */, - E9C22CBBE02969A90F816D150A20E9FF /* KingfisherError.swift */, - E6C43FEBD18CE9598FA1A74938867514 /* KingfisherManager.swift */, - E16FC8EC2290249207E00023113CA596 /* KingfisherManager+LivePhoto.swift */, - 76A218800E579334BACA61C598A34ED7 /* KingfisherOptionsInfo.swift */, - D5E02CC1CDA6213ADD2D3A5455B1CAA1 /* LivePhotoSource.swift */, - FDE553DBFD8986CB772D81F3EA41D6F1 /* MemoryStorage.swift */, - 622275BE3CDED43E4D4D52732AFB6ECB /* NSButton+Kingfisher.swift */, - 835D71EFA384E013530022C4ED5D6DED /* NSTextAttachment+Kingfisher.swift */, - CBBF1F672E38253186ECF2C0972D5FC1 /* PHLivePhotoView+Kingfisher.swift */, - D64F41A2745AE91DEE1543DBD286390F /* PHPickerResultImageDataProvider.swift */, - 5BDC964E4BDB8D2FC07223D96BD59013 /* Placeholder.swift */, - 1FF7131C55E627FF8ABFED611ABA66AC /* RedirectHandler.swift */, - DD52698FB0F645D5FEACA1C0F6F5C222 /* RequestModifier.swift */, - 9923D74C7DCC4CC752F4502C4B9F4AB3 /* Resource.swift */, - 5267B7BCFE0BDC27381D9A3718337CFC /* Result.swift */, - 0A758E01A5342DD85FC47B3EE4BABF79 /* RetryStrategy.swift */, - D22A61EEFB555B9222253E7202D107B0 /* Runtime.swift */, - 4829363F4F1E0B4952D62D858E19E4AD /* SessionDataTask.swift */, - 4183C044A4BC7762B0A05245AEA4D915 /* SessionDelegate.swift */, - 203E00991678D02363AB9B6B65D253A5 /* SizeExtensions.swift */, - 5A9024578942964BD08F0109992B3280 /* Source.swift */, - 6FB9C7E464A314BD63D92538B44F8A6D /* Storage.swift */, - BE7DEA50FF25BDE8F47C9A4C55418AD1 /* String+SHA256.swift */, - C5033298D1CA93A7865AE65144ECEDB7 /* UIButton+Kingfisher.swift */, - 53B93844EBCF80417E7E1D4E3018F18B /* Resources */, - 72B22C1993413CD79F77C6ECE7A6B83B /* Support Files */, - ); - name = Kingfisher; - path = Kingfisher; - sourceTree = ""; - }; - 61C5249FDF751F004C93823AE354DDE0 /* RxCocoa */ = { - isa = PBXGroup; - children = ( - EA9CEA59AF7E8F2341E1A92B8FB97E66 /* distinct+RxCocoa.swift */, - 2131626EC27604913E004ACB3CBC060A /* mapTo+RxCocoa.swift */, - B256BABEEDB82B55BD4DFCE193D4745E /* not+RxCocoa.swift */, - F4DE10A108C2BBBDF4265A2B0E9396B5 /* partition+RxCocoa.swift */, - EB9F979185CFD56D1A727A76434687D2 /* UIScrollView+reachedBottom.swift */, - 9CF168F773685B0F062B7011CD49245B /* UIViewPropertyAnimator+Rx.swift */, - 3363755C6A144FD04CC1F79B7234245C /* unwrap+SharedSequence.swift */, - ); - name = RxCocoa; - sourceTree = ""; - }; - 6356E43B41589558755AE4C5507D1720 /* RxSwift */ = { - isa = PBXGroup; - children = ( - 83EDBA00E11125390D155B70ADD10B3F /* AddRef.swift */, - E102058F9539D17E8EEB15112A058EEF /* Amb.swift */, - B29F79281A6FD2F1AB20A45A56FF699F /* AnonymousDisposable.swift */, - 829687B94722C4B27AE1F6A929C38A8A /* AnonymousObserver.swift */, - EB3C8E0FE0025F189650168E3AF6C6BE /* AnyObserver.swift */, - BBF5747CA453C4BA37E67B413EF9E878 /* AsMaybe.swift */, - C19DD6665A13D1B7549BC7D51C85D9EF /* AsSingle.swift */, - 47F4417E91DBF2662F9F10B3EE2F3C18 /* AsyncLock.swift */, - E653E3EC2CFFB240C0B26C63037A8603 /* AsyncSubject.swift */, - E50D3CE2D0594CBF14EB8467CCA02548 /* AtomicInt.swift */, - 443DB1392864611F254C77FA4329F1D1 /* Bag.swift */, - 66F6E82115C5A0AA962FAE21C21F7884 /* Bag+Rx.swift */, - 2ACC2D2851101B7855064121BBFD5564 /* BehaviorSubject.swift */, - 576B79FED5EC1392CFDE58BFFB2CC4A0 /* BinaryDisposable.swift */, - 486DBFE0E0D4096F665E6499011A443F /* Binder.swift */, - 421FF5F39905655DDCE1A5F2FF2176D9 /* BooleanDisposable.swift */, - 2DE4D17C8433A44E4298C409C0D34F11 /* Buffer.swift */, - 1E3D74F7DD766B0FCCC2830BEE031A12 /* Cancelable.swift */, - 5EF97943C0E85B351106FE78D20CD5F9 /* Catch.swift */, - D551093E45236015C327AE4B9BEA862F /* CombineLatest.swift */, - A124C9F3769D0065B20BB49855542106 /* CombineLatest+arity.swift */, - 60011C2C50FFAEAC7F35E0F62890FDD6 /* CombineLatest+Collection.swift */, - B27D930CCDFA0E100210ECA696F0A212 /* CompactMap.swift */, - B613575929F9CDC08E3D012506899530 /* Completable.swift */, - A59E29643218DB83EB446596CF3A4210 /* Completable+AndThen.swift */, - 6F1D204D6DDAB229B632C8DE0C49CE0B /* CompositeDisposable.swift */, - DE111CCED1194464F57087895D162857 /* Concat.swift */, - 390E8573959FA2A886CC5567D09B09F6 /* ConcurrentDispatchQueueScheduler.swift */, - 8F42F145897CD3CFBDA60FB0264DB501 /* ConcurrentMainScheduler.swift */, - 22391A5817E334075345521FE1174BED /* ConnectableObservableType.swift */, - F553CBDEE22BDB07390A5A1890961940 /* Create.swift */, - 4B65AF04777A2385E03DD8913EFAE5D7 /* CurrentThreadScheduler.swift */, - 036352F214EB5A26251C99D81D7BF15C /* Date+Dispatch.swift */, - 23B24E42476EAEB449B42C368E04FEBE /* Debounce.swift */, - C13FACFBC79FA95702703916C3A64ECF /* Debug.swift */, - B0141EC31CE079520632B9192FA59C41 /* Decode.swift */, - B0C85E19DE72AE17DD1F8E275523B4BF /* DefaultIfEmpty.swift */, - 67E975FB8AAE5124E00FDEC64DB28529 /* Deferred.swift */, - 03EBA45F8498DF53F666FD4E75823E8C /* Delay.swift */, - BD65B01FFFE710531CEAB6814557AA61 /* DelaySubscription.swift */, - C2AC64CAFEB6D49E57D7FAA016865BC3 /* Dematerialize.swift */, - 3439F956E2BEC0F71B3AC96FAE151B38 /* DispatchQueue+Extensions.swift */, - B194F603A90189ED3671958DAE609175 /* DispatchQueueConfiguration.swift */, - 8E3FE23EA4FA88C546AC8A32561D0DF2 /* Disposable.swift */, - 5DB2942177243632BB63FE27659B24D9 /* Disposables.swift */, - A5C635E55F5A6DFE07FD9D482A1443A7 /* DisposeBag.swift */, - CC4D4B98E55AECCD92A3E8F03E8B4975 /* DisposeBase.swift */, - FAB4CD456F6B33E249E6EA4B26455EBE /* DistinctUntilChanged.swift */, - B2156C5852C3ECAFFA155D714B6C5139 /* Do.swift */, - B32EBE3B8C04AA6B4171868801375329 /* ElementAt.swift */, - 87ACE2C6A3A01ED7E5CD2D9E5B2B24CD /* Empty.swift */, - 643E20DC003F67757DE48602D2A7C2B6 /* Enumerated.swift */, - DFE14717EDAB4A6C917DC1DC5F037922 /* Error.swift */, - 6B06A8830BD9CA33C77A2D4E10375DDC /* Errors.swift */, - C4B4AB0B79C4A577880AC965914ABDBB /* Event.swift */, - 6EEA47533FC8C4392A59226694906812 /* Filter.swift */, - E1DB25C161114385C7539D92C70848E7 /* First.swift */, - 89242402665F619FFC3F3B24AE76ADD2 /* Generate.swift */, - 9AFF3A2C20A0878A9F0BD547D0C6006C /* GroupBy.swift */, - 1EFFF31201EE4BC724B9C92EB8A90677 /* GroupedObservable.swift */, - 8A28EAFBBFB2489AD46E0091B00B767E /* HistoricalScheduler.swift */, - 587526430D6035E65DAF5B13CA90B45D /* HistoricalSchedulerTimeConverter.swift */, - 748290F58F89C4842B47E1474CAA8B3D /* ImmediateSchedulerType.swift */, - 1F6D81725FC20BBBDBDAE2433DCC141F /* Infallible.swift */, - F3D8BAD44D231ABE9E2CF363728BB827 /* Infallible+CombineLatest+arity.swift */, - 9CB8B56D6AF6C0096630403D14A6A2F8 /* Infallible+CombineLatest+Collection.swift */, - F584805C537CD1CBA84D5491040BA7C1 /* Infallible+Concurrency.swift */, - F7C68D1AD25BE9E3B11FE53E50D39163 /* Infallible+Create.swift */, - 5B96C38EC76CED40A0CD2DDF5B1DB12A /* Infallible+Debug.swift */, - AFCDE5AF3EB4961DEC846A4D7B35E777 /* Infallible+Operators.swift */, - CC62DE620BE171E4861A660B5110C9F4 /* Infallible+Zip+arity.swift */, - D73E24376EF4CAD3A86EF871E59DA6A1 /* InfiniteSequence.swift */, - 8871BF84E79608846B442F26D2DED761 /* InvocableScheduledItem.swift */, - 3BED3A0B0A00EA2FA5675D1740AB8EBD /* InvocableType.swift */, - C71982C9D407CCE05012DF8D73A62516 /* Just.swift */, - E66DA86ED33D4956EA0F327875149B12 /* Lock.swift */, - F7B20090C59B33E3BAD85392BE2A2BF9 /* LockOwnerType.swift */, - 9CECC955C1BC5B80B4C9603E67AF9B13 /* MainScheduler.swift */, - 97A7803B1238FF4874E59DBF1A7ADE7E /* Map.swift */, - 5FD85B1B451A0D803EAE3B5FA0006115 /* Materialize.swift */, - 23BCD448D0D59E19E3DE5D1D80437EB0 /* Maybe.swift */, - E32BDB5F008E014DF2899A52778B0534 /* Merge.swift */, - 91FB2EE0D18C43ED23BA513E80509BEA /* Multicast.swift */, - 84934C95F8FF400D99A7515B8C780AAE /* Never.swift */, - 42B114F0B8206EEAB6F552D7C4F863ED /* NopDisposable.swift */, - 06EE3D85DB7CA93CAA94FA29AE45BFDF /* Observable.swift */, - F78512BDAE7DFEC4E0557ABA5FBC074A /* Observable+Concurrency.swift */, - C2F7D06A790CB3DE1726D6C0C304807A /* ObservableConvertibleType.swift */, - 05B1D3E92EC969DE3979A664DD430938 /* ObservableConvertibleType+Infallible.swift */, - AD4BBD0CD593005DCB8ECA0DEAF875E4 /* ObservableType.swift */, - 5C92449F72A6498CADEADD96E8DC26B9 /* ObservableType+Extensions.swift */, - 5B1E426822FE7CAA3703A573A0281F51 /* ObservableType+PrimitiveSequence.swift */, - EF3C657C177D6F9668EE4037A7757222 /* ObserveOn.swift */, - 01D238240F648EA7EA5C6EBADC6F1FC9 /* ObserverBase.swift */, - 73BD189B4E00DFEAEDCFD2ED648BD5A6 /* ObserverType.swift */, - FEBCF31BB53A7A17C21471A5D93034A1 /* OperationQueueScheduler.swift */, - E4F5EC1C754116115B07C3500772FE8C /* Optional.swift */, - E8DA1971C85095100A5EE182440E27A2 /* Platform.Darwin.swift */, - E2CFE83EA77120219C5AB316D4F80D4D /* Platform.Linux.swift */, - 580691100EB70A5ACF290F17FF4D84F6 /* PrimitiveSequence.swift */, - E1455F488C0E919D87D16AC66AD04C9B /* PrimitiveSequence+Concurrency.swift */, - 04FC9167B623F82556D7A2A397717795 /* PrimitiveSequence+Zip+arity.swift */, - 49053A2947EE78436A16A7AA161489FB /* PriorityQueue.swift */, - 1B4EA8A05D522735104DD7E10130C37B /* Producer.swift */, - 3DA7C83A39038CA118B3CB12DA8280B4 /* PublishSubject.swift */, - 40AA1A10068FA06843F9B866D1548021 /* Queue.swift */, - 164C4FECB95EA7C55B2E7FD4257F2960 /* Range.swift */, - 4A094F4CEA1C525291A1DA9D1530B5BD /* Reactive.swift */, - B99344DA0C98D4C009A4E1AECCDF9459 /* RecursiveLock.swift */, - 3F91D8352B875D35E55568B695E6F368 /* RecursiveScheduler.swift */, - DC59F0F7B131E5DEDB3606A093622755 /* Reduce.swift */, - 433934F1DC56FCF3A68958D44ADBFE90 /* RefCountDisposable.swift */, - ABDF1BFBE98F3670973FDD3336644BFE /* Repeat.swift */, - CAAF2B1865A817D3B34BE0FED63702E8 /* ReplaySubject.swift */, - BBD10C64367048249EB3CCA3A4728FF2 /* RetryWhen.swift */, - 76F771CC8FF3EE94CAD251B016704D2B /* Rx.swift */, - 8EAE8C6CF498E05099DE24B18C3560DD /* RxMutableBox.swift */, - 64475ACC13391CED0E8F1895DFDB3F0E /* Sample.swift */, - CE89B0E952C22E11B64A894D84F8DB83 /* Scan.swift */, - AE5ABD4016BF6AACDBB92D0B961EFB06 /* ScheduledDisposable.swift */, - 37C4D8AE7174BB9A4533DE44B3F11254 /* ScheduledItem.swift */, - EE79DEFA3AD3E0BFEA7198576E92711C /* ScheduledItemType.swift */, - 7CE5A9E99CE471E9A158B19E7DA75F2C /* SchedulerServices+Emulation.swift */, - B403F5A8513C8A0A4EEC0650F17063FB /* SchedulerType.swift */, - 3B1FD911A7C53A5154FB7647CA6EFC70 /* Sequence.swift */, - 2F630C8FCE62218432F68271134AD87F /* SerialDispatchQueueScheduler.swift */, - D8E122838BA266BA2FC542DB6D6CA7FC /* SerialDisposable.swift */, - 0CD8F90D2331966421E416907B75E2FB /* ShareReplayScope.swift */, - B790DFF0E902BF9AE4692A51D0DFC77D /* Single.swift */, - A9B1C90D6A160806DBC532F191101F7B /* SingleAssignmentDisposable.swift */, - 76F5FB9F41D1AC5CB74A20A5F1BCAB11 /* SingleAsync.swift */, - 1C029410FACF307A2410FE68E0C0FBB4 /* Sink.swift */, - 2A4FC0DEB2145AEA826609AB69FE096B /* Skip.swift */, - 094C71050294A146BB656949DAC3B8D6 /* SkipUntil.swift */, - 1C8FFE3A4542A54D17DEA4F0A0654EDE /* SkipWhile.swift */, - 7F1D4C539840D1E04C5FFAAA34A578BC /* StartWith.swift */, - A746BA66E73C424E8AAAA83B4F93FEBB /* SubjectType.swift */, - 50577F76F9EACE83C1F8DB7EEEED065B /* SubscribeOn.swift */, - F425869866B28E3E578068ABC712AA7D /* SubscriptionDisposable.swift */, - 3D9CC311816278CAC539F9972CCF9467 /* SwiftSupport.swift */, - 9FBB552DBF10EEAB3DC15F5C4727EF3D /* Switch.swift */, - 76B335F9C1074A16DC6C649D6F834E5F /* SwitchIfEmpty.swift */, - 22B0FE7857A3947DF75F30B19BA05CBD /* SynchronizedDisposeType.swift */, - 0788BAC406F45A6FC2BF3C22638DAB6C /* SynchronizedOnType.swift */, - 6D432C2ACB4146286EE959013FE5D35A /* SynchronizedUnsubscribeType.swift */, - 0D117580563C690B3B6D37BB9C3A3CEE /* TailRecursiveSink.swift */, - F8DAD8511E44DA440DA3B2E026B7BB11 /* Take.swift */, - 50D8313D8270CA25B860F255BE28A21D /* TakeLast.swift */, - BBC4752255378F245AD160803FB5186D /* TakeWithPredicate.swift */, - F9211F2F8ED853FD416D5AE344C4B2BA /* Throttle.swift */, - 61262011F1BCB5A4C30594748F8200D5 /* Timeout.swift */, - CD572E7B11147DD4A8222AA6C45D15D7 /* Timer.swift */, - B6641FA3ACADA3576F1D309E21FC9447 /* ToArray.swift */, - 30AA8EAC742EC556E68712FF9D8F74D3 /* Using.swift */, - BD1690BEAF90622CE6B9A176205DB662 /* VirtualTimeConverterType.swift */, - 91FDF1CAA6188BB76D061C1A1A292B80 /* VirtualTimeScheduler.swift */, - 64955DB2B6BD9D4B02B1D00905645B96 /* Window.swift */, - EBC3EFE6841863A2FC0E1F280D5E0C18 /* WithLatestFrom.swift */, - 46C3470E48B1D31E09FFD503615D9BB6 /* WithUnretained.swift */, - 3341A7FC89EF4648B74656D78B47F6E2 /* Zip.swift */, - C1C36DF3BE0882BE0A7E5CD447CBEF2B /* Zip+arity.swift */, - BE6F22872D0C90A564CE9655853DB065 /* Zip+Collection.swift */, - 0FEF784F0E246EA0D076701814EF5835 /* Resources */, - 4275D96115AA00916CE1FD010F0ACA4A /* Support Files */, - ); - name = RxSwift; - path = RxSwift; - sourceTree = ""; - }; - 63B6E43D8C8F44FC7FF576C4DACA554F /* Resources */ = { - isa = PBXGroup; - children = ( - B531F280DBAEF942F4FE6A28535EBE76 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 640AC1DE4D70B8B55EFC3769C542ECD1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4B030D7D5D8F6147979F920E9EDD6CB0 /* IQKeyboardReturnManager.modulemap */, - DC56A5F60C8E478C362670C1A1CA774C /* IQKeyboardReturnManager-dummy.m */, - 0A8CCBE60DB666E1F9638503CEF4375A /* IQKeyboardReturnManager-Info.plist */, - AB564C754205CD3493687FA26FF26303 /* IQKeyboardReturnManager-prefix.pch */, - 9BC42012201F6578E940392397D5E5F8 /* IQKeyboardReturnManager-umbrella.h */, - 46A9779C47951687DB62763E0DD55E55 /* IQKeyboardReturnManager.debug.xcconfig */, - EB451DC015F96BFF40FAA681B9B222BD /* IQKeyboardReturnManager.release.xcconfig */, - D810C9646E8A55330552D3614E8D58E3 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */, + C6D1A8F44FA7834D7AE24263F75B667B /* IQKeyboardManagerSwift.modulemap */, + ED2169A587A329F11F373D2C50FD832F /* IQKeyboardManagerSwift-dummy.m */, + B68CF9A7198B8A74CD8CB8FDCDC2B8BC /* IQKeyboardManagerSwift-Info.plist */, + CACCF45640195EFFB1603F926C73CFA3 /* IQKeyboardManagerSwift-prefix.pch */, + 852A16226F156C32AEDD3A6649B83421 /* IQKeyboardManagerSwift-umbrella.h */, + 0A9E8211F029EBA42EEEE2CC2901AFBC /* IQKeyboardManagerSwift.debug.xcconfig */, + 01A603880B3B6DF6C5D80FA552A3A479 /* IQKeyboardManagerSwift.release.xcconfig */, + AF49723DC4972AEC4D4BF0627D0F329A /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/IQKeyboardReturnManager"; + path = "../Target Support Files/IQKeyboardManagerSwift"; sourceTree = ""; }; - 664BC4CA91B624D07D74DDCF1A40A63F /* Support Files */ = { + 2D93BC648B5505323C66BB5B12A8A51B /* IQTextView */ = { isa = PBXGroup; children = ( - 8725CA960AAD21EBB246DB58314B33CB /* ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist */, - 7F0F6780D0E884D4DD549CB1A7C14CCA /* RxCocoa.modulemap */, - 294F945132A96401D8BB6AF1EE6285E1 /* RxCocoa-dummy.m */, - 40AB53811E5578E0AAB0E63564BD139D /* RxCocoa-Info.plist */, - 7A63F0A1DA3294431A4B78D09A498914 /* RxCocoa-prefix.pch */, - 309006C332A939D8335F54EDC23F48A6 /* RxCocoa-umbrella.h */, - 74ED30CF01D00C8356D9811523C8FB36 /* RxCocoa.debug.xcconfig */, - BECB67C4910C284EF8C311E0AF7A187D /* RxCocoa.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/RxCocoa"; - sourceTree = ""; - }; - 689E3BC05147113E2447E7EF5DE6ACB7 /* Core */ = { - isa = PBXGroup; - children = ( - BD4ADD434EFB26616EA32E6982267301 /* CLIColor.h */, - CBCF16C1D8B08EBF7F70BEF64DE8914F /* CLIColor.m */, - E70DEF2275BA1DE435D81CA32E5E7FB6 /* CocoaLumberjack.h */, - 8062C80A2CDAA60C796028D49DDD5B04 /* DDAbstractDatabaseLogger.h */, - 8EF5D80D80065619CED3075AD992270A /* DDAbstractDatabaseLogger.m */, - DC26BBCF312733BE82EE83250C2C92A3 /* DDASLLogCapture.h */, - A9717FEB35D2D2F9A59EC9D64C1C3CAE /* DDASLLogCapture.m */, - 779A45EE4D8A55285225137A022FF947 /* DDASLLogger.h */, - 80A87EEF8234577813707C2B05EA16DC /* DDASLLogger.m */, - 7E04BB4D8359BD5A95AAD8B56BFE57B6 /* DDAssertMacros.h */, - 4C27FEE1D4334F4976A5F419C24858EB /* DDContextFilterLogFormatter.h */, - CAE3B4042285FE77961E90A1CFBB8D5B /* DDContextFilterLogFormatter.m */, - 959731C5E318724CF5BC5D4444F684D1 /* DDContextFilterLogFormatter+Deprecated.h */, - 6EE4B63201F50240A5E467DFB9D59047 /* DDContextFilterLogFormatter+Deprecated.m */, - 33E53F7946D28A4A15CE8D0B0AF85E2C /* DDDispatchQueueLogFormatter.h */, - 5D7C53CFA21D0B65B5810275F9B1B2F4 /* DDDispatchQueueLogFormatter.m */, - 52E0374CED5B77EA1A9488888C3A901E /* DDFileLogger.h */, - CB04A3F038AB5357DF6579E119AC574D /* DDFileLogger.m */, - 02295F2192B333D5143DEA4CAEEBEAEE /* DDFileLogger+Buffering.h */, - 7CCC9D719AB7E41B97FDF91B409B1579 /* DDFileLogger+Buffering.m */, - 1FC105F4B4286E65A9A821818A51A5FB /* DDFileLogger+Internal.h */, - E0DFBFFC4098538E3CF30773ABBD972C /* DDLegacyMacros.h */, - A7B95A9E68D6B1BFC0187CCA4BC88B13 /* DDLog.h */, - 5481AA91905207DFC89661643C0EFD89 /* DDLog.m */, - 8FFDD175562EA9E04F00CB58EBF9A6D7 /* DDLog+LOGV.h */, - 28504FCCD451928D39B76F37745A0206 /* DDLoggerNames.h */, - 8071246364071191EF7E463371025B98 /* DDLoggerNames.m */, - 384D8E218EB66167C5F83EADB6F99879 /* DDLogMacros.h */, - 661FEE91FA7BA21B21CE0C49E062F54B /* DDMultiFormatter.h */, - 3E17ECF721B2913CE636674C037654C6 /* DDMultiFormatter.m */, - A63CABC0DE1372702B329D3C31A8F207 /* DDOSLogger.h */, - 12EE9646A1EE8B5F4F5EABA208A9045D /* DDOSLogger.m */, - A3F2F6B8CB2B809BBF697237FB094086 /* DDTTYLogger.h */, - 82DA9A393789D615C04307DCC37C663F /* DDTTYLogger.m */, - 579600557A8818FE806DB3940CD84BE1 /* Resources */, - ); - name = Core; - sourceTree = ""; - }; - 68A769A6E27CDF42F6D607017780F5D6 /* MJRefresh */ = { - isa = PBXGroup; - children = ( - 22363CA9E38F55410E8D888D617320B3 /* MJRefresh.h */, - 01A81FDDCFBF4399353832963143DC0B /* MJRefreshAutoFooter.h */, - C62129F292FE4AAAD3B0854D292C8412 /* MJRefreshAutoFooter.m */, - E97AC31A9AC2AFCB0774AC162D89D243 /* MJRefreshAutoGifFooter.h */, - 4E2DA31BB5B71385C2113C242EC8B930 /* MJRefreshAutoGifFooter.m */, - 6675C0D3C3E1B217343679BB2C28AF0F /* MJRefreshAutoNormalFooter.h */, - A2333B9AC870862E2D29C8F94BF1F89A /* MJRefreshAutoNormalFooter.m */, - D6C77430014C62956E5C73E7FC9DBD96 /* MJRefreshAutoStateFooter.h */, - 65CE898D2BC17EA493AD82D9EBA94F4E /* MJRefreshAutoStateFooter.m */, - DBD2F1627A06A8B9964D885414ACF5C5 /* MJRefreshBackFooter.h */, - 3B194370CEEC58191F152D61913EAED0 /* MJRefreshBackFooter.m */, - EC5B534FF1A78D5C2AC189C51939C944 /* MJRefreshBackGifFooter.h */, - 4D15A1A1C3D45C5DBC427A6AA27A1645 /* MJRefreshBackGifFooter.m */, - 456E97C9FEB89B1B0A86B831368F12E0 /* MJRefreshBackNormalFooter.h */, - 95FBC83924660AF9550D968A6631AD5A /* MJRefreshBackNormalFooter.m */, - 62F44A98B2397C9F6E5B8CFED65CE453 /* MJRefreshBackStateFooter.h */, - FD486E62809B39EA2FAE17E7977B3C8B /* MJRefreshBackStateFooter.m */, - C59EC7A1C6159115643B175BCBF65033 /* MJRefreshComponent.h */, - FFC1B522A7D474FA4DAA6C62A6BEFB3D /* MJRefreshComponent.m */, - 7A5CF121F3B617D5C4A09D9BDD4D5011 /* MJRefreshConfig.h */, - 2F523AE274FF96B23B5AE0188D46239B /* MJRefreshConfig.m */, - 71DF2431E6CA3D1CAA83A2C349EEFD5D /* MJRefreshConst.h */, - 84F2C96DF432D64FEF247DDD154D10AB /* MJRefreshConst.m */, - EB19BE65B98A0E3ED0F4558833C481CC /* MJRefreshFooter.h */, - C6F4420A9FB2F691DC1A5C98FBAD4EB4 /* MJRefreshFooter.m */, - D86F8CB933244DB4129321F3F634F3F6 /* MJRefreshGifHeader.h */, - 1E168DF5E47CB8A301BCB3993A623844 /* MJRefreshGifHeader.m */, - 7D2727537199FB03475AF85FAF421215 /* MJRefreshHeader.h */, - D09EEE16CE8246F2F7548E87067C664C /* MJRefreshHeader.m */, - 09772666C0AEFD8BB25B0463F2F3934F /* MJRefreshNormalHeader.h */, - E335BCACA8215B4F832B6972CE0B45A4 /* MJRefreshNormalHeader.m */, - BF48EC27DD64ECC464ACB1471E51E2EB /* MJRefreshNormalTrailer.h */, - 9C6F8597CB530F782630CE04406C2C19 /* MJRefreshNormalTrailer.m */, - 64B047E4298457A88A20E186EB03E519 /* MJRefreshStateHeader.h */, - E1470F23022327507435AC5D5E2E0048 /* MJRefreshStateHeader.m */, - 647F3A21C303D1F7A42AF9434D203869 /* MJRefreshStateTrailer.h */, - 3AED09C9DE5A12779617977F55045734 /* MJRefreshStateTrailer.m */, - 1EE98E60968603D5FA63AA72697BD268 /* MJRefreshTrailer.h */, - B68BC94B42D3E5F9AD397EA16BE5DD3A /* MJRefreshTrailer.m */, - 956D08303C546C8822DB0DCBD148CF06 /* NSBundle+MJRefresh.h */, - D3DF20CFF93070089A3F83A2130C4121 /* NSBundle+MJRefresh.m */, - 27E55D0F439ED92B9740583CD3291EC1 /* UICollectionViewLayout+MJRefresh.h */, - 8F9DAB514C5BF79351540417F249261B /* UICollectionViewLayout+MJRefresh.m */, - D27C029A21462E439909BC6A1460A0D3 /* UIScrollView+MJExtension.h */, - ECDCA6BEAFD67BE73F5C9BDE8C1B4D50 /* UIScrollView+MJExtension.m */, - B15D37276FF9888DD3E00DD6F5196E38 /* UIScrollView+MJRefresh.h */, - 62991FC09198149F6AADD3A172559A80 /* UIScrollView+MJRefresh.m */, - 45AEBEE9E3F79E4CDD32A46B927067A9 /* UIView+MJExtension.h */, - D7B4BE25B675D9E62A4F73B632D2FA4E /* UIView+MJExtension.m */, - 1A9319BF8FA8992A9F1BE19B24A88C2B /* Resources */, - EB2539048E7BDC98365D91AB0A1E942E /* Support Files */, - ); - name = MJRefresh; - path = MJRefresh; - sourceTree = ""; - }; - 6B08B74A389EBF7A9C550C3097EC1C9B /* KingfisherWebP */ = { - isa = PBXGroup; - children = ( - D477BCCAE115C780D1F45A92E5F3BE15 /* CGImage+WebP.h */, - 2F6640032ED9681A09BA524C5F3EECC6 /* CGImage+WebP.m */, - 17B31F06E373829C72507245A444656C /* Image+WebP.swift */, - 6AC42ACAF533936A9C6D02A3B360662A /* KingfisherWebP.h */, - 3B254E7B7EBE8EE0B7A1BB6FEDE08103 /* WebPProcessor.swift */, - 045476BD81F43A7E4D35CFDD204660D7 /* WebPSerializer.swift */, - 1478CB67C405C2641DB2E3E2AB7A31B1 /* Support Files */, - ); - name = KingfisherWebP; - path = KingfisherWebP; - sourceTree = ""; - }; - 6B80073677AE375026360827C4C7760C /* RxCocoa */ = { - isa = PBXGroup; - children = ( - 75AB146FA8EACB2D7B8898EDB3F75A16 /* _RX.h */, - A70960A456CC7B878B6BE0A13B941DBE /* _RX.m */, - 88004E06395845BEC822BA9C445BA387 /* _RXDelegateProxy.h */, - 0E299BEB764B9A1DEC98EA66D620ACA5 /* _RXDelegateProxy.m */, - A96C05B637BDA477BEE511BDBAF925FE /* _RXKVOObserver.h */, - C3DC42E9BB7BC32F274FCDB40EC61371 /* _RXKVOObserver.m */, - 0BB2D04A41EC4109E190F3E4A1309236 /* _RXObjCRuntime.h */, - 4606C2115D48BBA83BE7F9CC386AB737 /* _RXObjCRuntime.m */, - 3CC8BB6787C7BA9EA081B229A0B0AB07 /* Bag.swift */, - D862D8002783A98CA4298CD944721078 /* BehaviorRelay+Driver.swift */, - 57ECE45D936904EF5023F94ACECA8520 /* ControlEvent.swift */, - 65D71891D845159664180BE4751EE547 /* ControlEvent+Driver.swift */, - D3CB5318B015CED596B8976F167CB700 /* ControlEvent+Signal.swift */, - DA420F3649A7C98C2CEB39098100D80B /* ControlProperty.swift */, - CAC75994F054E5C98A812D17C7527B6E /* ControlProperty+Driver.swift */, - 1DEC4D97314748FED89C51384E90F8BB /* ControlTarget.swift */, - D16E2301CBCEED8AA04536AFC22CE901 /* DelegateProxy.swift */, - 9E519B15CCB12F735F0129579FF286E3 /* DelegateProxyType.swift */, - 43601022A470E6D853FE16759BDC655E /* DispatchQueue+Extensions.swift */, - 25C66D833F862144506D82243BC20CBC /* Driver.swift */, - 74E963FDBB2A72AA3EB7D60BB0724666 /* Driver+Subscription.swift */, - 9D5ECA710EB149367627C0ECCCD88F67 /* Infallible+Bind.swift */, - FAE83CBDB804481CBE1626600EB92085 /* Infallible+Driver.swift */, - 2D6F3E223EDDA7BB3F9C466B9984E79C /* InfiniteSequence.swift */, - 709352A78011CC2D4BE14AD43BFD8505 /* ItemEvents.swift */, - 6A737601D8BFA149FD0B9B4EA32208D4 /* KVORepresentable.swift */, - 8F139EC6DC9A823AD2A7358AE25AA685 /* KVORepresentable+CoreGraphics.swift */, - 3F8733BFF5C1688EA0DA6F27C8A71E52 /* KVORepresentable+Swift.swift */, - 2A33292F139F4D03763C451D174D6627 /* NotificationCenter+Rx.swift */, - FCD3A21323E36012C189C0952F31DAE8 /* NSButton+Rx.swift */, - F31120DF2E5C142AB737BF64F301D994 /* NSControl+Rx.swift */, - 22ADD96CD00B989B7126ACA192406A98 /* NSObject+Rx.swift */, - 9EB164560DE3677F1DA177D4DC5B5447 /* NSObject+Rx+KVORepresentable.swift */, - DF9583AFB17055B420C08DE15E843EE4 /* NSObject+Rx+RawRepresentable.swift */, - 07082B8A4C4290E5D4C81099E14B1045 /* NSSlider+Rx.swift */, - 160A8AF75E876201D8C20CE7C39BEC82 /* NSTextField+Rx.swift */, - 3C30CD98BDFEAFA1281C881CB316CD95 /* NSTextStorage+Rx.swift */, - 5E2D9445ABDD01E2EAF6BCF2874BCAB2 /* NSTextView+Rx.swift */, - 0FD8E3AD2D74BE680D34541310F348A2 /* NSView+Rx.swift */, - AF349643C3A63B3C5D763016F77EF7F5 /* Observable+Bind.swift */, - E535975A1E831BDA5977960E97506533 /* ObservableConvertibleType+Driver.swift */, - 896804512E5A54D3F12A3A1AE837AD8B /* ObservableConvertibleType+SharedSequence.swift */, - F3898027613E6C50E0078414D3DF1BE7 /* ObservableConvertibleType+Signal.swift */, - C2E26E78C920199D48C95A6E28FC1791 /* Platform.Darwin.swift */, - 40B3777A774404758AB6FCB677DE0654 /* Platform.Linux.swift */, - C9DCB3383235EDBA4F3C971A96B27409 /* PriorityQueue.swift */, - 40F6DF23FC61D59800559E8381531BC1 /* PublishRelay+Signal.swift */, - F02E19AB613C5B9E4A3BC77C82DD4D93 /* Queue.swift */, - 21AA7EE52A3DAD218EF3EAB7703979AB /* RecursiveLock.swift */, - E33CB738E9BEF4C5E064BEB48D7C52D1 /* RxCocoa.h */, - F1B1B6D7D2E92F184F846249072A1E0F /* RxCocoa.swift */, - 8A5BAB2182C418AA259E530EC867EDDB /* RxCocoaObjCRuntimeError+Extensions.swift */, - 631D1F2FC1CAC25B4FC1DC7C9550FC6B /* RxCocoaRuntime.h */, - 5F09681D932FC2A10A110AE909ACFCC0 /* RxCollectionViewDataSourcePrefetchingProxy.swift */, - 01AEFB1EB3A914C86593584A77C0FA77 /* RxCollectionViewDataSourceProxy.swift */, - 7D50688D55F92F226672A561EA59EFC4 /* RxCollectionViewDataSourceType.swift */, - 6E5634D8FC150EAF451F26D4D2ACDD62 /* RxCollectionViewDelegateProxy.swift */, - E030B9BDBBA82F74D1F392D96C6B1A31 /* RxCollectionViewReactiveArrayDataSource.swift */, - 9CCA7A792E4A6A2B6109301CC66A69A9 /* RxNavigationControllerDelegateProxy.swift */, - A2AAA811CAAF000CD5110DE8E1FF8B85 /* RxPickerViewAdapter.swift */, - 37195C83073D00C327F9B6C8E49E6096 /* RxPickerViewDataSourceProxy.swift */, - 08050C89BDBFDA62A3F6EF30F6743FD6 /* RxPickerViewDataSourceType.swift */, - 2C6E0BBACCC2ABD7E1753510C4D994B7 /* RxPickerViewDelegateProxy.swift */, - 1FD460C65311A9B6AD426570D30A2EDE /* RxScrollViewDelegateProxy.swift */, - C508E91145FD5398716837106BE87EED /* RxSearchBarDelegateProxy.swift */, - 2778EBCEEC14C4833D44342D5C11AD81 /* RxSearchControllerDelegateProxy.swift */, - 7D915E50F6FCDF1F827027D737E68CB8 /* RxTabBarControllerDelegateProxy.swift */, - C88A87AA6AF553A2EB67FF48CC974717 /* RxTabBarDelegateProxy.swift */, - EE9E03A2577727310935A5A9E4A2B30B /* RxTableViewDataSourcePrefetchingProxy.swift */, - C78AE96DEEB3AE3D220D176418FF4438 /* RxTableViewDataSourceProxy.swift */, - E717BD781EB091185A79C355C520A67A /* RxTableViewDataSourceType.swift */, - EC839CBDE62FBDF1FB0A9B6E583E159C /* RxTableViewDelegateProxy.swift */, - CB06F3844E78B224186730DD60CA0865 /* RxTableViewReactiveArrayDataSource.swift */, - 059A00052A1FE8803E236797E5854769 /* RxTarget.swift */, - A28212BF67021DCC567895F90F42F3B3 /* RxTextStorageDelegateProxy.swift */, - 93EB8108EBFD809D4BA7DD0D01AC8F2F /* RxTextViewDelegateProxy.swift */, - E5000C74964362967707C8378D889444 /* RxWKNavigationDelegateProxy.swift */, - 92F5E3708E512F20F2F3931DF742408D /* SchedulerType+SharedSequence.swift */, - 38CA5BA20DA63D05E0C03D744AEB70E8 /* SectionedViewDataSourceType.swift */, - 5437C08DBD79B497818F7354E847A2DD /* SharedSequence.swift */, - 006D228E2E6F8BAA07DB7CE17AB8A953 /* SharedSequence+Concurrency.swift */, - 7AD087C00AE0A2CB66E870C10681C588 /* SharedSequence+Operators.swift */, - 1E76BF6D7E4423019EBAB88941DBFA91 /* SharedSequence+Operators+arity.swift */, - 8217A6F4149F4322FC3BFDAF3B20D784 /* Signal.swift */, - D63215EDBB31AA1C7927001384586CCD /* Signal+Subscription.swift */, - E37A739569DBBD3BECE189F4986936E1 /* TextInput.swift */, - 4E167799FA0AC9BA04FEF298D51921F2 /* UIActivityIndicatorView+Rx.swift */, - B5C77BBEF52E60A948A676A9BDB60109 /* UIApplication+Rx.swift */, - 08B73798103120C7A3AF0D936520F1C0 /* UIBarButtonItem+Rx.swift */, - 2ADF97EACA948B2C7006B53AEB1FEF8E /* UIButton+Rx.swift */, - E4C25CF77476705A8727ED57006FDCA2 /* UICollectionView+Rx.swift */, - F4F73FE9E51AC36245FC54A1CFE8E872 /* UIControl+Rx.swift */, - 6ADFC7217C94A6A33AADBE2C889E258A /* UIDatePicker+Rx.swift */, - 3371BF35BC76F7D9FEB483B31F4A8082 /* UIGestureRecognizer+Rx.swift */, - 41249D28A0A1532043F7069D1A9E3DEB /* UINavigationController+Rx.swift */, - 27137F8A01D16088D332E2DBCE90D361 /* UIPickerView+Rx.swift */, - 356B08F72A46EBDA220703321CE1814C /* UIRefreshControl+Rx.swift */, - BA95F4A4BFFFE59FACF449B9D2D50CE3 /* UIScrollView+Rx.swift */, - D2596C6DAC2A8B615E67D865765BA5EB /* UISearchBar+Rx.swift */, - 763E77216C850D70057D326B4A6BA473 /* UISearchController+Rx.swift */, - 0A86E5B1317FA3F4A9D3EC10B4842235 /* UISegmentedControl+Rx.swift */, - 2D48CB3120F622B1DC4E9B3AF51D0A7F /* UISlider+Rx.swift */, - E66C33D1549606616E2570F9CA08627C /* UIStepper+Rx.swift */, - 83CB43A9B03D8918FD5DE9A913C744DE /* UISwitch+Rx.swift */, - C08DCD50DDA4F71C414AA7077CC96A96 /* UITabBar+Rx.swift */, - 0B4B93F368A61449309541689291E7CE /* UITabBarController+Rx.swift */, - F3911F180E1B0182AC1A84D0FE3E4A4B /* UITableView+Rx.swift */, - 30EC231840F6732A56ACD926EEC9A53D /* UITextField+Rx.swift */, - 2DB8DC9169D71A0D31807029AF82F168 /* UITextView+Rx.swift */, - B9813C135DE125969EAF42F73CC20580 /* URLSession+Rx.swift */, - 4FD48EA2FBFB0058F98D944DAAEBE7C6 /* WKWebView+Rx.swift */, - CAAC540835A8357860D729CE16909F61 /* Resources */, - 664BC4CA91B624D07D74DDCF1A40A63F /* Support Files */, - ); - name = RxCocoa; - path = RxCocoa; - sourceTree = ""; - }; - 6F410325126C659B7B795978916FCE77 /* ZXSDK */ = { - isa = PBXGroup; - children = ( - 4837C1DDFDECF77E1AAA1C217E746E6C /* Frameworks */, - 4488B0D9649AF3F5F70FA1186039A325 /* Support Files */, - ); - name = ZXSDK; - path = ZXSDK; - sourceTree = ""; - }; - 723AA820749703E5B4ECDBB6CADA36D4 /* Resources */ = { - isa = PBXGroup; - children = ( - 02DBF5316B8E0D522ACE204CE91F2E5C /* HXPHPicker.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 72B22C1993413CD79F77C6ECE7A6B83B /* Support Files */ = { - isa = PBXGroup; - children = ( - 8197324FD9D31411E29F1E332EA7C8CB /* Kingfisher.modulemap */, - AE5897611BC8BD2C214F2E90A0320833 /* Kingfisher-dummy.m */, - 63708D0683405A5887D1A15D39151805 /* Kingfisher-Info.plist */, - FA40714E188DAF7577D23D2408907AA0 /* Kingfisher-prefix.pch */, - F579D560A7BAEC27AA799B2A5CD1BBD3 /* Kingfisher-umbrella.h */, - D42F775E38DE1A545F3B25BD8738ACF2 /* Kingfisher.debug.xcconfig */, - 3BBC561B29ED22D84456A56B25487B1A /* Kingfisher.release.xcconfig */, - C858A960686949F3A01BB1D7772ED340 /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/Kingfisher"; - sourceTree = ""; - }; - 77CF13DDDF26C9E4E6E4540F1931B8F2 /* Support Files */ = { - isa = PBXGroup; - children = ( - BB941175FCDE56397887345BB6BCE206 /* SwiftDate.modulemap */, - 10714B805F30205FBFC798B49F7ED8AA /* SwiftDate-dummy.m */, - 2D91FA48911FBC42CEFF73EEF6FBC3B2 /* SwiftDate-Info.plist */, - A8386269616E7CE007CD245147A27BFC /* SwiftDate-prefix.pch */, - AEA189D9B360430E513572847E80BFA3 /* SwiftDate-umbrella.h */, - 629DDBA66E3F48E13DC130A55605CE82 /* SwiftDate.debug.xcconfig */, - 371C690B36365A3FC898E515449C2217 /* SwiftDate.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SwiftDate"; - sourceTree = ""; - }; - 78842ADE4139DB0C6164E6B45B78B68C /* libwebp */ = { - isa = PBXGroup; - children = ( - 88D6000676162DC4F9A3C2561824054A /* demux */, - 183806F986FA7C7B9F4550202167A862 /* mux */, - C151664422ED2B379152732AAA6C657A /* sharpyuv */, - 4F89238B91B8EC63E038E27A33985BD5 /* Support Files */, - 0458EA2C95930A3C12D6D36B3393A7B6 /* webp */, - ); - name = libwebp; - path = libwebp; - sourceTree = ""; - }; - 7934D0783F27321D51283B05E5DE6025 /* Core */ = { - isa = PBXGroup; - children = ( - 3DC2D83167741CC204B2EC3E267BCF7E /* AppearanceStyle.swift */, - 7736D9652CE71234ABED55D62ADBD35F /* AssetManager.swift */, - 0FA7A535E34304FEB795FCB634375C02 /* AssetManager+Asset.swift */, - 87C0F85799A80C00E166826442DB6D27 /* AssetManager+AssetCollection.swift */, - 51F0C1F7C00691BEF0CFA4F31C54FF3A /* AssetManager+Authorization.swift */, - 11BF0F782E6A624EBD13466CED287C49 /* AssetManager+AVAsset.swift */, - E42FFE14BC42749A348DCFC03CFCB2BF /* AssetManager+AVAssetExportSession.swift */, - 428BD599C962D9E479FAFFBC60859CF5 /* AssetManager+Image.swift */, - 9F2F63F0B03B6BFA25E6C141689BD633 /* AssetManager+ImageData.swift */, - 20A1B6CDC1CCF4DEFD740A6FF78D001B /* AssetManager+ImageURL.swift */, - 6DAF66AF9A10C8CE260ACFC74496E828 /* AssetManager+LivePhoto.swift */, - 18BD4A98815CF19CEF256B8951CB1B21 /* AssetManager+LivePhotoURL.swift */, - 4A2B506E2416B5C91B799DFE0B69F278 /* AssetManager+VideoURL.swift */, - 3189E630103A74A0218C59894B1E16A8 /* BaseConfiguration.swift */, - B05BAD2FED8BCAA8BC346D23A2E4C934 /* BaseViewController.swift */, - D867D1C31B709009EFE974B0553F9D9D /* Core+Bundle.swift */, - 33ED4054AFA9102DE2DFF8413FBF3767 /* Core+CALayer.swift */, - 0B622AEF7B6E9C360D0C962D5A346AF5 /* Core+Data.swift */, - 00666232685340897FBF612CDC76B348 /* Core+Dictionary.swift */, - 89A5CE11CC57889F540004F21A563342 /* Core+DispatchQueue.swift */, - 2109F7F661446DA12643DCACFF4078C0 /* Core+PHAsset.swift */, - 89D6F4F353F9668ECBCBFBCFF03BAB81 /* Core+PHAssetCollection.swift */, - 113A6CE4C212D09BCD02D88EBC5EACC6 /* Core+String.swift */, - F26CC0BC63B38EDBC22273E9C0D67DF2 /* Core+UIColor.swift */, - 67BB983FB1DF61CE58E767CA5AACA670 /* Core+UIDevice.swift */, - 7C262EC7FE9B7C5853A9BF656E7B4C31 /* Core+UIFont.swift */, - C5E097351E3CA0442F19440EBE19E5E6 /* Core+UIImage.swift */, - C4D0E6975AA68BF82B50479B31188714 /* Core+UIImageView.swift */, - CCA5382951AE75A98792835CE4E99624 /* Core+UIView.swift */, - 7D32944BBFF391634E35F8A5B7F4936F /* Core+URL.swift */, - B8EA635F6E6ACFAAD23856120F08C7CD /* CustomLanguage.swift */, - 9949D2F039C26335E06B4DEDB869C47F /* HXPHPicker.swift */, - BB8B31FB69DD6EE93331C2441B9893E8 /* ImageContentType.swift */, - C30ECEB47A30F096C7A11DAFC977D503 /* LanguageType.swift */, - 9C247ABAB37F0C054419181BFC3D3E7E /* LivePhotoError.swift */, - 6D82AA88B834BBF20D1151E382DE67AF /* PhotoError.swift */, - 53EE3FDC6BBE60EB6D5FD6C0201E710A /* PhotoManager.swift */, - 0F8918760B6BA08970F8004ED7AA6FE4 /* PhotoManager+Audio.swift */, - A41EF41F02941532EE13C414E23DEEDD /* PhotoManager+Download.swift */, - E8223C1F95FE293B35A7BBCB5B6B8125 /* PhotoManager+Language.swift */, - B4C4498E7B172BF948777253F5FFCC9A /* PhotoPanGestureRecognizer.swift */, - FE0F2F0A1C318B0FFFF4DFE36D1A69C5 /* PhotoTools.swift */, - 606B36089216BA9AAA95CC158D76FE49 /* PhotoTools+File.swift */, - 6A87581B2556DBA6F40B051DD8E340A1 /* ProgressHUD.swift */, - 4559C34E42D4D2C64A174AA002B8056D /* ProgressImageView.swift */, - F8806095ACB64222B262665284764BEA /* SelectBoxConfiguration.swift */, - F45B5F359E982E067E2109249A8B0784 /* SelectBoxView.swift */, - 0B237C461DD75E2FE67F4D105C480806 /* VideoPlayerView.swift */, - 723AA820749703E5B4ECDBB6CADA36D4 /* Resources */, - ); - name = Core; - sourceTree = ""; - }; - 7A5773BE75C2857E4292FEA4F45F9E2D /* AMapFoundation */ = { - isa = PBXGroup; - children = ( - C4E134D68D9A3EA6BAA45CBBF86E6282 /* AMapFoundationConst.h */, - 9D25EE96F04C43612DF2FA22177EB0C8 /* AMapFoundationKit.h */, - FB5201BBE183A50F11FA42CA44512700 /* AMapFoundationVersion.h */, - A30602900EAAC1E60D74FCEEB0960916 /* AMapServices.h */, - C65141CFE1CE7172EBF4F892518DA710 /* AMapURLSearch.h */, - B325C9D59F8810A27BA690853116611E /* AMapURLSearchConfig.h */, - 89FEA5369C0F85B6777E7EBA3581AD4F /* AMapURLSearchType.h */, - 22F84748D6A7D4D5AC3266CA17FFD1F5 /* AMapUtility.h */, - C3FE2D90C8E110F594860B41820D7378 /* Frameworks */, - BDA6A1204DF782A42F3B6D09ADE73685 /* Support Files */, - ); - name = AMapFoundation; - path = AMapFoundation; - sourceTree = ""; - }; - 7B1FDE28B5BF6553429E7FC2CFAB3163 /* Support Files */ = { - isa = PBXGroup; - children = ( - E1242A1113F84D2391549B66530C0607 /* SDCycleScrollView.modulemap */, - 62416DA404529EE5F12AC66820968A42 /* SDCycleScrollView-dummy.m */, - AAF22B492F23B4CFC20A5E24D1E91905 /* SDCycleScrollView-Info.plist */, - F2FE218377A0EBA6929F45324DA24C6E /* SDCycleScrollView-prefix.pch */, - 0E058257A7D0F02E7FB8985089EEC6E1 /* SDCycleScrollView-umbrella.h */, - 633767D8A7162E8C39BFE4FE885F0056 /* SDCycleScrollView.debug.xcconfig */, - 260BDB88A25661D414D0FB98126D2229 /* SDCycleScrollView.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SDCycleScrollView"; - sourceTree = ""; - }; - 81191C65D2D480F4497CBD765FC7846C /* OpenIMSDKCore */ = { - isa = PBXGroup; - children = ( - FB8F2C6262E7A6E43D78BD8E5D73242E /* Frameworks */, - AFBCE2F3AA1D1F90131DD2F8C66B49FB /* Support Files */, - ); - name = OpenIMSDKCore; - path = OpenIMSDKCore; - sourceTree = ""; - }; - 82E03FC2739088B6695017EFFF339F6D /* Support Files */ = { - isa = PBXGroup; - children = ( - BFCCD0770B0B62C74DEABE252BBED5F0 /* Popover.modulemap */, - B555B1099D99D8615619FD3085B9D500 /* Popover-dummy.m */, - 9A866A6512ACC69E4827C91B2C8E59B7 /* Popover-Info.plist */, - 1DB22D2FDDF12C37CFAA13FB3428AEAA /* Popover-prefix.pch */, - 67C09087FD721CE9595DAF45BC6B7889 /* Popover-umbrella.h */, - 0791E218AD38A3E5DB7DCC82469F2282 /* Popover.debug.xcconfig */, - B707AC802004219EE1A38C0A808B3868 /* Popover.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Popover"; - sourceTree = ""; - }; - 82F85F900EBAB66976B458FBAC8F5FCA /* IQKeyboardToolbar */ = { - isa = PBXGroup; - children = ( - 43DDE9F3971026A744DF261023296BCF /* Core */, - E5B87255883FF2491827C25D20AA6E24 /* Placeholderable */, - 0CCE8BF40D7BE148BB02E87A8F5C70D2 /* Resources */, - 58AEBDEE0FD26AA73906FD316397D0D1 /* Support Files */, - ); - name = IQKeyboardToolbar; - path = IQKeyboardToolbar; - sourceTree = ""; - }; - 83B29528EBBC1B3DADDA36F2BF191859 /* Support Files */ = { - isa = PBXGroup; - children = ( - B7D3C9EA9DED95F21EDE81DBA946AD04 /* IQKeyboardNotification.modulemap */, - 17C56352D67E8BCA827335C748E6BF1E /* IQKeyboardNotification-dummy.m */, - BA806823EA6D7514C7FEFBA0844C8247 /* IQKeyboardNotification-Info.plist */, - 2C321D034B37C49F688AD559C13A62F5 /* IQKeyboardNotification-prefix.pch */, - 14ECA25FAC580BEAD24A7591921B4905 /* IQKeyboardNotification-umbrella.h */, - 92F1C3BA22F62F1CFB1DE61364BA3A00 /* IQKeyboardNotification.debug.xcconfig */, - 4ED0F1D4E099A8871122580C0CEA500F /* IQKeyboardNotification.release.xcconfig */, - 48A8FEED501EFD1067CE5D1499B5B075 /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardNotification"; - sourceTree = ""; - }; - 840CD23F46524B69F4F4B6D47FB84919 /* IQTextView */ = { - isa = PBXGroup; - children = ( - 13248AF2B1E920AB3B30184BB73FE587 /* IQTextView.swift */, - A67326A62BBF7678EA70AC35CB159929 /* IQTextView+Placeholderable.swift */, - 2E7EB23330599E9FB94E7FBFF85F9A04 /* Resources */, - B2401A54F181E6C8E86B7C97C40BD5F9 /* Support Files */, + BF134D80E9619348A65BBB751BB70BBF /* IQTextView.swift */, + 71CEC01D5366F1D7433565AE23908319 /* IQTextView+Placeholderable.swift */, + 601F16286C6703F7EABF8CB64188C787 /* Resources */, + D2E9E39DE97ED52C6B25E9FDD6EE9957 /* Support Files */, ); name = IQTextView; path = IQTextView; sourceTree = ""; }; - 875EAE81E1A431FDF6BB486F0E3129A2 /* Core */ = { + 316732A829FFB7D66D03CE6DFE701470 /* HXPHPicker */ = { isa = PBXGroup; children = ( - 6BF72E2AF2147FA1AAC4682FE8CD2024 /* IQActiveConfiguration.swift */, - 655F16E86C5BE41F3D3568111B89F78B /* IQKeyboardManager.swift */, - BE7291A0D9ED471F9754D1FD9D58F0F4 /* IQKeyboardManager+ActiveConfiguration.swift */, - AE2806152713FE09C2CB6AA76C33BD73 /* IQKeyboardManager+Debug.swift */, - 6B5A3802C70E5FFA3157414C2F2DD188 /* IQKeyboardManager+Deprecated.swift */, - EF44BFBC7F4569C26187AEBF6FB9202E /* IQKeyboardManager+Internal.swift */, - EFAFFED0F09E8D30612FFC64F749D3BA /* IQKeyboardManager+Position.swift */, - F1CBC6FE30779E662A20B0F6FB6BF989 /* IQRootControllerConfiguration.swift */, - 34C85D236A09B50BBAE08B7FB20C1142 /* IQScrollViewConfiguration.swift */, - AB3AF5015C0B68FB788983C3D31F518B /* UICollectionView+IndexPaths.swift */, - CB1D91FC1AD6D99D86E78F301E3C0948 /* UIScrollView+IQKeyboardManagerExtension.swift */, - 0A728065D0A8D6804B2901F182770F32 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */, - AADD4B026F6027AF572D51A25BD61D10 /* UITableView+IndexPaths.swift */, - F6938529B4FFE728CE76E763A02DB60F /* UIView+IQKeyboardManagerExtension.swift */, - 81B6E91C3E6BDDC7B05E43C0052936B6 /* UIView+IQKeyboardManagerExtensionObjc.swift */, - F458BC861920FABA639310941239FD72 /* UIView+Parent.swift */, - 2C298B2A388307DD5D979FAA27BF366A /* UIView+ParentObjc.swift */, - EB04F626FFD85B894E25E3C7C4001505 /* UIViewController+ParentContainer.swift */, - ); - name = Core; - sourceTree = ""; - }; - 88D6000676162DC4F9A3C2561824054A /* demux */ = { - isa = PBXGroup; - children = ( - 223F157AF2FE64BA22ABDDB993DFB6C2 /* anim_decode.c */, - 9FB522F4C7C47BA527C5E509E78B4350 /* demux.c */, - B9394C0414AC1F9427C4E7C0BC1863ED /* demux.h */, - ); - name = demux; - sourceTree = ""; - }; - 8A848EB67D0A89E7BC70198D9A75F857 /* IQKeyboardToolbarManager */ = { - isa = PBXGroup; - children = ( - 5AED70B7B68386C79189CD6256E14B99 /* Array+Sort.swift */, - ADE1736DF811673FB2909732A3F3BF40 /* IQDeepResponderContainerView.swift */, - C218ADBB9ED9BCB5794960F550704D52 /* IQKeyboardToolbarConfiguration.swift */, - 1D587347C55CFBF02E2405496E4C19F1 /* IQKeyboardToolbarConstants.swift */, - 66FE82E0510BC72FAD7C76AD60B9E90D /* IQKeyboardToolbarManager.swift */, - 1413AD37773953D3ABCC8A24322AAB02 /* IQKeyboardToolbarManager+Action.swift */, - 67E2AB0EB78B87ACFCF842238DC339AC /* IQKeyboardToolbarManager+Debug.swift */, - C70AB659BC6BC3C3EF51AB32BBF7BD2E /* IQKeyboardToolbarManager+Deprecated.swift */, - 963E16D80DDA6E3F39317FBEEF4A019F /* IQKeyboardToolbarManager+Internal.swift */, - A2E05EB2A16264EE344D5C57B626E0E7 /* IQKeyboardToolbarManager+Toolbar.swift */, - 0FDFCFAED54B1A668030FBB5DAA027B8 /* UIView+Responders.swift */, - 1E3A4D823011F833B4CE1C1AB3DC381E /* UIView+RespondersObjc.swift */, - 63B6E43D8C8F44FC7FF576C4DACA554F /* Resources */, - 0B9B2957C01E56FACDD895263C81308B /* Support Files */, - ); - name = IQKeyboardToolbarManager; - path = IQKeyboardToolbarManager; - sourceTree = ""; - }; - 8C5931FD55311A7709205B34F5C00512 /* SDWebImage */ = { - isa = PBXGroup; - children = ( - FDB60DA6F3D82B35536E04AFE17973A0 /* Core */, - D071B5073D0C49B845F36464A79AE10B /* Support Files */, - ); - name = SDWebImage; - path = SDWebImage; - sourceTree = ""; - }; - 8C838B4F0C1E0AF68E1BBEB1D7486F72 /* Resources */ = { - isa = PBXGroup; - children = ( - A34655F0A811AB3A87F04E2474CB58B5 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 8D0F34B7C644039F8828C76FE8328485 /* HXPHPicker */ = { - isa = PBXGroup; - children = ( - 7934D0783F27321D51283B05E5DE6025 /* Core */, - 23EA7C5FAF45429CC662159E2C59682A /* Editor */, - 1E19CB73CDC36544434FB01B82AFCA32 /* Picker */, - CE176B7E2EB2BDBA32DEDE56D142CC88 /* Support Files */, + AC95595F0BBFBCEB77EC41215C348171 /* Core */, + CA618CE6A8D9F9BD2214C05A9D85041C /* Editor */, + B8671D481CDD6ADC74C2ACA6CB50CB63 /* Picker */, + E470EDB4DA4C218EBB9CC4297465F767 /* Support Files */, ); name = HXPHPicker; path = HXPHPicker; sourceTree = ""; }; - 8D190C4888D13FCFDBA0427CA2C62633 /* Support Files */ = { + 31BCA67516E8A034FC190F8597D88B81 /* Support Files */ = { isa = PBXGroup; children = ( - 6071B34947E92A5B38EF5EF37915B1E7 /* ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist */, - 72CC42138666BE5E04A9735B223C6772 /* SwiftyJSON.modulemap */, - 28028200CF5288C6709AF472B07A3E73 /* SwiftyJSON-dummy.m */, - 5948948C27B1B8C08ABE3DB6DCCEE651 /* SwiftyJSON-Info.plist */, - 35ADFB58A321E02490B12260E9A6DC63 /* SwiftyJSON-prefix.pch */, - BAFFADB6718043647FA05D94FD3860E7 /* SwiftyJSON-umbrella.h */, - B0676AB10DF7580007C901BF2C8B01B8 /* SwiftyJSON.debug.xcconfig */, - AEA1F78F7416BA70657450BF20259B85 /* SwiftyJSON.release.xcconfig */, + 918ECADF5BF52E258972BF447F8A10EF /* IQKeyboardCore.modulemap */, + 1B20E54E915DD05D6DC0A202B6A746A5 /* IQKeyboardCore-dummy.m */, + 50E385227AF12ECBFB0513F6D086049E /* IQKeyboardCore-Info.plist */, + 90E2AEDE3DA3F9A2A9D53BFD34D9D235 /* IQKeyboardCore-prefix.pch */, + 39F33078ADCADC74D51595069A4B4F27 /* IQKeyboardCore-umbrella.h */, + 2854C80D6EF7D3B7B82AD9C4ADC0FD64 /* IQKeyboardCore.debug.xcconfig */, + F17AA9FF2A03983AFAF7969998113A73 /* IQKeyboardCore.release.xcconfig */, + 2AA67AD732C1703650AD66B7B46B75A3 /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/SwiftyJSON"; + path = "../Target Support Files/IQKeyboardCore"; sourceTree = ""; }; - 8DD960C6BAF6200C0F8AC067AF5A4C83 /* GYSDK */ = { + 31ECF39721A14456865E5D0F7524FAF9 /* Core */ = { isa = PBXGroup; children = ( - D98C3FC39CA3292D4531500A177AF707 /* Frameworks */, - B799DDFC3EE7C36C48509EDC93AC177D /* Support Files */, + B576EDF7A86415CCC3E2A8821457526B /* AccessTokenPlugin.swift */, + 365A6611E9FB12240170EE665EF48284 /* AnyEncodable.swift */, + 1C469C15C143DCBCAD26D2F80E2A8BAD /* Atomic.swift */, + CF3AD82EC39778DB621B9AC73985F627 /* Cancellable.swift */, + B3C89B6D5952E42BDB087357BEDAAA88 /* CredentialsPlugin.swift */, + 41A4DBD37D4C7EDFBB298F5BFE487E1C /* Endpoint.swift */, + 18E56EA95B0B63455E9FD121268B2EAB /* Image.swift */, + AD78BC3B9444626883C4206C4B606F25 /* Moya+Alamofire.swift */, + 596895B99E7E27AAF130D98206857EC7 /* MoyaError.swift */, + 0E3F8640A2B68814B6E3049FE1466EB3 /* MoyaProvider.swift */, + 74EF885F453A96CCB8817B3E6A482055 /* MoyaProvider+Defaults.swift */, + 154A80EEAD6466B904FDDB7938F4AB13 /* MoyaProvider+Internal.swift */, + 2D5E0EC291F4571118276A49CD3A886D /* MultipartFormData.swift */, + C1AF925CB18B9B0B703C6F5CA5025160 /* MultiTarget.swift */, + 1B3CE22D40D563D3716D2B637C30D428 /* NetworkActivityPlugin.swift */, + 9B46A5D19E97AE6984F675B88762077E /* NetworkLoggerPlugin.swift */, + 92EFF684FDFA11D0956B96DD55C639A3 /* Plugin.swift */, + E6D3BE472B6444F8EDCE6D9376908C0A /* RequestTypeWrapper.swift */, + 7F7C4E38E4607F8008E79A6434ADB1C0 /* Response.swift */, + B583A8D3B15E63BC12FB32D1F96844FC /* TargetType.swift */, + 263E0995DC5FBCEC84D7B86C4F00115D /* Task.swift */, + 6CA7E77AA99A3B25E82ACB1C03DE1AFF /* URL+Moya.swift */, + 392F545C5B87288F9B4FD5543E7ED91D /* URLRequest+Encoding.swift */, + 75859D611A6F089B1FDC29D1AF73E27F /* ValidationType.swift */, ); - name = GYSDK; - path = GYSDK; + name = Core; + sourceTree = ""; + }; + 3354CCF305F029048F29E81C8CBCEF66 /* Core */ = { + isa = PBXGroup; + children = ( + 6BCE8FAF2BD0D9BBF46A9D702C7C1CC5 /* CocoaMQTT.swift */, + D6153E9D8FB50D6577852480096F689B /* CocoaMQTT5.swift */, + 500DC6BC616ED25251A50A86C36870BA /* CocoaMQTT5Message.swift */, + 19E88545F1377810D5192228482A9C6B /* CocoaMQTTDeliver.swift */, + A8BEB8AC75C51F307499646F3B4C0DF2 /* CocoaMQTTLogger.swift */, + F078664F20916DBD98CD43B1695DBAD0 /* CocoaMQTTMessage.swift */, + 8623EF65FEC6BFD426123019DFB996B6 /* CocoaMQTTProperty.swift */, + 010FD8BA73DAC958194818B68AFCF699 /* CocoaMQTTReader.swift */, + FE18999B476D598F337EE1381FA8246C /* CocoaMQTTReasonCode.swift */, + 603CC2BA472D5C652471FA248F2568B8 /* CocoaMQTTSocket.swift */, + 4CE1D44D51C8A45FD369FE3952E1D2B2 /* CocoaMQTTStorage.swift */, + 854D2B733043533D0537C10C8D8EE81C /* CocoaMQTTTimer.swift */, + DBB464629EFF24FC46445D5425B39D7E /* CocoaMQTTTypes.swift */, + B4A3C63C58D795A774EE240C747B81E6 /* ConcurrentAtomic.swift */, + FA032BABA117E2462E78153FD9CBD9F0 /* Frame.swift */, + 550003481FF70BAFA7B39AADB487E760 /* FrameAuth.swift */, + 3353B782D463177D03DE0F388380825C /* FrameConnAck.swift */, + B35298093BE07EC18C02E752D449371D /* FrameConnect.swift */, + 5C4C77EBB2493FB7A93A2D0FB646C569 /* FrameDisconnect.swift */, + 30D9D5041CB0B73D214303A39FE8ADAB /* FramePingReq.swift */, + 4FE9017C4BF1888D86038C0AADE59478 /* FramePingResp.swift */, + F0E50899C0C21D11C1827375725D6F78 /* FramePubAck.swift */, + C093540FF30E4F3FC0F5546E3FA8958C /* FramePubComp.swift */, + 43A35A16C9716924B97B9D53A78A0391 /* FramePublish.swift */, + 57AFF0686BCCD3B8F8E64BF3694786B1 /* FramePubRec.swift */, + 17D15555C12B0AD21FDDB995C7FF080C /* FramePubRel.swift */, + 9A29D87B1DD0597A8C888EE5B31EB730 /* FrameSubAck.swift */, + 66C8F6BD5C4F963CFF317253AB78D288 /* FrameSubscribe.swift */, + 7E4E9F77E3B93C448A645B6A373107EF /* FrameUnsubAck.swift */, + 2CC755210EE7CF0DEB9FD2F3DBDE1873 /* FrameUnsubscribe.swift */, + E2DF4020FB18B7407F948B895C5A055E /* MqttAuthProperties.swift */, + 322E4310DE8158FCAE06CF313CB5D549 /* MqttConnectProperties.swift */, + A85C1FB7E970597CDEA090223148461D /* MqttDecodeConnAck.swift */, + 6C8171B585A7AB98F4DAC387B9569C8D /* MqttDecodePubAck.swift */, + 7A8F1EA5A5A4DAA6EBB99FAC4B0D994C /* MqttDecodePubComp.swift */, + 5DDAB40E3AA9DE5D5A63CF63ED9A2BEF /* MqttDecodePublish.swift */, + 110A4E7BE4EB9B92AD398EF75E3DF5AE /* MqttDecodePubRec.swift */, + F28E43923328EF261C416EB2E681B924 /* MqttDecodePubRel.swift */, + 6C4D7FBD66D7474E6981A9772DBE9E40 /* MqttDecodeSubAck.swift */, + 5A8B44A19AF20F37A8875C22357A38F1 /* MqttDecodeUnsubAck.swift */, + CD6EB60D65042D6F79F8E621BF2E5BBA /* MqttPublishProperties.swift */, + 71223FB6D980C715AF98D520D963B6B5 /* MqttSubscription.swift */, + 58040DF6D7E6F543B8DB10D3E910311E /* ThreadSafeDictionary.swift */, + ); + name = Core; + sourceTree = ""; + }; + 341BDA8F5700F98B3245E94DD113A5EB /* Pods */ = { + isa = PBXGroup; + children = ( + 80FE7852630087320C1B2A41A4C620BF /* Alamofire */, + 182B8E01020C6F0D2E94C066E3B19A52 /* AlipaySDK-iOS */, + FA24AC496694CC0F7BDFC3B94CAD8F28 /* AMap3DMap */, + 352E0C6B14DF1FD677DB2A4714C71F21 /* AMapFoundation */, + 93AFB13EFAA869C5FE807153A8A61064 /* AMapLocation */, + 49D5DF8962942BFE1534A1DB3233C3E3 /* AMapSearch */, + 65125F751B1074B953962EF5D01BA3D4 /* CocoaLumberjack */, + E60D404C90FA88964FA6392E06D2D272 /* CocoaMQTT */, + 550AB15AE717098FEA686FD3963C7C5B /* Differentiator */, + 57178949E1B6D17AA366D2428F5EB051 /* GTCommonSDK */, + A76C6D0D354B54FB7824FBD907043EE4 /* GYSDK */, + 316732A829FFB7D66D03CE6DFE701470 /* HXPHPicker */, + 989A441817A6A723DE97D351AA69E255 /* IQKeyboardCore */, + CDA22605428F8A70751DEE94C3788E93 /* IQKeyboardManagerSwift */, + 086EDB8299EBF599D255CC597927C881 /* IQKeyboardNotification */, + 1C6C2CFBB7F1907271C7CA2745B014A8 /* IQKeyboardReturnManager */, + D22A784029D0505F8825E2FB6440A13E /* IQKeyboardToolbar */, + B8E57183278F9B617AB1F148A84C5565 /* IQKeyboardToolbarManager */, + 7C81E329A6BD035AE9697150B2EE7923 /* IQTextInputViewNotification */, + 2D93BC648B5505323C66BB5B12A8A51B /* IQTextView */, + 073B86CEF0DACD846819D02D4531E844 /* Kingfisher */, + 3D8401C7D688652572621379FFF5B23F /* KingfisherWebP */, + 0B974A581577490CD7D5FF221AC92B6B /* libwebp */, + D50473D5C3F8FA62E8B45AFC0D8E6F4F /* lottie-ios */, + 8DC7B97A296FA6467418938125A62098 /* MarqueeLabel */, + C1BA859B3BF10634F10D96C1F85389D7 /* Masonry */, + 7670F38C1F6FAE80A9D3DF43B0710DFD /* MBProgressHUD */, + E69EBF1C66CE1E6E987817BBE63B224A /* MJExtension */, + A820526A396D3C2BB6AA329C5822DCD1 /* MJRefresh */, + B78734F5F7ABB5B594C214F14E7047E8 /* Moya */, + 17035DDE77D81288E6D4B9C13C5E68C1 /* MqttCocoaAsyncSocket */, + 12297B13B49E08710F5950E4859DDB8F /* ObjectMapper */, + F622E344DE756B39160F9A2CA8BC57E2 /* OpenIMSDK */, + 3E84943E1C081E6FEEA455BC4BE5D6F6 /* OpenIMSDKCore */, + 06FF378D27EB5DD240AA74B759E4AB73 /* Popover */, + 1729FC80456CEF9B99374B5D7FA2C982 /* RxCocoa */, + C780E2A1BD318E94A7FA21E68CB7939B /* RxDataSources */, + CAD41D11E03C75F7ED636D0E2472E2EA /* RxRelay */, + 6D810590AA2F2D22C6A7EAD01E8C7F06 /* RxSwift */, + 51E162143385CF4B642B3AEDAE5BB356 /* RxSwiftExt */, + EB0510EACDEE7519FFB716FBB9089BB1 /* SDCycleScrollView */, + 36BB57EDC0B4E8EA507184D29D730673 /* SDWebImage */, + 77EE6C1CA93C8DE4E5EC3459F5EBD036 /* SGQRCode */, + 61FCC43517E9F653AC85675BE5EDA1A7 /* SnapKit */, + 91CAAEEC66E3AB60BDA2A9A0B31DAF2A /* SwiftDate */, + E33D399FBB585A3939D3AAEC5B6515DD /* SwiftKeychainWrapper */, + DCCFD82C658FB653ADDC232EAA60F885 /* SwiftyJSON */, + 07E7846FD9B79697A2F954F23D754BD5 /* SwiftyUserDefaults */, + 54544A16D27527E631D23F3F4B147DA5 /* TagListView */, + 9302ABDEEAE1E23B6BE7B4D3ED467269 /* URLNavigator */, + 21E4E40C3B4B7D5606D3B896CEBBC9DF /* WechatOpenSDK-XCFramework */, + 2CE3D4270C99A67151A062702A2DF753 /* YBImageBrowser */, + 776B5450F1DB91088FB2FF13F80D1592 /* YYImage */, + D9AC6D9F03DCEE5596A4C6EAB157FD8F /* ZXSDK */, + ); + name = Pods; + sourceTree = ""; + }; + 3505A72458850FC11DA3814D2B095AA5 /* Resources */ = { + isa = PBXGroup; + children = ( + C946A52BE769027A887483647665E8F7 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 352E0C6B14DF1FD677DB2A4714C71F21 /* AMapFoundation */ = { + isa = PBXGroup; + children = ( + 00263D60A048A662D11503C81EB3E293 /* AMapFoundationConst.h */, + 56BA8582242132FCF45DE6D6F7D5E756 /* AMapFoundationKit.h */, + CFD6B054FF46A41FC9AEAF36A1E02246 /* AMapFoundationVersion.h */, + 6458147C926E431087479B672BEAED5E /* AMapServices.h */, + C58AC090CF55DF65FBCB1E83D9A44E0A /* AMapURLSearch.h */, + D5ABA7A9A9E3BA9AF60465C2BEBFE6C8 /* AMapURLSearchConfig.h */, + 6795AF09F8D149285033AEB0BCED748D /* AMapURLSearchType.h */, + 4988D7FAB199524EF97468FDA1024E50 /* AMapUtility.h */, + FADF433389EC6E744C22289B13560776 /* Frameworks */, + 0C4138CB12761CFFE96C2922C4516791 /* Support Files */, + ); + name = AMapFoundation; + path = AMapFoundation; + sourceTree = ""; + }; + 36BB57EDC0B4E8EA507184D29D730673 /* SDWebImage */ = { + isa = PBXGroup; + children = ( + 0F307B95D8704D258200CAB8E7EE23B3 /* Core */, + A8E8AF6560796F62A90FD285A95ABD91 /* Support Files */, + ); + name = SDWebImage; + path = SDWebImage; + sourceTree = ""; + }; + 3999BA7BC5D3C7658CCCB2D544E611B4 /* Core */ = { + isa = PBXGroup; + children = ( + D3D69DB59BA23808B9FC7CA5290FE648 /* NSObject+YBImageBrowser.h */, + 4041C387548214F751404450BF39B769 /* NSObject+YBImageBrowser.m */, + D50376BA225C0801D90EFEB172B1D6C4 /* YBIBAnimatedTransition.h */, + 8C0661ACD87A5C3E6324F3D7E16411DE /* YBIBAnimatedTransition.m */, + 83921C9664E047ECE321FD559ED72F36 /* YBIBAuxiliaryViewHandler.h */, + 37D11A371CBE51534B1035243FE652C8 /* YBIBAuxiliaryViewHandler.m */, + 6B8BEC335BBBFC53C5753059CA075FB3 /* YBIBCellProtocol.h */, + BEBE1953B540829D2FA2A81822E200CA /* YBIBCollectionView.h */, + 23A4440664319022C5085EDC5E2C702D /* YBIBCollectionView.m */, + 43CD18A02BC6362BD60A9F8A895C6881 /* YBIBCollectionViewLayout.h */, + 3A36550B8B2CBBB52150C46F5E083568 /* YBIBCollectionViewLayout.m */, + 50B2799B201F8DE8120BD7D5DF850756 /* YBIBContainerView.h */, + A564302709C6F613C097FCA7C36410B8 /* YBIBContainerView.m */, + 469BBA85B3B01F0A015C20C5026AC171 /* YBIBCopywriter.h */, + C677F1F6911AEB8A0B1C0078557F254F /* YBIBCopywriter.m */, + 1BDE57FD5D9733AD03237000523DFF20 /* YBIBDataMediator.h */, + C5E4AC95D725AE9914E15B02C6040935 /* YBIBDataMediator.m */, + 2E17D7BAA52A7884B7F49C0C06778BF7 /* YBIBDataProtocol.h */, + 5E215B4152D0A6DA7FBDD58BF58BA1A2 /* YBIBDefaultWebImageMediator.h */, + CA1127638FB310D5F12AAE25ED25158A /* YBIBDefaultWebImageMediator.m */, + F146679E95977A174286ABF268952FF7 /* YBIBGetBaseInfoProtocol.h */, + F34ED0A941A2F51373D6C1C05B1339D7 /* YBIBIconManager.h */, + 5C04AF582F9D6D4B5C00FBDCDB0C3039 /* YBIBIconManager.m */, + B2ED4E571D3FD0B525785E5C9317CE6D /* YBIBImageCache.h */, + FC5AE789DAF559A15696D20E295016D5 /* YBIBImageCache.m */, + CF8B49FE54508962DCCAE48FF9C6BE2C /* YBIBImageCache+Internal.h */, + BFE309F25629521A4C37547AB03DD967 /* YBIBImageCell.h */, + ACDBB4CB21A0172744F834F4091673B4 /* YBIBImageCell.m */, + 765D3D4E7343A74C9DAAC6872CCA30D6 /* YBIBImageCell+Internal.h */, + 1E667A962419E1AC1223896870D663EF /* YBIBImageData.h */, + 6BD92912FCEB695DC98E049E3F1E663E /* YBIBImageData.m */, + 147AA59E39E9EAB2C4AB74196F84BF4E /* YBIBImageData+Internal.h */, + B2FB4A7A72FEED4EEC521EBD466AF52F /* YBIBImageLayout.h */, + 0A6B3A99BDAED7755D8CFCE9C0F42B18 /* YBIBImageLayout.m */, + 272F9E6947D5DFE5145771307773F9E9 /* YBIBImageScrollView.h */, + 893433AAE0EC3F67963A11E6F861691E /* YBIBImageScrollView.m */, + 887BD66AA7441D8A73D87321B6F17CBB /* YBIBInteractionProfile.h */, + 0736A9464846A7FFD4CD0741B9E475AD /* YBIBInteractionProfile.m */, + 98CDBE58C4CEDB9BD1550333B927C91D /* YBIBLoadingView.h */, + 28BE9C4C4FD97745A47638677BEF26C1 /* YBIBLoadingView.m */, + 9A2CE0AF51BE27F12200078A93A6C66E /* YBIBOperateBrowserProtocol.h */, + C94D912ED11FB929D163DE90CA7CBF58 /* YBIBOrientationReceiveProtocol.h */, + 7D60BD316ED3AAEB173CD7E6D10C500B /* YBIBPhotoAlbumManager.h */, + 23C5E159C4F71F067E60F69603441421 /* YBIBPhotoAlbumManager.m */, + 2D95A95805D665C143687E0AF8794CAC /* YBIBScreenRotationHandler.h */, + 0EE24F78A7AEEC8FF75CCB9FA0A47036 /* YBIBScreenRotationHandler.m */, + 5FCAFE810B996502DE8E815BB6C1AC95 /* YBIBSentinel.h */, + 465B409F53432E81A5A256AE2E926B8C /* YBIBSentinel.m */, + 87F6C0AAEA5D49B14D1E594B55985BB8 /* YBIBSheetView.h */, + B85121EB950716DA0F583D20DABC268A /* YBIBSheetView.m */, + EDB059CE88379E4FEA3A790FFBAB04A8 /* YBIBToastView.h */, + 87DF08BF0E16E2F0B672516B99521229 /* YBIBToastView.m */, + 0371D4CC57FE2AD694BD3124D76F3700 /* YBIBToolViewHandler.h */, + C27A10A9A647A42B2B5BE3F24C1D6BB6 /* YBIBToolViewHandler.m */, + 779B2359143D01352428D637B66ABB03 /* YBIBTopView.h */, + 13CA3F82CB4C95C5C30C09CEFF326F75 /* YBIBTopView.m */, + 1B4759B2362FE048A89613C7D13FBE31 /* YBIBUtilities.h */, + 95B4863B9298753CB8613C21E39C9B27 /* YBIBUtilities.m */, + CA7DEF12C876C557DDFF6CC3B95D863F /* YBIBWebImageMediator.h */, + E3C18EF459A92F67B78ABCB4D4C4B7DB /* YBImage.h */, + A10CD0E8D82FD587766DE98C4C52DA77 /* YBImage.m */, + 4E558D8C6D3AFA14C61F24DA97C33E8F /* YBImageBrowser.h */, + B772F4D6E7B2CD1919ABFF268D1694BE /* YBImageBrowser.m */, + F1ABC498902A7C5F1A16E46F26227B68 /* YBImageBrowser+Internal.h */, + 32D89F076C7EB0BF35FCEAEE0CADD189 /* YBImageBrowserDataSource.h */, + B34D8164E363688D35D07DC9EFA7ECDF /* YBImageBrowserDelegate.h */, + 213F7456FA3CBD6ABF7ABD856222F406 /* Resources */, + ); + name = Core; + sourceTree = ""; + }; + 3D8401C7D688652572621379FFF5B23F /* KingfisherWebP */ = { + isa = PBXGroup; + children = ( + 362C318AC23BC309320600A5C2B2254E /* CGImage+WebP.h */, + 5BCC0CB4800246FD935D7AF0399C5175 /* CGImage+WebP.m */, + 8CF7E9B4E27E9DB75877750C9B8021F9 /* Image+WebP.swift */, + F808015688D43C9E0031FC140F6849BB /* KingfisherWebP.h */, + BFDDE473595828D6E2632E61085FBD8B /* WebPProcessor.swift */, + 2406927749C80BFC19A506CF84AFFDC5 /* WebPSerializer.swift */, + C92682C44DAD917566CA3C016A52D90B /* Support Files */, + ); + name = KingfisherWebP; + path = KingfisherWebP; + sourceTree = ""; + }; + 3DCE3565E12180DA548ADF9D7FEB40F8 /* Support Files */ = { + isa = PBXGroup; + children = ( + D936862DBFB3B7043312F4C3C681F879 /* IQKeyboardToolbar.modulemap */, + 3E2853814085998597B40FCD6FF69185 /* IQKeyboardToolbar-dummy.m */, + 3A67D1CB2FA1AD2A0DE5714D70C5376D /* IQKeyboardToolbar-Info.plist */, + 4F2253C444203F6FFFE1CEF38084CC72 /* IQKeyboardToolbar-prefix.pch */, + 39F3484843917C882FECBCCF7474F59F /* IQKeyboardToolbar-umbrella.h */, + FDAE672DFD3D8A61B0D211BD81FAAE76 /* IQKeyboardToolbar.debug.xcconfig */, + 846EDE56DA946ACF6FAB843EB29A21BA /* IQKeyboardToolbar.release.xcconfig */, + 5F03CEF900DCE98303D4027E3A2F7FB4 /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/IQKeyboardToolbar"; + sourceTree = ""; + }; + 3DD3CA31C0E01928E70F135DF21E91FB /* Support Files */ = { + isa = PBXGroup; + children = ( + 9EDCD3AB67527112F13D7113124CC91D /* URLNavigator.modulemap */, + D0437BBB36BED63582B9839D1E20DCA8 /* URLNavigator-dummy.m */, + 3806C8AFF5367B3A08DDDCB3A210C4BC /* URLNavigator-Info.plist */, + 4D15480DB79AA35C1FA293BFB624DD79 /* URLNavigator-prefix.pch */, + 546737B43CD88885573162690F1B1567 /* URLNavigator-umbrella.h */, + F78CF62F0674BF90E70B2ECA05043B8B /* URLNavigator.debug.xcconfig */, + 58C7B6E7A775424F09E7E14CA00C5CA6 /* URLNavigator.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/URLNavigator"; + sourceTree = ""; + }; + 3E84943E1C081E6FEEA455BC4BE5D6F6 /* OpenIMSDKCore */ = { + isa = PBXGroup; + children = ( + 5FE34A0BDA70D3E0D15C1325611AA7BA /* Frameworks */, + C7083989FF96825B50C6AD2F90707983 /* Support Files */, + ); + name = OpenIMSDKCore; + path = OpenIMSDKCore; + sourceTree = ""; + }; + 439E0194679A65B117123D3D6E32A879 /* Support Files */ = { + isa = PBXGroup; + children = ( + DE5BCC0BA69E61F204E9386CD87BBA20 /* MarqueeLabel.modulemap */, + CA7328C77B8873228D8F9F083DD76E06 /* MarqueeLabel-dummy.m */, + D406042DB342E978B1216F2CBB74B1A9 /* MarqueeLabel-Info.plist */, + 04337BCEE81935BE4FA6875EA79376EC /* MarqueeLabel-prefix.pch */, + 4D2A4FB1654D2C01A0BB8DF98D396CF8 /* MarqueeLabel-umbrella.h */, + 869253C90A9E318D5E478170C21006FD /* MarqueeLabel.debug.xcconfig */, + 543C52D19DFF7450FD0F1BFCDEBDB90B /* MarqueeLabel.release.xcconfig */, + 464B9757D797F887E5C3971471FC51EE /* ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/MarqueeLabel"; + sourceTree = ""; + }; + 43B3AAC0548B91531161C2A20E2DFA38 /* Core */ = { + isa = PBXGroup; + children = ( + D5C3483F4E8C5E0015004EAF99566DAE /* IQActiveConfiguration.swift */, + DBCBAB931CCEE194C1467906C7B7D94C /* IQKeyboardManager.swift */, + 4FCC1C19DDE1E49C438978C0B7E9C33E /* IQKeyboardManager+ActiveConfiguration.swift */, + 20A89EBE355145B0F7D0CE86923C8686 /* IQKeyboardManager+Debug.swift */, + EC3074255B9B2BC12ABE3CC218759254 /* IQKeyboardManager+Deprecated.swift */, + AAED09A3FF9F11B572D266C4C9AF76E7 /* IQKeyboardManager+Internal.swift */, + 661B11CB82859F4F63BB986EEA203D75 /* IQKeyboardManager+Position.swift */, + C9714A1AD9F2DF6D9204ED18A1C836E6 /* IQRootControllerConfiguration.swift */, + 9CD16763011689F5599A9449C0100867 /* IQScrollViewConfiguration.swift */, + AEDFB3B7BB27DE01032FB09D870AD119 /* UICollectionView+IndexPaths.swift */, + 95CC0C8C9DF91B6EEC6755575144D1BE /* UIScrollView+IQKeyboardManagerExtension.swift */, + 139EF672FB2BD571A5A740D822E68D86 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */, + B33EEB175BF64F2AE39B373015729BB3 /* UITableView+IndexPaths.swift */, + 9D95D57DFF072259B98628A58665039F /* UIView+IQKeyboardManagerExtension.swift */, + 1BEFFF17F16298B1DF23F0FD66D7EADA /* UIView+IQKeyboardManagerExtensionObjc.swift */, + 28EC7434D8007BC07802B27B8D6FB1A8 /* UIView+Parent.swift */, + 1347E158DD6325436FEA7A90CCD478A6 /* UIView+ParentObjc.swift */, + 4AACBABCF5B90F04C33A9FECD309A234 /* UIViewController+ParentContainer.swift */, + ); + name = Core; + sourceTree = ""; + }; + 47E17702787ECF00AD111873E03883A0 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2529DAC0D802063EA30E377C208C274D /* GTCommonSDK-xcframeworks.sh */, + 1DFBCAA5D961010443EE4E8BF7F440E3 /* GTCommonSDK.debug.xcconfig */, + FB1D9DAF235C3360A49CB31CD5D21E03 /* GTCommonSDK.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GTCommonSDK"; + sourceTree = ""; + }; + 49D5DF8962942BFE1534A1DB3233C3E3 /* AMapSearch */ = { + isa = PBXGroup; + children = ( + 957FB55BA840E6DCA8B080C66EA98A00 /* AMapCommonObj.h */, + FA3C2D4D0F600143BF84D12E30EC764B /* AMapNearbySearchManager.h */, + 98C70EAA109E0E04638FA1D75DD9F750 /* AMapNearbyUploadInfo.h */, + A27735D73BDAF35198BF15B74CAFA479 /* AMapSearchAPI.h */, + 27FBE8F4C6D9F3D5E81384DF8CE8969F /* AMapSearchError.h */, + 52C8C7A591F76293D6D6BEE0D5C27010 /* AMapSearchKit.h */, + 5852FF1C0268DBCE67F0F0E39DE0B510 /* AMapSearchObj.h */, + 4B4488AE2B9DCBD2B129E527FCB438E2 /* AMapSearchObjV1.h */, + A74A7D2A8E145C693B70DF164CC44062 /* AMapSearchVersion.h */, + 295DBC4F5635C5B494F285F57C8224E0 /* Frameworks */, + D61BBE141BD5A1FE1FBE1B6CCA689984 /* Support Files */, + ); + name = AMapSearch; + path = AMapSearch; + sourceTree = ""; + }; + 4BBF5683D94BE3C129B3F1500E2F0870 /* Core */ = { + isa = PBXGroup; + children = ( + E36023FA5050A88E423759EE0EFCD497 /* IQBarButtonItem.swift */, + 9D230BB4BBC629C4AD808FB6819CFE89 /* IQBarButtonItemConfiguration.swift */, + 21AAE531B9EF7DB927D524FE45E5365C /* IQInvocation.swift */, + CC7B8DCEBB0FD4064FFEAB1E9BA967D1 /* IQKeyboardToolbar.swift */, + CFD05E64CF85F8CA7E5A6576121884A0 /* IQKeyboardToolbarPlaceholderConfiguration.swift */, + 28B010A2146BDC61697A76663AF9803C /* IQTitleBarButtonItem.swift */, + 59DF3EC3D68BB1FD12D0E26E697ADC67 /* UIView+IQKeyboardExtension.swift */, + 52ED7B4D2CAEA2EACAF3CAE743DB8D1D /* UIView+IQKeyboardExtensionDeprecated.swift */, + 84315F79BA3DE29DC734A52F0D9418E9 /* UIView+IQKeyboardExtensionObjc.swift */, + ); + name = Core; + sourceTree = ""; + }; + 4DF06C65934AA46F4928AB88AF81DC06 /* Frameworks */ = { + isa = PBXGroup; + children = ( + F0F19C6B885147A312B578A3DAAC871C /* MAMapKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 5130E110E7F6D15B472C59552BAC791C /* Support Files */ = { + isa = PBXGroup; + children = ( + 0F1E4C287F43603EC155ECECFDC59225 /* MJRefresh.modulemap */, + 6B80BF427EA0435A2D0917C4A28181F7 /* MJRefresh-dummy.m */, + 7739C14DC6B605D8F2466FFD82090ED7 /* MJRefresh-Info.plist */, + EC17AC8224AF86055ABF638581E03865 /* MJRefresh-prefix.pch */, + 5848253A22D6396B7A068D7D2A0277C9 /* MJRefresh-umbrella.h */, + B8EC604002D3AACC61D5BDBC802F50D0 /* MJRefresh.debug.xcconfig */, + CAB2565A0DA889576964CD69CC948242 /* MJRefresh.release.xcconfig */, + C3A73710E2C0578C6A953780E42AD303 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/MJRefresh"; + sourceTree = ""; + }; + 5169B48C1222A1C1D2880F9578AB809A /* IQKeyboardToolbarManager */ = { + isa = PBXGroup; + children = ( + 6CC9F61619926E872D28D902C1AF880B /* IQKeyboardManager+ToolbarManager.swift */, + CFE969BF87DF6A4473ACCB1E8565BDF0 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */, + ); + name = IQKeyboardToolbarManager; + sourceTree = ""; + }; + 51E162143385CF4B642B3AEDAE5BB356 /* RxSwiftExt */ = { + isa = PBXGroup; + children = ( + 22B2590D022CBB1EB5BE49DCE4663481 /* Core */, + 17E8652D5B87475A0EE4D8410FF319FB /* RxCocoa */, + 0E2471BB06D552AB52355B46FDC74EC8 /* Support Files */, + ); + name = RxSwiftExt; + path = RxSwiftExt; + sourceTree = ""; + }; + 52A97E1F61561F467822E512FBA51A82 /* Support Files */ = { + isa = PBXGroup; + children = ( + C5CE467F7D21EE255E3C0AC93EEC217A /* RxDataSources.modulemap */, + 2CDE862D7BF7002E18408BEC71411A53 /* RxDataSources-dummy.m */, + 64916876656A6A9960FEB98C54459534 /* RxDataSources-Info.plist */, + B7B65555863ED958E7C15F4E036BDA4D /* RxDataSources-prefix.pch */, + 1BCC3CCFED5B0E4592E403671601ACEF /* RxDataSources-umbrella.h */, + 3F309E5C6296297419BFF8A326FBA8A3 /* RxDataSources.debug.xcconfig */, + 8C6C1C2CD09F3D826E6B56CD9CA8EED3 /* RxDataSources.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxDataSources"; + sourceTree = ""; + }; + 54544A16D27527E631D23F3F4B147DA5 /* TagListView */ = { + isa = PBXGroup; + children = ( + 754D0F51CD2EAF6A474BED8B1704DE6B /* CloseButton.swift */, + 548902D1C1F1F472857640F1054B46CC /* TagListView.swift */, + 81F7D3FF1C6A6BA4CF4343A1D488E223 /* TagView.swift */, + B708B78A29CB5B853E59332CADE08064 /* Support Files */, + ); + name = TagListView; + path = TagListView; + sourceTree = ""; + }; + 54B6B9EE6CA79606EC2C8AD58B25764F /* Core */ = { + isa = PBXGroup; + children = ( + EA8D9B8D105015C6EEF5E5C35E31DF2A /* CLIColor.h */, + D10D891E1B9E58E640DDE11239776223 /* CLIColor.m */, + E939347E78A0391184298A74581E8A4B /* CocoaLumberjack.h */, + 0975E1214B64C5AE57633B4489CBE5F2 /* DDAbstractDatabaseLogger.h */, + F38473A0318DD5468977B8B5695A90DD /* DDAbstractDatabaseLogger.m */, + 289FCFE3D6DDD65B8122E6130BA5048A /* DDASLLogCapture.h */, + 5057B056546FEDFFD71C7FFDC03FF7D0 /* DDASLLogCapture.m */, + 216E0D99EA559AD8E578C6AC676FFCBE /* DDASLLogger.h */, + DE06532E7C05F4532ABBECA80B3BFBE3 /* DDASLLogger.m */, + 44443D8FED362A663B7F86031F24FBC4 /* DDAssertMacros.h */, + AB391B254D2D6498DF8E0C3EED6102BA /* DDContextFilterLogFormatter.h */, + 1692A7D7BE4DE1B7E024C490612EB31B /* DDContextFilterLogFormatter.m */, + 768284F94C04D4AA181C44C6DABE481C /* DDContextFilterLogFormatter+Deprecated.h */, + 94441A97766437C85EA2053848569EA5 /* DDContextFilterLogFormatter+Deprecated.m */, + 36150B9A092CEA623ED750B37621BEA4 /* DDDispatchQueueLogFormatter.h */, + 7AC9E6CA74830BF0C4F0A5DEB598B368 /* DDDispatchQueueLogFormatter.m */, + F02800A4D7E74C83AF754FB80D50552A /* DDFileLogger.h */, + 0A8E8C8881849C416468CDD1543F786A /* DDFileLogger.m */, + 7D5F7D75A5F16DE8ED73EAB9D1681EE0 /* DDFileLogger+Buffering.h */, + 05746202040C5E84F9997A84784DE29C /* DDFileLogger+Buffering.m */, + BB176CC8A097D4E742BA5C362AB0B997 /* DDFileLogger+Internal.h */, + DBC013570B52683EAAC1DC3751BAE86A /* DDLegacyMacros.h */, + C34E1FC5A28BDD54E39AB0B3CD4FE159 /* DDLog.h */, + 8929295E55D3A7956A8FBB2AF64C3CEA /* DDLog.m */, + 749621F3F175B83BA32CAE04C651F4DF /* DDLog+LOGV.h */, + 48C58BD4112BA7365B046A10EC59B716 /* DDLoggerNames.h */, + DF0D59AB65BAC48A5EE451E2781AF508 /* DDLoggerNames.m */, + 6AF85A1017DE15A4101657601A4C5A16 /* DDLogMacros.h */, + 76E48E1B8ED8E32B9FD17F6AF5FD4C19 /* DDMultiFormatter.h */, + 106AF6327F7C20B1A3C440871893FEF9 /* DDMultiFormatter.m */, + 378E212C4FE47178EBCE8F98BAB1B1D8 /* DDOSLogger.h */, + 8DCCA16221D7CCCCB0947FEC9E1C1F3A /* DDOSLogger.m */, + 27F320304CFB5F16992D6434DE4E65B7 /* DDTTYLogger.h */, + EB5CE15E8B1EC758E154A3D6D0DBB372 /* DDTTYLogger.m */, + 857BF1F8D1303285AAF3ECD76747A2B9 /* Resources */, + ); + name = Core; + sourceTree = ""; + }; + 550AAF8EB2D5011A4350D00CC7A6F635 /* Support Files */ = { + isa = PBXGroup; + children = ( + E62B072434546B62A0732B87388A9662 /* GYSDK-xcframeworks.sh */, + 14E16E30B25A8A248D95A482A7EB47AF /* GYSDK.debug.xcconfig */, + 4B3761DE77E2B197B16591EDBD27853D /* GYSDK.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GYSDK"; + sourceTree = ""; + }; + 550AB15AE717098FEA686FD3963C7C5B /* Differentiator */ = { + isa = PBXGroup; + children = ( + 85C8B51DA0770D817281FCCB4771C0A0 /* AnimatableSectionModel.swift */, + 78C01105638592D5D6B38F6C58CC2EE0 /* AnimatableSectionModelType.swift */, + 8C73556EF652E6AAF642783546B02DB0 /* AnimatableSectionModelType+ItemPath.swift */, + 53A748F8442ACE4E6959806D00DB0272 /* Changeset.swift */, + 684A7422DA5D5676B52EEDD2E28FC657 /* Diff.swift */, + 48D3D3955FABE41F8DDF194B898A86F8 /* IdentifiableType.swift */, + E41C167A42094403E6D01F0C012B89B5 /* IdentifiableValue.swift */, + 2DFB101CA626227DCFB08754A265952E /* ItemPath.swift */, + 7255A222C9A1437D1F742C8CBFEF988B /* Optional+Extensions.swift */, + 69233A166022F4FAA2349D49017EE68A /* SectionModel.swift */, + F1A9770100809405AD02EE9CCCD7C2DF /* SectionModelType.swift */, + ADDCBE1A39A53B0074D2F5EB3E791CCF /* Utilities.swift */, + EC1B197DDB5A762DE794CED65B40DE63 /* Support Files */, + ); + name = Differentiator; + path = Differentiator; + sourceTree = ""; + }; + 55C4125A98F46875D476B398546E5702 /* Support Files */ = { + isa = PBXGroup; + children = ( + C09DA885DD15FA8B7964193BE291C702 /* AlipaySDK-iOS-xcframeworks.sh */, + BCFAA6E3673F32D9D944D7DD589746D5 /* AlipaySDK-iOS.debug.xcconfig */, + A5855B017DB303D2A1DBEC7EFDEEBEF7 /* AlipaySDK-iOS.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AlipaySDK-iOS"; + sourceTree = ""; + }; + 57178949E1B6D17AA366D2428F5EB051 /* GTCommonSDK */ = { + isa = PBXGroup; + children = ( + 631BD496DF63A2DCE9DC72620F14231C /* Frameworks */, + 47E17702787ECF00AD111873E03883A0 /* Support Files */, + ); + name = GTCommonSDK; + path = GTCommonSDK; + sourceTree = ""; + }; + 5BA1141B7B50BD6B6A92B96743BC3AF7 /* Resources */ = { + isa = PBXGroup; + children = ( + 7C5F5574EA447F3EFFBEBB60DEA304A5 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 5FE34A0BDA70D3E0D15C1325611AA7BA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 61FC40CC3CF376314F66F115AD76C8BD /* OpenIMCore.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 601F16286C6703F7EABF8CB64188C787 /* Resources */ = { + isa = PBXGroup; + children = ( + 4C84C4C711FFA7CF45DD30F7F1B9F6FB /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 615DE90D9A6B679C368696030DBDE803 /* mux */ = { + isa = PBXGroup; + children = ( + 10ECE5FD969EBBA30C2ED7DA1AC66C7C /* anim_encode.c */, + 6939A2F658A7053D427D8CA0499EEA5F /* animi.h */, + 0D43EFC784C9CB0EEC823043042F4F3E /* mux.h */, + 3419D2C8671536D5EF4FAFBBECE79EE0 /* muxedit.c */, + 936CB7B4BDC58080C1761D5802B3F961 /* muxi.h */, + 432FA1B90521DCF2ABD467F6CB5BE0D8 /* muxinternal.c */, + 9D2C92E71F92957D93A3E7A0F3E1C393 /* muxread.c */, + ); + name = mux; + sourceTree = ""; + }; + 61FCC43517E9F653AC85675BE5EDA1A7 /* SnapKit */ = { + isa = PBXGroup; + children = ( + D270B58C52D873E88FE7A688C880CC47 /* Constraint.swift */, + 91F40D000DF542C6D6257B1B433BAA8B /* ConstraintAttributes.swift */, + 31F9C25C7025E7B07803B95DD09EB95F /* ConstraintConfig.swift */, + AE67D105FFA7A37148000E1CF35CB1A2 /* ConstraintConstantTarget.swift */, + 1BE3ED2D55A51CE30D6B35A81EEDBF70 /* ConstraintDescription.swift */, + 6C7A61E9DB82D02FEA27B03B819C2C7A /* ConstraintDirectionalInsets.swift */, + 55A85B8F88C0FFFDA82F7292E474114A /* ConstraintDirectionalInsetTarget.swift */, + 6A73073075D10A568A023F1D190E7925 /* ConstraintDSL.swift */, + 0DE460D658E702CA2B530B22A735CDEE /* ConstraintInsets.swift */, + 61831D41BCD7315F136D4DF2A5ADD114 /* ConstraintInsetTarget.swift */, + 05E9CE5A83328C8F0A54F45B5A6C8051 /* ConstraintItem.swift */, + E796C4048C441AD02DC39D0BD3AC5217 /* ConstraintLayoutGuide.swift */, + 73A9AFEB67D867F54621A8B038E14078 /* ConstraintLayoutGuide+Extensions.swift */, + D910123998FD43BE6AD2DDD3A3D45594 /* ConstraintLayoutGuideDSL.swift */, + 7389364A0F9C4547DF6856032C109311 /* ConstraintLayoutSupport.swift */, + 4B116CF6C24DE8991292084F188FE48C /* ConstraintLayoutSupportDSL.swift */, + F716D3D553C2B2B467ACFEB6493D9F37 /* ConstraintMaker.swift */, + 17C72523B93134AD24AD27FCC1289EBD /* ConstraintMakerEditable.swift */, + 652AFE78F8E551FC43A6A45DC83A3681 /* ConstraintMakerExtendable.swift */, + BA81E3B3EDD71C5E60450FB07D07DC17 /* ConstraintMakerFinalizable.swift */, + A8DDCF4864693C73E1125B4AF69B2DA3 /* ConstraintMakerPrioritizable.swift */, + 5C17147FB45C2F91E3F4E0561AADD510 /* ConstraintMakerRelatable.swift */, + D581489AF2D977E97DD236B6C4C9583B /* ConstraintMakerRelatable+Extensions.swift */, + 378372F498F665F3FFD43D996BC74AD0 /* ConstraintMultiplierTarget.swift */, + 9A3AB5C61F217707706D0EE32CFEA319 /* ConstraintOffsetTarget.swift */, + FAD5FA39926E92F28F3AB831E3E144F6 /* ConstraintPriority.swift */, + 59D37D7B8A54CCECB3D3FF11BA59989C /* ConstraintPriorityTarget.swift */, + AF05CC8BD4D487667590A69116766F94 /* ConstraintRelatableTarget.swift */, + 7A15C785772B2FB9827145D163C5E770 /* ConstraintRelation.swift */, + 3D933D12E317B5FD83E880AB561D94EA /* ConstraintView.swift */, + D1FC999A64120C01A02C6491C02500C3 /* ConstraintView+Extensions.swift */, + 1ECB7D5AB4DB61A7C722388BBFF2BCD7 /* ConstraintViewDSL.swift */, + 1A25B8A9E6FDF0123372C7099D17C0C5 /* Debugging.swift */, + FBBBC8E8624440C8A9F3BC5407C904DD /* LayoutConstraint.swift */, + 187CD970712B0851A9470D28D04986D3 /* LayoutConstraintItem.swift */, + 3EA07675D341B40B3A11C882628547EF /* Typealiases.swift */, + 4F087BB3235520C3C84B06484C182445 /* UILayoutSupport+Extensions.swift */, + 1C04CC67740625319DA7C97E12910ECA /* Resources */, + 622934B9CAE3DACBEE4B31B53B7FEC71 /* Support Files */, + ); + name = SnapKit; + path = SnapKit; + sourceTree = ""; + }; + 622934B9CAE3DACBEE4B31B53B7FEC71 /* Support Files */ = { + isa = PBXGroup; + children = ( + 44070D625BBD8D72169C7EAC92037AAA /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */, + 932301FE559406FA40A9042558D4F7DC /* SnapKit.modulemap */, + 02E757561295961F2661E2AEDADB230A /* SnapKit-dummy.m */, + 4D47A9F8604BB1D7EE3F6CC46B6939B1 /* SnapKit-Info.plist */, + 319D35D1874FB0C1965D7307152759D2 /* SnapKit-prefix.pch */, + E4DA59576A1914BE355CDECE1AF3362D /* SnapKit-umbrella.h */, + 060CD185D2422C4062E0B14A26CF6596 /* SnapKit.debug.xcconfig */, + EBB442D86F1DE12D3FD514D2FA20776B /* SnapKit.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SnapKit"; + sourceTree = ""; + }; + 631BD496DF63A2DCE9DC72620F14231C /* Frameworks */ = { + isa = PBXGroup; + children = ( + D6ABB50E1DD67CD1F4172B92AB78FBC1 /* GTCommonSDK.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 63E726FE4761BFEFC79E1AAB77C7F136 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4EEDDA2C8BA124FCC4F0D3BA74E7881E /* ZXSDK.debug.xcconfig */, + 7BD34BB4551BFE8B66525915EEC8A279 /* ZXSDK.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/ZXSDK"; + sourceTree = ""; + }; + 6407C2B50B084AD33143E72B9879A582 /* Model */ = { + isa = PBXGroup; + children = ( + 888BE989F91C6C44101C700B8DEBA649 /* OIMAtElem.h */, + 26E12650ACBFCF10361CA3BE989938D9 /* OIMAtElem.m */, + 44BDF7C88D11E13B365E3AF156FE327A /* OIMAttachedInfoElem.h */, + ED2816CD352689684AAEE79226E49047 /* OIMAttachedInfoElem.m */, + B1881949C33489CEE44FB1A8CE92D7EA /* OIMConversationInfo.h */, + 380D33A71478D6A19360DAADF01641A2 /* OIMConversationInfo.m */, + 02A8A43AAF8C972D6B0CCEFB283A10B4 /* OIMCustomElem.h */, + 58D60D2BC095F0CBD500F458C40B265D /* OIMCustomElem.m */, + 3486E48D7F4ECF13A667832E910CCC60 /* OIMFaceElem.h */, + 294772D1AC56A8AFBAFF4406865E8529 /* OIMFaceElem.m */, + 70CEF74CF654DC40CAA98E45E03634BD /* OIMFileElem.h */, + 3CAE77C1FDFE55D88382565774039932 /* OIMFileElem.m */, + 21539E4C77DD56C4E08819C238A77241 /* OIMFriendApplication.h */, + D7B97434434069C9B201866FE0542B05 /* OIMFriendApplication.m */, + 1B15C26343D5A8DE9B5A7A36BA7145FD /* OIMFullUserInfo.h */, + 70DF95CF1A956131DE522B1EC58F5D47 /* OIMFullUserInfo.m */, + 21EF815B6C34644A35D6B92C9DF3DCEF /* OIMGroupApplicationInfo.h */, + 7B842D2FB9E52687A1AF54CD9740A769 /* OIMGroupApplicationInfo.m */, + A45C3161BC7648F62303036FF3B350C5 /* OIMGroupInfo.h */, + DB1752A2DA09B80102258B1B4F99B43D /* OIMGroupInfo.m */, + 957C981964A435BDF75AB5CB24C17F0B /* OIMGroupMemberInfo.h */, + 020B0D8611C73B031357E9E91365C77E /* OIMGroupMemberInfo.m */, + 3CEFA599307C4B7B9E0ADBD31EC1E745 /* OIMLocationElem.h */, + 00CAC1B2D31769B3178F778D87E68816 /* OIMLocationElem.m */, + D43D3D49600F86D5154E1438DC7E9E53 /* OIMMergeElem.h */, + 0AA728D87B7F91C945463B669D4EAE5C /* OIMMergeElem.m */, + 368D0A9669610E6142622A7EBCBB1BEE /* OIMMessageElem.h */, + C0A885057A11B51887D16E84D82AF7A6 /* OIMMessageElem.m */, + F2F48E9C3DD021AFAAF173158C2BC249 /* OIMMessageInfo.h */, + 65A438944C929D5F4B8B213A41EE08D7 /* OIMMessageInfo.m */, + 52B031927313E161861104668E21A8DE /* OIMNotificationElem.h */, + 52E0CA4A9F089F647F586FB444DBEF13 /* OIMNotificationElem.m */, + 74C69FE3005EC8FA3F9D8FCEC50F6CC8 /* OIMPictureElem.h */, + BCBA512CDD9A14E3AE8881732D0ECCF6 /* OIMPictureElem.m */, + 06F77A9C4687FD3D84DFF005E7862759 /* OIMQuoteElem.h */, + 935291735FD863A36C3BB6A8BDF7A2F9 /* OIMQuoteElem.m */, + D79DA9ED5F22B3153EAF6FB853B9ABCE /* OIMSearchParam.h */, + B067C57685FF3EDC8CC9D9022087A8D5 /* OIMSearchParam.m */, + F3E14299379EB091FFF0667442E61240 /* OIMSearchResultInfo.h */, + 53CAB2921C752E78CA55B05D3BE85065 /* OIMSearchResultInfo.m */, + 02D4D5D1D01BF0456AD4F21C830F01BD /* OIMSimpleRequstInfo.h */, + 4B1B2B7ADF26863573179177D46607DB /* OIMSimpleRequstInfo.m */, + 5C6075D01B0C2D3160EF60C4BB2ED644 /* OIMSimpleResultInfo.h */, + C4C7C3A5F449BC7B132C23B891237D99 /* OIMSimpleResultInfo.m */, + 1E05D9021DDD8DE479F93C6DA29461F4 /* OIMSoundElem.h */, + 87D4B044B9175BC06CC0B9475C219755 /* OIMSoundElem.m */, + E6D908919FE42CF57972EE6C0A340195 /* OIMUpdateFriendsReq.h */, + 48235EA9287F0138124F456EEB881070 /* OIMUpdateFriendsReq.m */, + 0F9F954A9051F47DF3AA5D6404469F27 /* OIMUserInfo.h */, + C56F7B90029A72DEC58CF844484D77F5 /* OIMUserInfo.m */, + E1FB0CE6CC1C2683C361076E7AB82D61 /* OIMVideoElem.h */, + 8AFE49130DC59D5BB417170BC6782E91 /* OIMVideoElem.m */, + ); + name = Model; + sourceTree = ""; + }; + 65125F751B1074B953962EF5D01BA3D4 /* CocoaLumberjack */ = { + isa = PBXGroup; + children = ( + 54B6B9EE6CA79606EC2C8AD58B25764F /* Core */, + 8E4F21203E1D98F8A64D3A0DA7D801EF /* Support Files */, + 80701750BCDAB422005E1E99AFEA6530 /* Swift */, + ); + name = CocoaLumberjack; + path = CocoaLumberjack; + sourceTree = ""; + }; + 68E97B5CC8B872CEC377656733AA9CE6 /* sharpyuv */ = { + isa = PBXGroup; + children = ( + AE5E8976ED0958D0E88CF4130425A677 /* sharpyuv.c */, + 777F31EBF8D1DD8526D7F094EE35DAF4 /* sharpyuv.h */, + D9805B1AE674AAFF2B25D9BB35A39FCD /* sharpyuv_cpu.c */, + DAC1E692C3BCF796EC57061986DABEAB /* sharpyuv_cpu.h */, + 735D6AE5E93EF5DB28F313B462B8620D /* sharpyuv_csp.c */, + 8BC62A822F138AAB14F1F2BBD4FE0620 /* sharpyuv_csp.h */, + E740FA3F162A1BCAED41C634DEE0BBB6 /* sharpyuv_dsp.c */, + 9A45467E991A7D1E26A9A9CDD47E4EC3 /* sharpyuv_dsp.h */, + 42AAC5C25F48FDAE17B347BE4BC0FB10 /* sharpyuv_gamma.c */, + 0FAE7BDC15B4ECF9C5F5FD05C6AFD281 /* sharpyuv_gamma.h */, + 74B3D2B854D0C4E61AE93E1D37D28752 /* sharpyuv_neon.c */, + 41E3FAAD2234BC50D877D8712F227C53 /* sharpyuv_sse2.c */, + ); + name = sharpyuv; + sourceTree = ""; + }; + 6A1DF896831FAB9A457EECCA4F045D31 /* Support Files */ = { + isa = PBXGroup; + children = ( + DB20F139AA399040EFA01315E1AC09BE /* SDCycleScrollView.modulemap */, + A9BBAC281B464444D34803B8EA62BC18 /* SDCycleScrollView-dummy.m */, + 8D0909F96D750E913B07F7DFB71BDC38 /* SDCycleScrollView-Info.plist */, + B19F630A272C257D405F9A149FBC4460 /* SDCycleScrollView-prefix.pch */, + E31ABC3FC220CB286BD36808983A58C9 /* SDCycleScrollView-umbrella.h */, + 2FFD6FB05FFB92E52545C479B4BFCF7C /* SDCycleScrollView.debug.xcconfig */, + A27AA83F2845140359A4DB58C644F78A /* SDCycleScrollView.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SDCycleScrollView"; + sourceTree = ""; + }; + 6B8C3BD30F79877E090464B0E3CF84ED /* Support Files */ = { + isa = PBXGroup; + children = ( + AF976276672106FA581F52DF8576E905 /* libwebp.modulemap */, + 385A5B781881CF05DA0885623E2F500E /* libwebp-dummy.m */, + 775A6AD8F59EB8B8134F15DF8752882A /* libwebp-Info.plist */, + 73C08A3172542E0D72BEEF579CA2F246 /* libwebp-prefix.pch */, + D2168315CB9F6330A6402FFFDD1D6C30 /* libwebp-umbrella.h */, + 847E7B1F0A19709036E3E46F2089857E /* libwebp.debug.xcconfig */, + 2DD7CB878C4C7757197E5D41FE20B750 /* libwebp.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/libwebp"; + sourceTree = ""; + }; + 6B9B000CBA2C2C3B994B0679C462F810 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6541D2507CA3DF55206B130B168633A7 /* SwiftKeychainWrapper.modulemap */, + A22F13325BAECE5E89A7635E627B97CB /* SwiftKeychainWrapper-dummy.m */, + 41F496A6B5F759F53792DE5EB4472DB8 /* SwiftKeychainWrapper-Info.plist */, + 258C47A66291BF50B67D2D63D3373BE1 /* SwiftKeychainWrapper-prefix.pch */, + 3DD1F18C6797FFFC1703236E67AD6096 /* SwiftKeychainWrapper-umbrella.h */, + 6AAD72F6BD76C26A980E1477F50D4DD7 /* SwiftKeychainWrapper.debug.xcconfig */, + 3C75D009CCCA844FCC9AB9C57F1EFD1F /* SwiftKeychainWrapper.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SwiftKeychainWrapper"; + sourceTree = ""; + }; + 6D810590AA2F2D22C6A7EAD01E8C7F06 /* RxSwift */ = { + isa = PBXGroup; + children = ( + 54C7EFF876F691F4BD0D240C539E241D /* AddRef.swift */, + 3841269555E945A5F05B6B656275018E /* Amb.swift */, + 5A5C6F735186CBB62A6EBD6ECB76858C /* AnonymousDisposable.swift */, + 4C7BC7D5D706A55CD1A71A40EB4D8F08 /* AnonymousObserver.swift */, + 34FD978A375670AC41396D2A0C366330 /* AnyObserver.swift */, + 30CCA1EB71E8556A17A5DB3D0EF72902 /* AsMaybe.swift */, + 93D9B635C959143CB4FFDC5AFF2342A0 /* AsSingle.swift */, + 4A2965AF467F1BD2E4E571F66AA1F8EA /* AsyncLock.swift */, + 7E2DC49BDFE9EC35541E7552286CEF5E /* AsyncSubject.swift */, + C73C04647C0D259054E566EDEDB52C13 /* AtomicInt.swift */, + FC8CC7E34BF7AAB97DB81ECFAE7D3BA4 /* Bag.swift */, + FD45EF31979AA82A13DD5D21DD34ADD5 /* Bag+Rx.swift */, + B76508B90B02228B7DEA4C69F78B18D6 /* BehaviorSubject.swift */, + F7CE0D06257484EC85831F397106980B /* BinaryDisposable.swift */, + AF1E1A17DAD75DE28EC1283BB21F7AD9 /* Binder.swift */, + A89F0017E752468FC04ED5B3CB8071A4 /* BooleanDisposable.swift */, + E9FBF3319C645F6D97915F2E5794574E /* Buffer.swift */, + 5E7BEBCBFE4F4167333289DF14E0C550 /* Cancelable.swift */, + 58786133E8B41F9CB8F1338AF6A58900 /* Catch.swift */, + 35D06090901658DC9635ABC2BCBFACEE /* CombineLatest.swift */, + ED3122A7683DD455BE085F8C321705DE /* CombineLatest+arity.swift */, + A05278B9761105500CD055B4C550BDC2 /* CombineLatest+Collection.swift */, + F9F8C9DA82FCCA7DED58B4421BDDA21F /* CompactMap.swift */, + 26D99830BD02D5E12946A9993FD9B433 /* Completable.swift */, + 0FAC0E0BC6370F8AC09DFB8E21DCDFCC /* Completable+AndThen.swift */, + C73EB33F3F32ABFF91A2BD8F436835E0 /* CompositeDisposable.swift */, + DDC69EBC09E79F4820A84FF0EE4B000E /* Concat.swift */, + 75705F5AA04E07912B9A7028B41CC240 /* ConcurrentDispatchQueueScheduler.swift */, + CF7AC93836316D77CDFA574E1609FB6B /* ConcurrentMainScheduler.swift */, + F2F5D4485890B56FE9E54491AF71F8DC /* ConnectableObservableType.swift */, + 2FA9E6EBAB2A16F4CB0E52505E665B07 /* Create.swift */, + 5965A14C526A41781295A6BBD345813C /* CurrentThreadScheduler.swift */, + 150E76117B97BF8CC0F969C82D1F8200 /* Date+Dispatch.swift */, + BAB6D3BA9EB2705C68DEC158FFD134AF /* Debounce.swift */, + 78407664800D43DC47B50BE2A39D946A /* Debug.swift */, + E667E711991991D7861A26A9AAD09227 /* Decode.swift */, + FEED446863E4D0E5C67019C24F146920 /* DefaultIfEmpty.swift */, + 6CEDFF8B9C44A6519EBCD6F47B0F262D /* Deferred.swift */, + 692E73A19B4EEA1D680D9F67D5718114 /* Delay.swift */, + 34853EDCAAF81DB2B6643A784E02B2A3 /* DelaySubscription.swift */, + 430D8BCB203E6FA33D34F430A850845B /* Dematerialize.swift */, + 233D806C4FEE853AA2DB63AC1F837D4D /* DispatchQueue+Extensions.swift */, + 540AF0A1A3033C4B8E1EA0CD46426BD6 /* DispatchQueueConfiguration.swift */, + 917B5AE204AB6A982EF8CB9D8A5555E1 /* Disposable.swift */, + 034243C340888689E6CC333E4A5514C8 /* Disposables.swift */, + 569BA4EC75A7753E8E96D8A92267A5D3 /* DisposeBag.swift */, + 59E77574A6D6A8484D6E798D4473D69B /* DisposeBase.swift */, + 908DC03A3D9216AB6FE7FE902C573A81 /* DistinctUntilChanged.swift */, + 964E1CEEC8EEF50447125EFF8F2C54A9 /* Do.swift */, + 8D0EC04DD6C08373446E1739FED2DFC3 /* ElementAt.swift */, + BAF3240D5C6054FC9088F120BCC0AE61 /* Empty.swift */, + 5F39BB06188020CC5D8E4980721C6AC2 /* Enumerated.swift */, + FE548559FF88988E65F345D73AA762B0 /* Error.swift */, + E3043900069A7BFFDBEFA4E3F38FBBC2 /* Errors.swift */, + 4B629D4BA0B10122B36F8D3078B38BA6 /* Event.swift */, + 751C8796E14CDA48CEFF8C95250759A9 /* Filter.swift */, + DD1620B77332357059766C062C7334E3 /* First.swift */, + 377728AD2BBD2505210A33E908AD69AC /* Generate.swift */, + 761EDCF2FCF03DCA3D4AAE68F1AFF4F6 /* GroupBy.swift */, + 110065EE86084581A6832FFCF7A27380 /* GroupedObservable.swift */, + C70EC81EB5E7986D89207A07B93295B9 /* HistoricalScheduler.swift */, + 482D2B3E2E595AC7494A2C02FBBBF93E /* HistoricalSchedulerTimeConverter.swift */, + 64FDE768BCD110D76CA31416FCD660DB /* ImmediateSchedulerType.swift */, + 04D5A1989D65FB214FF4699DF25DB42C /* Infallible.swift */, + F5A050AD03631811ECB18C196A9D21CC /* Infallible+CombineLatest+arity.swift */, + FAE9D676F02A2A0DAB13CF1AB99B5A4D /* Infallible+CombineLatest+Collection.swift */, + ED390F269F79FD6E16BA0CEEC761596E /* Infallible+Concurrency.swift */, + FA95392BD8532D881A2B0ADE65F10F5F /* Infallible+Create.swift */, + 0796F5670CD11B847772FE42520CD128 /* Infallible+Debug.swift */, + 7A4BFE94DC6BB805A8659EF7C8C4D022 /* Infallible+Operators.swift */, + 8C9BE70FD7A9924081AB7126CF05E791 /* Infallible+Zip+arity.swift */, + BE64907BB7CB5497C4B31C6437EA2231 /* InfiniteSequence.swift */, + FF0216C421365AD84F77ED22BEA23707 /* InvocableScheduledItem.swift */, + 3CF535FBA7A17C38D87E054E77B938BC /* InvocableType.swift */, + DAFFEE4F2543B08BDE4F5A2D9D9F9D6F /* Just.swift */, + 6E431C8A3F91F378151064C20F5B3FED /* Lock.swift */, + 0B419226841037EB005DD3984345CE25 /* LockOwnerType.swift */, + B29D086F596B924BFC34C5571585AB8B /* MainScheduler.swift */, + 7EE7CE374C8D7614210D1BBF61EE6A98 /* Map.swift */, + C066FC22BEEDC8272BC2A1BB6454B72F /* Materialize.swift */, + 51C4B6A72A5C25F467F679AA6756374B /* Maybe.swift */, + 242D474AEFBC6106539C37EB2710B154 /* Merge.swift */, + BEDC7B7D5DFCC3D589C9258A53C79C1A /* Multicast.swift */, + F2953C440B57675D5159D5D8B8AA7E00 /* Never.swift */, + 227F5DE5D7F361C0109ECD6AD1FED581 /* NopDisposable.swift */, + DF4F8D8EEF753E757F917C580AE90AF6 /* Observable.swift */, + 5520E606C013E1A2620E94D8169AF82C /* Observable+Concurrency.swift */, + 3BC91B6AC1E57B084227D354F0152109 /* ObservableConvertibleType.swift */, + 63A719DFAC9452911312006859FB59BC /* ObservableConvertibleType+Infallible.swift */, + A233DB53169F833FF0DC8F0A5692710F /* ObservableType.swift */, + 2FC8DE6CE3CC887158E8DC8331DFDB39 /* ObservableType+Extensions.swift */, + B1A66C060BA472F214129D41D55863B9 /* ObservableType+PrimitiveSequence.swift */, + 92ED2EB695BF51A59A9309EFCD8B7BAA /* ObserveOn.swift */, + D8CF20E73C6434D4119C8CA90DE8CE77 /* ObserverBase.swift */, + 4D526378FA358EC2F96BAC5D581EFC75 /* ObserverType.swift */, + 85FAC75B5F2BEA1511718CAA480E2ADC /* OperationQueueScheduler.swift */, + 3541337BA25DD5A16B674D1ACD6A6DF1 /* Optional.swift */, + 543767B9CF81EDA9400B0DF8D3EEE564 /* Platform.Darwin.swift */, + 1D750F4A680320BE56EF1BDB092B3066 /* Platform.Linux.swift */, + 4B3B1BFD01D9928B8320CCFBE483C0B6 /* PrimitiveSequence.swift */, + 5BEBC5BCFD6362440D9D4603E86772C0 /* PrimitiveSequence+Concurrency.swift */, + 4F3BA19563A1CD125A820FAECF01DAD1 /* PrimitiveSequence+Zip+arity.swift */, + 61CF6C543261C867ACCBC0ED36A257A1 /* PriorityQueue.swift */, + F894448A1A6571D3135218466860C95F /* Producer.swift */, + 601E4E3E77557AF9F95EFC7AA4B4CB27 /* PublishSubject.swift */, + C577C2D8E39F304146E0343775615D10 /* Queue.swift */, + D9E55D135AD87DB4E17C237AFECE26C7 /* Range.swift */, + 859AB61AB5CAC4F8321CE1373C70291B /* Reactive.swift */, + 95C9B78922BE02FFF53369884C14F1FB /* RecursiveLock.swift */, + B8FA084404ADC4DAA8462C55C53C1E1B /* RecursiveScheduler.swift */, + 1C91C661FD814F39CAB6325D8D4B7E37 /* Reduce.swift */, + B1B69283210E0A01B746270E17822A67 /* RefCountDisposable.swift */, + 9C4D61F01CE840F45DF6982F78033302 /* Repeat.swift */, + AC356DA22FF4E1FD88BD44E203B78566 /* ReplaySubject.swift */, + F75F21B2AAF7305696C0A8091C93874D /* RetryWhen.swift */, + BF48C90544457D818A3293740E7D49D8 /* Rx.swift */, + D4B1C2103D7684DB18D233B798D4561F /* RxMutableBox.swift */, + 572C33F4140022FE99118556F038018B /* Sample.swift */, + AAA1C252AB5B246A0A86CC016441BE5E /* Scan.swift */, + BA7C3B976B5FED44BFD89C3C0FBBE972 /* ScheduledDisposable.swift */, + C2ACDB20B7A0F28B516DC1D2EC6212E5 /* ScheduledItem.swift */, + 658B6C4630AA41F05C5A0BE18A041CEE /* ScheduledItemType.swift */, + 4AB1931CF524B963B8848089EAC19A28 /* SchedulerServices+Emulation.swift */, + BBD2DB39097CEEE8679B416972A73C59 /* SchedulerType.swift */, + 767C6D24F65E9C5553D193CDDA8BAE82 /* Sequence.swift */, + 1264E6B84B65131BAEEAC3BA08283C42 /* SerialDispatchQueueScheduler.swift */, + 6ACF591CB08ABFD9EC45A948D394EBDD /* SerialDisposable.swift */, + 4CC6AA20493473721AA86C0A1A50A8DD /* ShareReplayScope.swift */, + 094C068E414026C8CB65CAC50AAE5C84 /* Single.swift */, + 2FE743B0489172B9D8AFCA90B825A0C6 /* SingleAssignmentDisposable.swift */, + 7F89B5CA6977567E0293D9A72DCB921A /* SingleAsync.swift */, + 846E1E84BB431FCF9858146EC42AB802 /* Sink.swift */, + 5B9D8C163A245DEBF92CAC1EA5471D36 /* Skip.swift */, + D27DD767F6F3E75D625CE059F48E6518 /* SkipUntil.swift */, + 2D5A618038C5542D4884F2ADAEB84259 /* SkipWhile.swift */, + 2CE9DBE9C323FFDFD3869DAF5A13CFF9 /* StartWith.swift */, + 570E6DBF4A44E5546A3C965D9E18073A /* SubjectType.swift */, + E7C11B2A9E8F8B341AEA7B362E23E7E5 /* SubscribeOn.swift */, + F2D30AFD0DABC502445D62AAE24594DC /* SubscriptionDisposable.swift */, + 15B4330482D87D40C8FC65666CF75DD1 /* SwiftSupport.swift */, + A48AE4B983D1A1F6626A2B7F77DFA6B2 /* Switch.swift */, + 65867AB26CF8515F87512779D35AAFE7 /* SwitchIfEmpty.swift */, + 7FAFB9102A7821804A603A0AC1AE1A19 /* SynchronizedDisposeType.swift */, + 8D9E14EEDE501EE2045A8F5EF26EDD10 /* SynchronizedOnType.swift */, + 147C5981170C19FD63555EC085839A12 /* SynchronizedUnsubscribeType.swift */, + 362ECCD2645D282758EFF964B9C6ABA9 /* TailRecursiveSink.swift */, + 721C8DFB2C522F383CCF147731D6C8CE /* Take.swift */, + 1FDBE017ACEAAA8AB1BCF651DB668698 /* TakeLast.swift */, + 7C6318E30F642CCF4DCF9EB42BEBE4A9 /* TakeWithPredicate.swift */, + 719C9CE13C261293D1AE894B5DA81EB7 /* Throttle.swift */, + E103C1EB95D05A5113B2717FBA2379A3 /* Timeout.swift */, + 6E4DF96474119089881BF2A330AB1728 /* Timer.swift */, + F723E0730199FB22CB10297CB86034E7 /* ToArray.swift */, + 8260423FE880738627BA58E39088AE6C /* Using.swift */, + D8C4C72BC795A5A37AB73555B0E71B23 /* VirtualTimeConverterType.swift */, + ACCF599458E42F9D6A4C0F3BE13220BF /* VirtualTimeScheduler.swift */, + B1840F6778BA7A0E6406875B5666EA43 /* Window.swift */, + AB1C61EFA6F55C5182E8D76C343977AC /* WithLatestFrom.swift */, + 79B63F73A0E96CFFC29D7CA1F042FF88 /* WithUnretained.swift */, + C945AE6B7986CFDFCD103CCDC547424A /* Zip.swift */, + 27DD104205E990BA251147A8755AEFCE /* Zip+arity.swift */, + 36D13BB9A77FB2ADAE7FB83B1A7DCFB4 /* Zip+Collection.swift */, + CE7B4B561955B2023D81ECA3371E7D86 /* Resources */, + 29405DD8F64F6FB41A395D9CC6104EDC /* Support Files */, + ); + name = RxSwift; + path = RxSwift; + sourceTree = ""; + }; + 7225DE4BF55596FE18C9422685DFD972 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3BB45BC95DC9AF301D42F5B0E83A6F91 /* SGQRCode.modulemap */, + 2A02BEE14F8A62CDC43C3565AB0E2869 /* SGQRCode-dummy.m */, + A4003189831C8739B8012FBB644D89F4 /* SGQRCode-Info.plist */, + A80EC926E501D239E1C011FDAC48CB5B /* SGQRCode-prefix.pch */, + 1E1CA4230DC2DBBA4DE46A15D56461F6 /* SGQRCode-umbrella.h */, + 29B8A8985447E4E7823241EE353B3F48 /* SGQRCode.debug.xcconfig */, + 8F6C4B32F8545FD29CC3B33741AFBEDF /* SGQRCode.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SGQRCode"; + sourceTree = ""; + }; + 745A4C25FE9F7A927352F897E4FBED48 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0972D3FDA84177E303FB5119120A366C /* YBImageBrowser.modulemap */, + B4781B29919C35D2A949B67A8CA17D3F /* YBImageBrowser-dummy.m */, + BAD9B38243361F92E1740F0543B8738C /* YBImageBrowser-Info.plist */, + 20DB58A377C820207F348BB5D7594CF2 /* YBImageBrowser-prefix.pch */, + 19AC9477C2E6EE717E2515047C572475 /* YBImageBrowser-umbrella.h */, + DEDA766A20F0E865ABB8743367B99D4F /* YBImageBrowser.debug.xcconfig */, + 97EF826E6048C875FF0150EBB63D62DA /* YBImageBrowser.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/YBImageBrowser"; + sourceTree = ""; + }; + 755116D0EC3DDB3340553AD7B2F9FF30 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 4E65F085B0A0714C132C36302B52DEF4 /* WebP.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 763A9448445192689F3CB9A1C7369710 /* Resources */ = { + isa = PBXGroup; + children = ( + 0A34DFF17E01BF9AA5F87F3E3FADCC7B /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 7670F38C1F6FAE80A9D3DF43B0710DFD /* MBProgressHUD */ = { + isa = PBXGroup; + children = ( + E57A882004E9DFAFD797700E1B5608FB /* MBProgressHUD.h */, + 8ED125D7528257024B809AC5B68197AE /* MBProgressHUD.m */, + EAF84AD095D72F6E0529578F7284CCFE /* Resources */, + 1CCD02D2E10EF5E63B685645A6CE4A25 /* Support Files */, + ); + name = MBProgressHUD; + path = MBProgressHUD; + sourceTree = ""; + }; + 776B5450F1DB91088FB2FF13F80D1592 /* YYImage */ = { + isa = PBXGroup; + children = ( + A9630CAF4C13F51DE80F8E912B554343 /* Core */, + B61EAB15AA2E76A18994477CCED07F62 /* Support Files */, + B89794099D83C1B271367D0889DF0174 /* WebP */, + ); + name = YYImage; + path = YYImage; + sourceTree = ""; + }; + 77EE6C1CA93C8DE4E5EC3459F5EBD036 /* SGQRCode */ = { + isa = PBXGroup; + children = ( + 54CE1D0923681693A97900F260F5D57A /* SGGenerateQRCode.h */, + 40BC21F8CF8714BDE827D23C7C0AA1FF /* SGGenerateQRCode.m */, + 9291056517CD88E650D02DBF191884B9 /* SGPermission.h */, + CF88F372EC85C9D417C7FD9226BE7F3F /* SGPermission.m */, + 254F53AF9EDB6FBC8B5E1899B6E3CFB4 /* SGPermissionCamera.h */, + 27AAEC8EEACDCAE86C246C18B522A943 /* SGPermissionCamera.m */, + 7F7204C6CC49121008516C4035FC5C9F /* SGPermissionPhoto.h */, + 07063D265D80CED41E96A7C82AE2DDDE /* SGPermissionPhoto.m */, + CE2D181860A376B53B945D2F66652716 /* SGQRCode.h */, + 8095762029B20322EA90B44A9EC7A0B2 /* SGQRCodeLog.h */, + 2FD7EEBE586F6B453B12A099DEC36BF7 /* SGQRCodeLog.m */, + A1DA6E0CC1D2FAF481390FDF49CB9EE8 /* SGScanCode.h */, + 35129EBA9B173E46DF2F6DFB335E986C /* SGScanCode.m */, + 28BE02DA192D2F9168548C9F3E648036 /* SGScanCodeDelegate.h */, + 429D673B66BF996BECCA85690BDC4240 /* SGScanView.h */, + 691FEC0751A0CEA25959BCE082FC3B97 /* SGScanView.m */, + 6D40C7E7A6B409DD2DD2897EE900996D /* SGScanViewConfigure.h */, + 9A41343F97BF0D399ADC1E9711D86A22 /* SGScanViewConfigure.m */, + 9C5F06A8E927D1486C8E2BE4C3CEF5B2 /* SGSoundEffect.h */, + 6E6F7400F823325A0BA8E1444E705B35 /* SGSoundEffect.m */, + 240416C6EF8122892481AB95ECC4CDC3 /* SGTorch.h */, + 9ABFFC2EF84C27BEA54CF8DD10F38B28 /* SGTorch.m */, + A91A77B1FDA08F75874435E05D67FD40 /* SGWeakProxy.h */, + 176B5986B4C5F9E607A7F9872F4E9DBC /* SGWeakProxy.m */, + 7B83DEB64A679673D7D9BC3289D0A787 /* Resources */, + 7225DE4BF55596FE18C9422685DFD972 /* Support Files */, + ); + name = SGQRCode; + path = SGQRCode; + sourceTree = ""; + }; + 792F48C1121F4C4727C83EED0CED5BEE /* Support Files */ = { + isa = PBXGroup; + children = ( + 102CF3B2B65C514D576D47BFFCF62BC0 /* lottie-ios.modulemap */, + 0E4A78CC3124C5516228374A8AB619AB /* lottie-ios-dummy.m */, + 1E29117C308DA807E6BE6C9C78F377D1 /* lottie-ios-Info.plist */, + B29CF7E5994BAA7457551E8424B43AD9 /* lottie-ios-prefix.pch */, + 1358D7123BAC8C0A76B45D29BF04C27E /* lottie-ios-umbrella.h */, + CE9FDBE3DB1A26028345DD54F26D62B7 /* lottie-ios.debug.xcconfig */, + 5A225B67BF641EECDAE555557900F543 /* lottie-ios.release.xcconfig */, + 8D61DEE548FF6B9874EB886B0630F353 /* ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/lottie-ios"; + sourceTree = ""; + }; + 7B83DEB64A679673D7D9BC3289D0A787 /* Resources */ = { + isa = PBXGroup; + children = ( + 40A7089ADE900B568CDC7B11FC4C263B /* SGQRCode.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 7C81E329A6BD035AE9697150B2EE7923 /* IQTextInputViewNotification */ = { + isa = PBXGroup; + children = ( + 836495F110F408D974AF64E8A7A6D754 /* IQTextInputViewInfo.swift */, + B58670AC2A6C221479AB2BFF0856B066 /* IQTextInputViewNotification.swift */, + 0FE790F74D50D08C4BB7FCA949573505 /* Resources */, + 29D9D99885D1DFB30DC95AD7C11467A6 /* Support Files */, + ); + name = IQTextInputViewNotification; + path = IQTextInputViewNotification; + sourceTree = ""; + }; + 80701750BCDAB422005E1E99AFEA6530 /* Swift */ = { + isa = PBXGroup; + children = ( + 1B0F792B49D07BDC668FEA0FEE1D35C1 /* CocoaLumberjack.swift */, + 5BEA2B127E818A0484E4A0EED9286EF5 /* ConfigurationGlobals.swift */, + AEA62DA3B37F8C57C82A14C0101890F3 /* CurrentFileNameHelper.swift */, + 19B267246ED5549EBC604DE7947CDE89 /* DDAssert.swift */, + B81878181733515C615DB48F037DC03E /* DDLog+Combine.swift */, + E964CE79E7B4729FBA8FB44F8D76D8C0 /* DDLogFlag+DDLogLevel.swift */, + 238363420B18595D15E9E84CC3740DB3 /* DDLogMessageFormat.swift */, + BAD8A328CB6EDF375064B5BEE7F65B87 /* SwiftLogLevel.h */, + ); + name = Swift; + sourceTree = ""; + }; + 80FE7852630087320C1B2A41A4C620BF /* Alamofire */ = { + isa = PBXGroup; + children = ( + C6AA4F5CE1C7962178B6099FA00101B4 /* AFError.swift */, + 3F79F59C81E9BD55D2300957A95BFEE2 /* Alamofire.swift */, + 06C8D5A6462C9B25ACD0B162347F8166 /* AlamofireExtended.swift */, + 1EBE8A67D212304EE2620BF3E7B9160A /* AuthenticationInterceptor.swift */, + D337FF64DAB0EF1DCF5E657FD4FA25D3 /* CachedResponseHandler.swift */, + D9A16E733FC1E5FE0D380BACDD771918 /* Combine.swift */, + 6FC3E4E3FE9B243927547B8B3D39931C /* Concurrency.swift */, + 4A22DBEDA2395191F537EFCBEB528C98 /* DataRequest.swift */, + AD34B51B09467734D0CC3DF50AAD4BDD /* DataStreamRequest.swift */, + D1023870AD95A079CF71B1619FF07463 /* DispatchQueue+Alamofire.swift */, + 3DD12149762F4B3855CF74E1E89307DD /* DownloadRequest.swift */, + DF3B0FB9898350076BE5086B8A648CA0 /* EventMonitor.swift */, + ABB48555987725F3F2DAF0B81D478F17 /* HTTPHeaders.swift */, + 7E4A8A666F6AF1C7AB6EF523E556900E /* HTTPMethod.swift */, + 57CD8A4DBF03A8134B3DF489CCC344E3 /* MultipartFormData.swift */, + 1DD2EEC1DF1BF388D4AF543887D09A83 /* MultipartUpload.swift */, + 4E1B70895E7D4B191C6A7482FF45BC2E /* NetworkReachabilityManager.swift */, + FE6FE100A253357F7FFFAAF9AB9378C4 /* Notifications.swift */, + B75F8EA27F5A661B3123631BB2649458 /* OperationQueue+Alamofire.swift */, + F13144DC6F4AB1AB855A41E59B26EB68 /* ParameterEncoder.swift */, + 7EF9D3B110D82B8135F84345D73A0B28 /* ParameterEncoding.swift */, + CC26C4F91EEB4297476C8D0F8B4D97BA /* Protected.swift */, + 846DE591BA61F5776BFB4F91E09C69AE /* RedirectHandler.swift */, + 6F8206ABFEFF019F1EA61DE7AADF9462 /* Request.swift */, + F2DA3850B293BF553D6E776C8DE0A579 /* RequestCompression.swift */, + 682DF2A9B09E750ABE7655327548340F /* RequestInterceptor.swift */, + 41ADAA54FC8D80364D38BC19F8E41595 /* RequestTaskMap.swift */, + 80618672C78CE395D2916A8BD993BDAE /* Response.swift */, + B87219E2EAC813A4BC04BD1792CFAEE4 /* ResponseSerialization.swift */, + BAE70D15CB0E723B27BCADCA5F142B7B /* Result+Alamofire.swift */, + 77FD67ABAAE7C891D12DD57D0E9D1D83 /* RetryPolicy.swift */, + F3BAA05F975BDBFD9DB5397876D7BA25 /* ServerTrustEvaluation.swift */, + B2E98E412F65A94B34FCD32839C494DA /* Session.swift */, + 3FED4232B22574120FFCBC78B2130061 /* SessionDelegate.swift */, + D5FE6488A1A339DC17ED5A3C860C6FE3 /* StringEncoding+Alamofire.swift */, + B9E6296C6B08253BA23FAA38899D184E /* UploadRequest.swift */, + 6BE1232171B86E58A95A465EF0D69CEA /* URLConvertible+URLRequestConvertible.swift */, + 99A57B66940EB146F742E55C77359AA8 /* URLEncodedFormEncoder.swift */, + ACD9E6D9D77A4F9B1BAA53135CC21EF6 /* URLRequest+Alamofire.swift */, + 3EFC0DEF7F6680D04A5987FBBF719161 /* URLSessionConfiguration+Alamofire.swift */, + 80462D2D5DC6C1F74F611C1A70FA0A5F /* Validation.swift */, + 97D8DC7E7FCCA6B36A398A4130916FF5 /* WebSocketRequest.swift */, + C20F07A7207DE59DBA76303351A7F8BD /* Resources */, + 817F1F5F9E85B53350E25BA657A0A8BB /* Support Files */, + ); + name = Alamofire; + path = Alamofire; + sourceTree = ""; + }; + 817F1F5F9E85B53350E25BA657A0A8BB /* Support Files */ = { + isa = PBXGroup; + children = ( + 16DCBA13E1A91EBF16B2E98581173E18 /* Alamofire.modulemap */, + 2ABDDD2F889B1861B14D2F1D61F16BA8 /* Alamofire-dummy.m */, + 7CA97CA9D5066B3D28CB8DF6B80E1E22 /* Alamofire-Info.plist */, + FB775925FBA9D3D17B378BF4CF8672D7 /* Alamofire-prefix.pch */, + BA471A54694354CA0D84E2A452949610 /* Alamofire-umbrella.h */, + 00BB87520D0D647F6D66C9FD25D56504 /* Alamofire.debug.xcconfig */, + 8960813343F218D2D666299190D67ABE /* Alamofire.release.xcconfig */, + AA7C0D3305D9B7A84E20C191529D4645 /* ResourceBundle-Alamofire-Alamofire-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Alamofire"; + sourceTree = ""; + }; + 83E626F61C8B74E4A4E472AF4DA1B54B /* Resources */ = { + isa = PBXGroup; + children = ( + 635325A329D375088E730F34019317A0 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 857BF1F8D1303285AAF3ECD76747A2B9 /* Resources */ = { + isa = PBXGroup; + children = ( + 6658B8DF65726B2667DA2082D95CDE2C /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 85B1E4EC1A97067A50E27785FFF4EB42 /* Support Files */ = { + isa = PBXGroup; + children = ( + E016D4B4D2A3A743CC8BD94D83B28D78 /* MJExtension.modulemap */, + 727FFC6D0A7BEFB9E947E7D5FEB69455 /* MJExtension-dummy.m */, + 8F244BB88E281861AA961B0B8B7F3FAC /* MJExtension-Info.plist */, + DD3A5896FE343343349FD8AFEDECA6F3 /* MJExtension-prefix.pch */, + E1B0BBCA140DCBB401B2DB7E116FC93D /* MJExtension-umbrella.h */, + 3E7390C91862B0B79A6128AFE4A9B5F5 /* MJExtension.debug.xcconfig */, + F5929496387F8B541C21CC51C6AAF115 /* MJExtension.release.xcconfig */, + 7C8894A5DD9B48BB8E9CAA4880FE51C1 /* ResourceBundle-MJExtension-MJExtension-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/MJExtension"; + sourceTree = ""; + }; + 866278242C7A5B979A23E63E21719FE3 /* Appearance */ = { + isa = PBXGroup; + children = ( + 71A3AA46FA62EF3D23F05187F1EA1CD0 /* IQKeyboardAppearanceConfiguration.swift */, + C068E1B38BFB93E75CB74A95D3FAC3A4 /* IQKeyboardAppearanceManager.swift */, + 1661F2067BAE2A0A0E5D6C5585A309D4 /* IQKeyboardAppearanceManager+Internal.swift */, + 530D37E6D2B62B3C6E8375CD070A1ED6 /* IQKeyboardManager+Appearance.swift */, + AED21DA327E29BB41B917FB1E341C399 /* IQKeyboardManager+Appearance_Deprecated.swift */, + ); + name = Appearance; + sourceTree = ""; + }; + 89982FE6845276AD7CB7B77D6DE60F37 /* CallbackProxy */ = { + isa = PBXGroup; + children = ( + A99EBE5E9E3CAA905EC6539367F7792C /* CallbackProxy.h */, + 55A50E8CBFB62149F0DCE7D564030662 /* CallbackProxy.m */, + 397F90741022772F19158E4EB60AC6C5 /* SendMessageCallbackProxy.h */, + 03EEA40526D078ECA2261B80DFC83B93 /* SendMessageCallbackProxy.m */, + FFEF543AD54697BFC217DAF8CAB97D91 /* UploadFileCallbackProxy.h */, + E3AEA4903A4A524064387947E97A51C2 /* UploadFileCallbackProxy.m */, + ); + name = CallbackProxy; + sourceTree = ""; + }; + 8DC7B97A296FA6467418938125A62098 /* MarqueeLabel */ = { + isa = PBXGroup; + children = ( + 9F98F9817B280E58C08FC6A1993D49FA /* MarqueeLabel.swift */, + 1ED39D70B77D04A440300E85A5468541 /* Resources */, + 439E0194679A65B117123D3D6E32A879 /* Support Files */, + ); + name = MarqueeLabel; + path = MarqueeLabel; + sourceTree = ""; + }; + 8DDB28579890664F7606B8D9B6AA6B47 /* Placeholderable */ = { + isa = PBXGroup; + children = ( + 7928401BE8E30C66EE3ADE8DD8F0B52D /* IQPlaceholderable.swift */, + ); + name = Placeholderable; + sourceTree = ""; + }; + 8E15EA679BF9F5A8307EE74456EB0B64 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 12044D27E9FC771C5C3AF8F57F2D37C1 /* AMapLocationKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 8E4F21203E1D98F8A64D3A0DA7D801EF /* Support Files */ = { + isa = PBXGroup; + children = ( + B77EF20CA7687CBA14FE0DDB7C8EBDC2 /* CocoaLumberjack.modulemap */, + 7B82EBD3E153DBD61BEBCBDBDA0605C7 /* CocoaLumberjack-dummy.m */, + 09D14340A7DE0DC69768143F4781EF5A /* CocoaLumberjack-Info.plist */, + B5546FF2CD7193A96888BDF496E32BAB /* CocoaLumberjack-prefix.pch */, + 316B60AE42434791E20A83CEC6A09383 /* CocoaLumberjack-umbrella.h */, + 1716B1D0D70C770AC24EDDD4C69E194B /* CocoaLumberjack.debug.xcconfig */, + 4471EC3FFF68A5CB2C39BF14527FC3D8 /* CocoaLumberjack.release.xcconfig */, + DB4E4ECB3B5E8C8B4E15FCD674B35148 /* ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/CocoaLumberjack"; + sourceTree = ""; + }; + 8F4E6974780453B057FE5CEA6D6A847A /* Support Files */ = { + isa = PBXGroup; + children = ( + A1DCF093CA16431C64ED20AF66EAB4DC /* Masonry.modulemap */, + D234CC248B770A58420B85F0D51049CD /* Masonry-dummy.m */, + 19C4C26FFF512354F4D686A50594A869 /* Masonry-Info.plist */, + 3FBB5BAF1EB447A1809BF7973FC37468 /* Masonry-prefix.pch */, + 4CE033DD89D2C7F468E6CF4145EF8AB3 /* Masonry-umbrella.h */, + E078D2663D3DCEFA605A0BE7820890AE /* Masonry.debug.xcconfig */, + 217E00EF02173DE5AA3D621B58AD5EA7 /* Masonry.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Masonry"; sourceTree = ""; }; 8F6F1E156F7DCE4CC0B44D3F8A208E68 /* Pods-QuickLocation */ = { @@ -8499,804 +8148,1535 @@ path = "Target Support Files/Pods-QuickLocation"; sourceTree = ""; }; - 921FB6D8D5BA26D8F32232770876F4B0 /* Resources */ = { + 91CAAEEC66E3AB60BDA2A9A0B31DAF2A /* SwiftDate */ = { isa = PBXGroup; children = ( - C028AA7709CA95FD821510CA4D1F151B /* AlipaySDK.bundle */, + CE234EDBBA854CE992A10F0073B4502C /* AssociatedValues.swift */, + D7E778E7BD5CE4AAFAD2713C620AF5E0 /* Calendars.swift */, + 7EF8EEB5237176128E14B293533A72C8 /* Commons.swift */, + 81EBE4E4D49DF7168E5925FA02B2916A /* Date.swift */, + 2994D8B96A2BDBA3F7FDC7E3829339CC /* Date+Compare.swift */, + 4E1182014BA99CB0BFD1ED56B36F4889 /* Date+Components.swift */, + 675B4C11F7B590880C77E8AAEF1F3A60 /* Date+Create.swift */, + 3A24B45B99DABB55846B35CC63B19366 /* Date+Math.swift */, + E7C46C3987E417EC909753A8454CF13B /* DateComponents+Extras.swift */, + FA082DF76C288109730ABA3263B7E26D /* DateInRegion.swift */, + ADDB1F578A79A46460968775A7A8BB7C /* DateInRegion+Compare.swift */, + B773BB9FAC093187BA138848D154492E /* DateInRegion+Components.swift */, + F35C928F53F26BC77F3325C5C0D4FAB7 /* DateInRegion+Create.swift */, + 3F20D74BF18F61F2F8043E9BB9261874 /* DateInRegion+Math.swift */, + D9B0C75F024986060AABFDD7233FC611 /* DateRepresentable.swift */, + A4739742911C8301AAE3EF467466767F /* DotNetParserFormatter.swift */, + 57893FB92C503783316937718B7D6CFE /* Formatter+Protocols.swift */, + 001CAC5B0387F752F807373679700C1A /* Int+DateComponents.swift */, + AF9289DFE96B0D477395C1AE2E955C29 /* ISOFormatter.swift */, + 13E455DA64F34549C2DF36123E908D73 /* ISOParser.swift */, + A989C2079B8C5E48A3BFE36041C1D718 /* Locales.swift */, + 325E7C92D696471576D9735C82973FFD /* Region.swift */, + A0A7A20E96488707B469EF7CBE0AEF37 /* String+Parser.swift */, + 7A3BD5869D2B1C7A4FBF323D773D9E1C /* SwiftDate.swift */, + 5C6F7913A879E3C937BA173A6E58EDBC /* TimeInterval+Formatter.swift */, + DFF623CF9D4FF72AB1D21B2441FFEE76 /* TimePeriod.swift */, + 97AA22B3EFF347E5FA01A0D40617FA36 /* TimePeriod+Support.swift */, + C4457220F18221DEEE691C455779CA75 /* TimePeriodChain.swift */, + 208AFEA3CC5DD10476B29311F5E8F3EE /* TimePeriodCollection.swift */, + 3D5452FF8CDB97481CA818937F4AA899 /* TimePeriodGroup.swift */, + 706126F07CEBF1B19EAA3D54064C3002 /* TimePeriodProtocol.swift */, + 15CF4020595F378B3FBC56EF16E33756 /* TimeStructures.swift */, + 076D230EE2230FCE5631F7FF4CE38942 /* Zones.swift */, + FFA90A54CF1FB8501D2D40721BC02ED1 /* Support Files */, ); - name = Resources; + name = SwiftDate; + path = SwiftDate; sourceTree = ""; }; - 922C4D794D5DA21F27DE371A32C81DC9 /* AlipaySDK-iOS */ = { + 9302ABDEEAE1E23B6BE7B4D3ED467269 /* URLNavigator */ = { isa = PBXGroup; children = ( - 10C9798C964CC79A5087E94A601C1F14 /* Frameworks */, - 921FB6D8D5BA26D8F32232770876F4B0 /* Resources */, - 45F0B9ECB870C481059FDD419A46F91D /* Support Files */, + A1249BF2812DDEF7380FB54875C83716 /* Navigator.swift */, + 9A60D3136A08EC0C773382CEE7C49B14 /* NavigatorDelegate.swift */, + BAC22EE2D24B29FFE5B322BDA4188153 /* NavigatorProtocol.swift */, + FA3223D73145E787B1981391FD710DAA /* UIViewController+TopMostViewController.swift */, + A7E0219D96D197D256967A214677AE6B /* UIViewControllerType.swift */, + 011AFAA206FF4A0E965B6A9437F4A8E6 /* URLConvertible.swift */, + 69996CE0C975FE55FEB5941358F9A2D1 /* URLMatcher.swift */, + 52A20B3BF7B48A758BC8D999EB4539AE /* URLMatchResult.swift */, + 5593B53EE9179304F30998CE87A02732 /* URLPatchComponentMatchResult.swift */, + 8E25ED01381098B01A662D40ED3B1C5E /* URLPathComponent.swift */, + 3DD3CA31C0E01928E70F135DF21E91FB /* Support Files */, ); - name = "AlipaySDK-iOS"; - path = "AlipaySDK-iOS"; + name = URLNavigator; + path = URLNavigator; sourceTree = ""; }; - 972E5EC9A62033D326264F0F98074964 /* Support Files */ = { + 93AFB13EFAA869C5FE807153A8A61064 /* AMapLocation */ = { isa = PBXGroup; children = ( - F7966531A0183DE2C6CC53DBCA688E00 /* Moya.modulemap */, - 86886A733B89F9C049C049AF30166EE7 /* Moya-dummy.m */, - D3BF4F0F1230764811DE5441812E7D81 /* Moya-Info.plist */, - F210D2D653C03CF3DBACFBE1DAEBB5E6 /* Moya-prefix.pch */, - 26C805396EBE9A3676570EE86EDD4E85 /* Moya-umbrella.h */, - 3D3A69BB5C302A89D95825EEBCFE3F76 /* Moya.debug.xcconfig */, - 9C13E6FBDDAB97317E0522724037E9E2 /* Moya.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Moya"; - sourceTree = ""; - }; - 9AA229A44FED65851AA309B6B73724C8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 642B181C4A56014302CB2E2CA604D881 /* ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist */, - 20FEFFB46CDB20A45D5D9381DA903496 /* RxRelay.modulemap */, - 95F037BC936089687A0571DF3857C90B /* RxRelay-dummy.m */, - 559EB65974650632BD59D0C0A9472C5E /* RxRelay-Info.plist */, - B620E23545E5CA00BFEFA93D97FBF1BE /* RxRelay-prefix.pch */, - DB08296A6F18F928A00EC7AFDB47E3C1 /* RxRelay-umbrella.h */, - 69987DF0C0EF80F634B3BFF7171C82B1 /* RxRelay.debug.xcconfig */, - 80B6A76BDBFB76C791769481A45315DB /* RxRelay.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/RxRelay"; - sourceTree = ""; - }; - 9F23C9A2C862A7761153F64FC8E53794 /* SGQRCode */ = { - isa = PBXGroup; - children = ( - E1DD7D29BF1FE1A9B3EA3877C3D2A929 /* SGGenerateQRCode.h */, - 837E21014C5382624DE0924B4AA99FE0 /* SGGenerateQRCode.m */, - ABAA6161220738159EA6407CD6D75B1C /* SGPermission.h */, - 4DD2273F4ADC8FF6EB64FA7E9A31E108 /* SGPermission.m */, - 2E084374ABF7B54C419FC9A80C6AA656 /* SGPermissionCamera.h */, - 977D96FA02CBC7EE86913380335CAEE9 /* SGPermissionCamera.m */, - 35375E5ADCE5DCF4EBBD0DD0B80966E4 /* SGPermissionPhoto.h */, - EE3AF8CF71094C3214003559DB10B3CD /* SGPermissionPhoto.m */, - B09F2B014F2F335A6DD1960BA5E604AF /* SGQRCode.h */, - C5E3669AB59288D37DDEF78C1D1789C8 /* SGQRCodeLog.h */, - 045E796AEE22999EA4184E68E9B7F8E5 /* SGQRCodeLog.m */, - E9603A4E8FF5FF21DE3C230D19267661 /* SGScanCode.h */, - 5EFEC4792E6AE843B581D17FC92072A0 /* SGScanCode.m */, - 541168B5F63506CE532597108DD96983 /* SGScanCodeDelegate.h */, - 6491D6CBC9BF383CD1D2778BB5EE5732 /* SGScanView.h */, - 606D6DE0357D8862B257CC628D6256A6 /* SGScanView.m */, - 87661C0964375E9E5AE8195C668A957E /* SGScanViewConfigure.h */, - A10D88129CFDA405482F878874F048F1 /* SGScanViewConfigure.m */, - 612B3D3A7C5E1084E5EF5EC8A5C44A27 /* SGSoundEffect.h */, - C8317EDB1958C164EFD8B633A18F397F /* SGSoundEffect.m */, - 89178DBDEDAE6B75FB7DB74297B2681C /* SGTorch.h */, - 884E6940DA4CC32666F2FCBF618682DB /* SGTorch.m */, - E517A2C282848FD3AE6C7353C8CFAEEA /* SGWeakProxy.h */, - 51C1A964478BEE6F4C1DE2808C0CB83F /* SGWeakProxy.m */, - B7B0FCA22ABC96D08805C7BBFB354A55 /* Resources */, - 27051B64C26EB0CDE32F75D2844F36EA /* Support Files */, - ); - name = SGQRCode; - path = SGQRCode; - sourceTree = ""; - }; - A0BE7DE0F770AF3D3C34A3D4430737E5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5AD1ACB4D0E1933E41E73484E8ACF882 /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */, - 4B3F4F75DEDBE40BA5CC5D419F97FA1F /* SnapKit.modulemap */, - 4301E59E401F1C6F4638E1B62F53C1DD /* SnapKit-dummy.m */, - 641158A1573E7A37BD70DE32A4512D60 /* SnapKit-Info.plist */, - 424C1229D81117AFB23943DBBE7C4DCE /* SnapKit-prefix.pch */, - 673FBA63F9F3560B749DE95F0776152C /* SnapKit-umbrella.h */, - 0FEC85C5E00BEEAFA0B609E7B5609E94 /* SnapKit.debug.xcconfig */, - CB11F69CDAC50ABF5A1340AA052D39B4 /* SnapKit.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SnapKit"; - sourceTree = ""; - }; - A1787D86241D5231123FE52CE70DB675 /* Support Files */ = { - isa = PBXGroup; - children = ( - A7CC3C827AC34942AB71C3500296EC33 /* IQKeyboardManagerSwift.modulemap */, - 1C1D99CE01FB6BB6346D7EBEF5BF9DFF /* IQKeyboardManagerSwift-dummy.m */, - AD3691342BA64611F087DB419A91ACBB /* IQKeyboardManagerSwift-Info.plist */, - F6BC92DE073B96A0C6BE3673798472A0 /* IQKeyboardManagerSwift-prefix.pch */, - 7D5EC839402CC9058163D064D0B5E9CD /* IQKeyboardManagerSwift-umbrella.h */, - 5C4D9BE2EA61918FA56C7073CC77DB33 /* IQKeyboardManagerSwift.debug.xcconfig */, - AAD0FAC7FA408BC1FCB711EFCEDAB743 /* IQKeyboardManagerSwift.release.xcconfig */, - 5B181ACC3F219337AE64C826FE02B413 /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardManagerSwift"; - sourceTree = ""; - }; - A21F7BF51B43F3776F3DE3D773340DFE /* MJExtension */ = { - isa = PBXGroup; - children = ( - 79D95A5C4EA4042D907803C45FFD333C /* MJExtension.h */, - C2EBF1ACC8534A22F5BE37FAAD051863 /* MJExtensionConst.h */, - 5C8BC587C73189ADA5510B1B9B628F89 /* MJExtensionConst.m */, - 7AAC2C1B32FB6621960C9A8DA2B3F93B /* MJFoundation.h */, - B9E550B72777FDD735DA970FB0A93766 /* MJFoundation.m */, - 1B3F62938E971A0D73273E6ECF332744 /* MJProperty.h */, - E48DCE42501B7013F70D4B72A64A9C20 /* MJProperty.m */, - DC9F85B076220EC545A9E0817FAA7561 /* MJPropertyKey.h */, - D8D05105D891E4492E3064011BFFBC55 /* MJPropertyKey.m */, - A453B6D8197404FC1374D7F63F8B640E /* MJPropertyType.h */, - 4E106F539EFD985E901DB6221706FA68 /* MJPropertyType.m */, - 4E618947B25509EAF74A486F71C3AD21 /* NSObject+MJClass.h */, - BD30A03CDBD30EA947D04F11E53B9CCE /* NSObject+MJClass.m */, - DA665FB1BA93A17FF0554D6D7B30AD0B /* NSObject+MJCoding.h */, - B77B6CE440BB9382708B4A69C5FD7B41 /* NSObject+MJCoding.m */, - 3C25F3519ADD38A0760C364F56755FA4 /* NSObject+MJKeyValue.h */, - 0ED0D149F401AB63D52DF294E59B0FC1 /* NSObject+MJKeyValue.m */, - 6EECED2B41B3AE95453700ECC56AA3BB /* NSObject+MJProperty.h */, - AC86EDE9FF4EF53151A9DBC007517513 /* NSObject+MJProperty.m */, - 4FA8FC41EA3473140B417F7087C0C8B5 /* NSString+MJExtension.h */, - 8FFE248620888CCBBC57FC0D85239779 /* NSString+MJExtension.m */, - 060C0D7D58AF11D88F155E40DD4165B6 /* Resources */, - 346D59E9FB8F99F5AA4CE3479F2C2499 /* Support Files */, - ); - name = MJExtension; - path = MJExtension; - sourceTree = ""; - }; - A72913F8546147BA91D824527DC723A4 /* YYImage */ = { - isa = PBXGroup; - children = ( - E38841225B2C182D3288F2B62AC3EEDA /* Core */, - 473006755050AAF82ADE32D6DCD56438 /* Support Files */, - 4804C5A011C353043D9438F1BC53644D /* WebP */, - ); - name = YYImage; - path = YYImage; - sourceTree = ""; - }; - AE36DC85671F639195920D649C814426 /* AMapLocation */ = { - isa = PBXGroup; - children = ( - 8F10B233277A6683E58EBB3023563848 /* AMapGeoFenceError.h */, - 69FE14BC30CB5DB48553F5B2DF36AB77 /* AMapGeoFenceManager.h */, - 263CA5BE93AE4924560E96B53D32776E /* AMapGeoFenceRegionObj.h */, - D9ACDC91BE3AD7423323355FF0F6AE52 /* AMapLocationCommonObj.h */, - 2BD48D1D20B426CEAFFB0CD0AA66CB69 /* AMapLocationKit.h */, - E6DD771B15976B2FCF55AF7141BF75B0 /* AMapLocationManager.h */, - 73CA2DF5C48F1B7F05C3D4908C3F0563 /* AMapLocationRegionObj.h */, - 4FE8974D1F8254C4E1857EBC09B66C6F /* AMapLocationVersion.h */, - 17BF613B5E6E87BD0EFB340EF8E07E6C /* Frameworks */, - 3DAA87A8620CF6996E21D4944FCC4EF8 /* Support Files */, + AAA1925E912633702DFCEED5D168B04D /* AMapGeoFenceError.h */, + E55922B6D21A9C0413F4DF52451235A1 /* AMapGeoFenceManager.h */, + C7C170BCC9E743F204BF744A97B3443F /* AMapGeoFenceRegionObj.h */, + 16C74F65B7443D250D37B4BC5DD2083A /* AMapLocationCommonObj.h */, + 6BC962C67B698BC716FD521FD0D1ADBB /* AMapLocationKit.h */, + 2A6CF4F32816B8F9BEFB21EC84C87C8A /* AMapLocationManager.h */, + 03E3ADB34B67871F5272B69DD31BCF73 /* AMapLocationRegionObj.h */, + 15C82964192FC0B4A30796ED44DCBAF0 /* AMapLocationVersion.h */, + 8E15EA679BF9F5A8307EE74456EB0B64 /* Frameworks */, + FD24351E668B6206CE5BC360C713BFB5 /* Support Files */, ); name = AMapLocation; path = AMapLocation; sourceTree = ""; }; - AEF8663A15DF8CF8A388BC4C30E322BB /* Alamofire */ = { + 97F3D01C278D7DB488701511B859D170 /* Support Files */ = { isa = PBXGroup; children = ( - 13B22DBEA0599B8AB9BBE81DB9E9144F /* AFError.swift */, - 50BEB8D58D55B2FCF2EC6E5DFC90DAC7 /* Alamofire.swift */, - 8C6DF38B89C797731652AD83F26B9E11 /* AlamofireExtended.swift */, - 728805FD0FBBD9E7F0C8D7E8AA79948C /* AuthenticationInterceptor.swift */, - A91F2AA5FE62815A42F8020A333595DE /* CachedResponseHandler.swift */, - FB37AE0B23DBB1F9D609993CCEB82AC1 /* Combine.swift */, - 0EDF22B2F7710B68BEF42DBD7960FFD2 /* Concurrency.swift */, - EB09968F5CF26869F7C209FA6BA9D6AB /* DataRequest.swift */, - 9258CFF7C85CF79A431C334C91C49A73 /* DataStreamRequest.swift */, - E1C6598101489A7E7111805E5CF77949 /* DispatchQueue+Alamofire.swift */, - BD95EF9454E3F53ABDBC35194ED025C5 /* DownloadRequest.swift */, - A01BB5837F881970519254C3F1F0B175 /* EventMonitor.swift */, - D33902803F47DEADED2DFA7B7C947887 /* HTTPHeaders.swift */, - A9C59615FF8BA2E341509BA2898E468F /* HTTPMethod.swift */, - CB9C1CC0C5611BE2E3A59B48E0E6260A /* MultipartFormData.swift */, - 4DF522262FD43A31939B404FAB1CDBF3 /* MultipartUpload.swift */, - D67CAECC94DDFB066BCA8DF4BF753DB3 /* NetworkReachabilityManager.swift */, - 06030FFD43B3B128FC6ABE677BA4FE54 /* Notifications.swift */, - 4B56B9C4446B4864B2E6EC9FA7AB1F4C /* OperationQueue+Alamofire.swift */, - 45DECE1C164F713D09FCC8D39EE8815F /* ParameterEncoder.swift */, - C90C40D569DD82664EC7B02F8B760153 /* ParameterEncoding.swift */, - D08BE8E0FEE054D26245C2FF226177A0 /* Protected.swift */, - 4DAF97AA6C3E4088F2E9F27E50E1B400 /* RedirectHandler.swift */, - 4AB0C8AFD4E85D17435F4F56F8794C41 /* Request.swift */, - 55EA2E5B9949ED4975A64ED4EF5C4522 /* RequestCompression.swift */, - 2DBF29A5234553C463B88860B18F477F /* RequestInterceptor.swift */, - A2E935C69715E7BEAA6E8BB816DE0032 /* RequestTaskMap.swift */, - 8763DABE5287013A3C662DD1707CD9F1 /* Response.swift */, - 53902042B5E9FA22F75D07AD3A462902 /* ResponseSerialization.swift */, - 907CC3064F74B222E3E0073D5AD8B602 /* Result+Alamofire.swift */, - 0DC7E49D8AEF596CCFD395189A1C41EC /* RetryPolicy.swift */, - 3099CDBCAB77ED24E860C30FE72F7E92 /* ServerTrustEvaluation.swift */, - BC6CFC68DC5E71DEF88306F0089B2448 /* Session.swift */, - 66632D9CC4BD0C730CF397F56806EA89 /* SessionDelegate.swift */, - 1089D62CEB1502272B582AC17278077E /* StringEncoding+Alamofire.swift */, - 00F55D2694BB24CBDD85533DCDB7FC2F /* UploadRequest.swift */, - BEFCC919734F12F29D14D4BC157695AB /* URLConvertible+URLRequestConvertible.swift */, - E620B11AE2F7F2E8AE1F8A1757329947 /* URLEncodedFormEncoder.swift */, - 05CFBCB3BAF48A65126967EB66B83905 /* URLRequest+Alamofire.swift */, - D1F579E8E331132963070FBC936F1C2B /* URLSessionConfiguration+Alamofire.swift */, - 6D36A4A7070EA83191C07AAA60853D10 /* Validation.swift */, - FACD7E533AA338FFEC18D2833425475F /* WebSocketRequest.swift */, - 4FA4E6AD15A0774E395365FBB07F4357 /* Resources */, - CFAC46A4B9E993B77CF33E5377EB930A /* Support Files */, - ); - name = Alamofire; - path = Alamofire; - sourceTree = ""; - }; - AFBCE2F3AA1D1F90131DD2F8C66B49FB /* Support Files */ = { - isa = PBXGroup; - children = ( - 70DB28246BADC7873C92DF9506CFB0E9 /* OpenIMSDKCore-xcframeworks.sh */, - 3F73DD0E591F2EA915EE953972CB39F5 /* OpenIMSDKCore.debug.xcconfig */, - AD0CEA64153A7C2D5E5C9DBB44A63976 /* OpenIMSDKCore.release.xcconfig */, + 0CCFB049C63FB80FE0F10ECBC2C8765F /* IQKeyboardReturnManager.modulemap */, + CF2AB942FDE7274CE1F5D9667B6EC127 /* IQKeyboardReturnManager-dummy.m */, + 43047DBE059866A1011930C625E2B47E /* IQKeyboardReturnManager-Info.plist */, + 43460343EA43EE4FC9F9EF609A697333 /* IQKeyboardReturnManager-prefix.pch */, + 7D50006193AC7916C53011FD30B6B91F /* IQKeyboardReturnManager-umbrella.h */, + A462FD5A5791151FAF19DE1A2BB6CAF8 /* IQKeyboardReturnManager.debug.xcconfig */, + B7C11EDE3B450C9942C6603E24661EF0 /* IQKeyboardReturnManager.release.xcconfig */, + 45CE67E2BB4A7AEE69B84C4CB510B2F2 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/OpenIMSDKCore"; + path = "../Target Support Files/IQKeyboardReturnManager"; sourceTree = ""; }; - B0262CF67135F1713BB90F3C8B3C05E6 /* Resources */ = { + 989A441817A6A723DE97D351AA69E255 /* IQKeyboardCore */ = { isa = PBXGroup; children = ( - D33E322A3E5E2970FF84AD445CACE4F1 /* PrivacyInfo.xcprivacy */, + 4D4805E9DDAB51282FCDDBEF197F3FFC /* IQKeyboardConstants.swift */, + C3F1699EBCB271D06621D975F6663A0E /* IQKeyboardExtended.swift */, + 7E0BB18C9D64642FF39EC8D976EF900D /* IQTextInputView.swift */, + 8C71DAEAD1ACD3A2CF92620FB0B243ED /* UIView+Hierarchy.swift */, + C3DF1F07A9D73ECEA31A7E4FD4BA7F12 /* Resources */, + 31BCA67516E8A034FC190F8597D88B81 /* Support Files */, ); - name = Resources; + name = IQKeyboardCore; + path = IQKeyboardCore; sourceTree = ""; }; - B22F019765CB5CAA957DD04C8674CB94 /* Frameworks */ = { + 9C63DD6DC4AC196298456B1A2338DEBE /* Frameworks */ = { isa = PBXGroup; children = ( - 6E39E259B8C3408A8E66B54ED16254B8 /* WechatOpenSDK.xcframework */, + 02255245C8526288007AF001BD408955 /* WechatOpenSDK.xcframework */, ); name = Frameworks; sourceTree = ""; }; - B2401A54F181E6C8E86B7C97C40BD5F9 /* Support Files */ = { + A4E463123A809DF90D0568E1DDE155F3 /* Support Files */ = { isa = PBXGroup; children = ( - A2BDBC359068D4ABAE82394D74FB8523 /* IQTextView.modulemap */, - E3D6A062A7548B784F291EECB08E8550 /* IQTextView-dummy.m */, - 8D8796D991AF7C66B8FE87145BE2DEFD /* IQTextView-Info.plist */, - 6FB2EC71F2E7CDFA675A35527736E651 /* IQTextView-prefix.pch */, - 04D575F8A3ECAFDA90EBA0B26E34F657 /* IQTextView-umbrella.h */, - A9EC385B4E999D9713BD79006E2B9E7C /* IQTextView.debug.xcconfig */, - 0719BA04D2F1F80681741FC01F6CCDDC /* IQTextView.release.xcconfig */, - B73102B73B599D035D7EDCACE5B41029 /* ResourceBundle-IQTextView-IQTextView-Info.plist */, + 380EC785DA86FF910564CC64B9092D82 /* ObjectMapper.modulemap */, + 66B47605C4EF7FD85950E34EA826F013 /* ObjectMapper-dummy.m */, + 5A16456B3A98DD7588766308353AD37E /* ObjectMapper-Info.plist */, + C80034199622607DF099889E0346FDEB /* ObjectMapper-prefix.pch */, + 52F8D243AD8458EB2B14CD5EFB786D3A /* ObjectMapper-umbrella.h */, + C8009C99851F258D3BAC40E139579AC5 /* ObjectMapper.debug.xcconfig */, + 2911308F19328BC6C09F92A3C6D1A163 /* ObjectMapper.release.xcconfig */, + 42BAAA1958F2B74B2EBA9E6128334A32 /* ResourceBundle-Privacy-ObjectMapper-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/IQTextView"; + path = "../Target Support Files/ObjectMapper"; sourceTree = ""; }; - B5889D6F654B473CDBFF2CF8681A3584 /* IQKeyboardReturnManager */ = { + A76C6D0D354B54FB7824FBD907043EE4 /* GYSDK */ = { isa = PBXGroup; children = ( - AEC48A026B01DBA97EE27FE1A72019A8 /* IQKeyboardReturnManager.swift */, - 8735CA7CBEA3EC29C13590FB46722BD3 /* IQKeyboardReturnManager+UITextFieldDelegate.swift */, - B7E1ED39AAD946F41815380593F8080E /* IQKeyboardReturnManager+UITextViewDelegate.swift */, - EF496A8009AFD9E84E8B500C581ECAC4 /* IQTextInputViewInfoModel.swift */, - E8BAC1ABC4D224C9FD7B9EA798FA89CD /* Resources */, - 640AC1DE4D70B8B55EFC3769C542ECD1 /* Support Files */, + 19A53117A1E38E29943319780A65256B /* Frameworks */, + 550AAF8EB2D5011A4350D00CC7A6F635 /* Support Files */, ); - name = IQKeyboardReturnManager; - path = IQKeyboardReturnManager; + name = GYSDK; + path = GYSDK; sourceTree = ""; }; - B60B395FEF9D2B980EC8C3072FCC6020 /* Resign */ = { + A820526A396D3C2BB6AA329C5822DCD1 /* MJRefresh */ = { isa = PBXGroup; children = ( - C339600B8575DE34AFEDE149E0B30136 /* IQKeyboardManager+Resign.swift */, - B5400BB1D506451A1F627BEE91353F39 /* IQKeyboardManager+Resign_Deprecated.swift */, - 1A1F982C6186E1FDD481C50E8701D062 /* IQKeyboardResignHandler.swift */, - 5A53DA679B0F0E0C5A4B89F6FDDADC73 /* IQKeyboardResignHandler+Internal.swift */, - 8C7772A4DD34FF5F3A20C6153B961319 /* UIView+Resign.swift */, - 78CB2111E31FA7D356C77E38AD4E7B19 /* UIView+ResignObjc.swift */, + 72BC2659EE479F1DEDEA53D93AC18285 /* MJRefresh.h */, + DFB5011F8D337C897BA3D4066DAA8DAB /* MJRefreshAutoFooter.h */, + 8B202162B632B08EE2812503526E54FC /* MJRefreshAutoFooter.m */, + C7AD74FA213A3FFDCA24D48ABA00E8F0 /* MJRefreshAutoGifFooter.h */, + BA6D541DD91BB83D988956E0E46B9C27 /* MJRefreshAutoGifFooter.m */, + F307E5CD7860C4F016E1F43A2267C932 /* MJRefreshAutoNormalFooter.h */, + 805779FF7031E298D79B68E54C435A67 /* MJRefreshAutoNormalFooter.m */, + 958AA68B7BB3D260BE27D937E76C9710 /* MJRefreshAutoStateFooter.h */, + DE63E8D0A27679395591CD603D53B1EE /* MJRefreshAutoStateFooter.m */, + A781D796BB0C79520A672AE004474165 /* MJRefreshBackFooter.h */, + 13B32687B49E8C118D10964F8D6250E1 /* MJRefreshBackFooter.m */, + C697541991BB83795F62A7EAC8FD2B49 /* MJRefreshBackGifFooter.h */, + 14D2737365898F5CAB68817BBFBF3E3A /* MJRefreshBackGifFooter.m */, + BB037BF10F9C4170C64093D37538877C /* MJRefreshBackNormalFooter.h */, + A229AE0D21491B82D7E0DAE152DE073D /* MJRefreshBackNormalFooter.m */, + 72CE3573CD388705660B27A2AF26D4C5 /* MJRefreshBackStateFooter.h */, + 715C3629D8ED7790147D9200459C63B8 /* MJRefreshBackStateFooter.m */, + 8F2ABB2AEB2CB29DE8F616DDE208CB10 /* MJRefreshComponent.h */, + F1275B92920129B3ABF887C6F40F3504 /* MJRefreshComponent.m */, + 5A3A23E72BF86121106194AD04651D2E /* MJRefreshConfig.h */, + 4E9633A6F0549DD0FA20124BD54A186F /* MJRefreshConfig.m */, + EEBEE290B7F33E3A002E037EFADB8B2F /* MJRefreshConst.h */, + C4AEF7DE14166C25132B610DAB1F3C00 /* MJRefreshConst.m */, + E8B80E9AC9A0222E9274AA651470F3F4 /* MJRefreshFooter.h */, + E10CC87B0811F86105A32F88A4F75123 /* MJRefreshFooter.m */, + C85509D11138B3103A30250316CBE2D6 /* MJRefreshGifHeader.h */, + 91B0431B844DD4BC6EA015F23F666DBB /* MJRefreshGifHeader.m */, + 8174B2C2A98517B4AD3D5FEF87B40F58 /* MJRefreshHeader.h */, + 0C2E42CF6F1C4002FCCDFCE682179B50 /* MJRefreshHeader.m */, + B9825E98E044B068EC2375D6E98CF2F9 /* MJRefreshNormalHeader.h */, + 468FE65CB846EAB3F699F8E68CCDFC1E /* MJRefreshNormalHeader.m */, + 3CF92AF5D8DFCE759BF000B71F0DA02E /* MJRefreshNormalTrailer.h */, + 145E202321E3781E1B84D6204FD9B9E0 /* MJRefreshNormalTrailer.m */, + 01E2CDB0E2DB23B7E2FDD6F56D617292 /* MJRefreshStateHeader.h */, + FF39E4326B5C2C88D65E04B5814284C9 /* MJRefreshStateHeader.m */, + BFFFBA599610B03A82906A883745C95A /* MJRefreshStateTrailer.h */, + D0A5F579E5060D3B3840AA15280205F8 /* MJRefreshStateTrailer.m */, + 59306A0835C1BE58B6CBDF64FF22DF38 /* MJRefreshTrailer.h */, + 1276FAED22369627709084038B6FF270 /* MJRefreshTrailer.m */, + 98D77213A7C4320F6008B30A82AE41CE /* NSBundle+MJRefresh.h */, + 198CEFDEA8156A3D6EA872BE843B4316 /* NSBundle+MJRefresh.m */, + 6E797E34167479AB4C62BEF24C93CAAE /* UICollectionViewLayout+MJRefresh.h */, + 5C7AF6A4A7D873A5927E9BB5781FC818 /* UICollectionViewLayout+MJRefresh.m */, + 1AF1F452F9623F8A1F1BC97F1971B9AB /* UIScrollView+MJExtension.h */, + 3C4FA82069B6C1E054035B43140BE929 /* UIScrollView+MJExtension.m */, + F84E727F70A15E83B7D25FD1B1473F30 /* UIScrollView+MJRefresh.h */, + C90D59230855356AC2C7ECAC0C2A6DAB /* UIScrollView+MJRefresh.m */, + BD5A142B20B08F85DF4E255309581669 /* UIView+MJExtension.h */, + EBAC8E57DF4784F9DECD58863EA59EE5 /* UIView+MJExtension.m */, + 28EC08A03CA2595F80D3D9862F151DF9 /* Resources */, + 5130E110E7F6D15B472C59552BAC791C /* Support Files */, ); - name = Resign; + name = MJRefresh; + path = MJRefresh; sourceTree = ""; }; - B61AC084DCC6C390EBDE866B52662BAC /* AMap3DMap */ = { + A8E8AF6560796F62A90FD285A95ABD91 /* Support Files */ = { isa = PBXGroup; children = ( - 57B0EA9833CE74F30D475E5DEED4A1DC /* MAAnimatedAnnotation.h */, - 14BE66CC68FFD2AC6BD608924474D629 /* MAAnnotation.h */, - F06017D8A40E2C269AD3723AAA849B8E /* MAAnnotationMoveAnimation.h */, - EE03A7DB31D2EA5D74E8AC6595DCD5DF /* MAAnnotationView.h */, - C6E757F10F5FAFFFD8D5AE70FEDE7FBE /* MAArc.h */, - 4EF86CFFD59506D2A1BC9B5A27F56AA8 /* MAArcRenderer.h */, - BA891B2995E55B127BCB278AF11B8B43 /* MABaseEngineOverlay.h */, - 650CC4848DDBCCB81DCB6671B53274AE /* MABaseOverlay.h */, - 73A10AD1404B88D834B5499FC7837CFD /* MACircle.h */, - 1CDA320D71347555289F21E5F48A66BE /* MACircleRenderer.h */, - AE38EB81281AAD4749C410E60DD3CDAD /* MAConfig.h */, - D5955C3F11BD2E1CC1EF1F0E6CBCE5B7 /* MACustomBuildingOverlay.h */, - 9A835D487FD056ED86C09488FF6297B8 /* MACustomBuildingOverlayRenderer.h */, - 7C2D5F1FE3CA03C21F8415CE9CDE6383 /* MACustomCalloutView.h */, - F7738AB0B6EDCBBDDF07126A140BF145 /* MAGeodesicPolyline.h */, - 96280EB941ACB84F13C3D03EFD21D089 /* MAGeometry.h */, - 680B5642427550EC87866C7A9D4FF32D /* MAGroundOverlay.h */, - 511BDA791EC00DB0404C15C4E11A8BA1 /* MAGroundOverlayRenderer.h */, - 89FBF678997C1BFF8175EAE7C1115228 /* MAHeatMapTileOverlay.h */, - 0654BFE0C715FB0CD2A72E89C361C633 /* MAHeatMapVectorGridOverlay.h */, - B459F7B57FBA9C6D23791683C7E47BB8 /* MAHeatMapVectorGridOverlayRenderer.h */, - 8972DB9B808F51AD03B118F63A9E4520 /* MAHeatMapVectorOverlay.h */, - BBC2244F81633A2E7E1CB28DD4AA64FA /* MAHeatMapVectorOverlayRender.h */, - A4BFCEEC214B513B2C016565E852579F /* MAIndoorInfo.h */, - 0B439671E325FDC797835D3E0BFF022C /* MALineDrawType.h */, - 949664818DDAAF8B27BABD5A314AE777 /* MAMapAccessibilityIdentifier.h */, - F302890B5B259BB8E004CBD0EEA581B8 /* MAMapCustomStyleOptions.h */, - 0702635284B749BA9176AECEF97B1171 /* MAMapKit.h */, - BD427A1EF10A746C4A553BB183FB8A67 /* MAMapSnapshot.h */, - 7D03309A81B860C0AC7EB6F7702CDC78 /* MAMapStatus.h */, - A1688BEE8D8DD531A4FF9FB8214FE03E /* MAMapVersion.h */, - 6D9E210B2205912E00A85821A655AFCA /* MAMapView.h */, - 573439E4451FA391A0ED73513D17D6D4 /* MAMapView+Resource.h */, - E205C494CC0EE530BD0158105D0D2305 /* MAMultiColoredPolylineRenderer.h */, - AF212710FCA100E37EAE4915B943DC36 /* MAMultiPoint.h */, - 5164BCEA802EC5E7E644A805573775FB /* MAMultiPointOverlay.h */, - A46B954BDFF657B2EB27B561A75FD56B /* MAMultiPointOverlayRenderer.h */, - C4153E009B13E648D368E7C4DE7737F2 /* MAMultiPolyline.h */, - 939FD9EE67CE7F1E53A18F47AA4723E6 /* MAMultiTexturePolylineRenderer.h */, - EE6E8A9B790E4D34473307687D4B5F8D /* MAMVTTileOverlay.h */, - F45505C3143DE9F8A8125C9E96457415 /* MAMVTTileOverlayRenderer.h */, - 486D15A5F82C8985A0E6751D00D794DA /* MAOfflineCity.h */, - 3B5D16C00716DB3F723ABA16AD0C73F6 /* MAOfflineItem.h */, - 0A05F415EE7D3DB8D18478027CDCF3F2 /* MAOfflineItemCommonCity.h */, - 96438B90C1831FEF8FEAD0F9265BB943 /* MAOfflineItemMunicipality.h */, - 068B91926FB024A1E64377B345291684 /* MAOfflineItemNationWide.h */, - B1D064A584F9C1427FDEFF411F0B5FE6 /* MAOfflineMap.h */, - 67DD08C8D8EFA5C605D522CD0B54141D /* MAOfflineMapViewController.h */, - A9B48004DE11AD5F7D92BCECE9169620 /* MAOfflineProvince.h */, - BF79B8AE2F9CE0C811A464A737EDAD5A /* MAOverlay.h */, - C8ACFECE5109B41E1551D2BB7FA2F9FE /* MAOverlayPathRenderer.h */, - 0E4B32FB0EC76B01B592CD1A61C85164 /* MAOverlayRenderer.h */, - 6DC9646259FA259C0AA37E4E65914C55 /* MAParticleOverlay.h */, - 1B662DE861161878956C798A09AAFD3D /* MAParticleOverlayOptions.h */, - F7C52778E00909D17F1C1A78E2BFF331 /* MAParticleOverlayRenderer.h */, - 8AB155993BA6DDCE5BC7CA20A1D6668C /* MAPathShowRange.h */, - DDA6A6DBB2D7B4E012AC552199A26FF0 /* MAPinAnnotationView.h */, - E2C71A38C131FFE9B3E38B8BD28A3039 /* MAPoiFilter.h */, - 2064CD5E88DCC289C0777852177E5B8D /* MAPointAnnotation.h */, - 7AC464DFEB919BE05FB5409F4D33C4D3 /* MAPolygon.h */, - FFDFDE1F81FF2DFCF0881704A4F39FAB /* MAPolygonRenderer.h */, - AC1E1F787958CC63A2481A4849213576 /* MAPolyline.h */, - BB25DA3225ADD925FF448A1B0C1DB967 /* MAPolylineRenderer.h */, - 1563B3E3E781D1EA51EBC18F425BD5DA /* MARouteOverlay.h */, - 1E264ED86787D52D1A2FB9D1694D53EF /* MARouteOverlayModel.h */, - 93F96F1B2F72E1AF5CB8D5EB7411DC8F /* MAShape.h */, - 574CAF553188FC3A01A0AEDBB464EF34 /* MATerrainOverlay.h */, - 68369891B9DD0673C54337D7AF5D5A22 /* MATerrainOverlayRenderer.h */, - AE7A0A006BF7EC69C5456D73B00C2B16 /* MATileOverlay.h */, - 85E4F42510ABF2029629F2E5D9765775 /* MATileOverlayRenderer.h */, - 49B3B5C8918A70D85AC76D63AB8FEF7C /* MATouchPoi.h */, - 0E4CE93B7DDACE16DD10B30BDEF700E4 /* MATraceLocation.h */, - 701AC824D35F7C99415ECEF8F3BF5AA5 /* MATraceManager.h */, - 8A6D3F93903A36CC1E65DB8B7D188ED1 /* MAUserLocation.h */, - 449956C48B59A346D76D820B80C026D9 /* MAUserLocationRepresentation.h */, - 5F726C3754EEA0BCB582C4A55E735D16 /* Frameworks */, - F56875C21757957BEF6B761DC98D8504 /* Resources */, - C25B264F94AFE23D03A45A28C48863B2 /* Support Files */, - ); - name = AMap3DMap; - path = AMap3DMap; - sourceTree = ""; - }; - B799DDFC3EE7C36C48509EDC93AC177D /* Support Files */ = { - isa = PBXGroup; - children = ( - 2C7BD137F313AB234AA39F9298734472 /* GYSDK-xcframeworks.sh */, - 02F7F5006D4C83A6F5AEDE0548257A71 /* GYSDK.debug.xcconfig */, - 30A2150EA6103CF85276C506513884F1 /* GYSDK.release.xcconfig */, + E54B37EECAFD1ED4B59BA3EE791E7712 /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */, + 82230FEA00350BC8F56EB5BC44AD1C77 /* SDWebImage.modulemap */, + F7D2C52DC8C30B74D4C622E1D2D88BAE /* SDWebImage-dummy.m */, + 456C8BCCDAD47FF8693D75400A0E6323 /* SDWebImage-Info.plist */, + D524EE427DDAC4E734AE277A9CADE5CC /* SDWebImage-prefix.pch */, + 63321D54034C11DDB8981792A5761232 /* SDWebImage-umbrella.h */, + E283C787829B0255F3EA02250F65433D /* SDWebImage.debug.xcconfig */, + CEC0082E625A68C67E6A1ECF039B0BC7 /* SDWebImage.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GYSDK"; + path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - B7B0FCA22ABC96D08805C7BBFB354A55 /* Resources */ = { + A9630CAF4C13F51DE80F8E912B554343 /* Core */ = { isa = PBXGroup; children = ( - C966D75070D79B9D443364A819C0C3F2 /* SGQRCode.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - B7D0F0451498E39540F43B4DDEAD0C16 /* AMapSearch */ = { - isa = PBXGroup; - children = ( - 0D09975AEB1A1FB56CECF90D58E0A2D9 /* AMapCommonObj.h */, - 5EADCBF64ED01C3EB0BEB3B96CCC6D5B /* AMapNearbySearchManager.h */, - 4BE739C8611B660926CA6A0474569860 /* AMapNearbyUploadInfo.h */, - 0233AD872EADB05DB729FC8EC5614314 /* AMapSearchAPI.h */, - 123A973422EBF191D93A314597DB7594 /* AMapSearchError.h */, - CB7FF1E8200FEA7E67B104C8495FFCE9 /* AMapSearchKit.h */, - C80AE828EC151DD45CDE7E73BB5017A3 /* AMapSearchObj.h */, - 06C10E4B12DDF191A13C6778B3161E65 /* AMapSearchObjV1.h */, - 322A857D4ABEF831EE7D2DB55B47440C /* AMapSearchVersion.h */, - F2B158C56525CB37D0756C301E1ED796 /* Frameworks */, - CACF685024E593A84EDD0094DC8FA308 /* Support Files */, - ); - name = AMapSearch; - path = AMapSearch; - sourceTree = ""; - }; - B8175D252F228A82B4B468FE53FE1054 /* Frameworks */ = { - isa = PBXGroup; - children = ( - F4E7F97A8A4045F2AEA6EE56AD8C5E77 /* GTCommonSDK.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - B8E0F5D7A2B95FFBDDFDC37C469BC5EB /* CocoaLumberjack */ = { - isa = PBXGroup; - children = ( - 689E3BC05147113E2447E7EF5DE6ACB7 /* Core */, - 2D9B4061D217ACFDC5B354E5FB959489 /* Support Files */, - 04E77BF5D241431A7669B65C63C292B8 /* Swift */, - ); - name = CocoaLumberjack; - path = CocoaLumberjack; - sourceTree = ""; - }; - B943263DB4496297CFA039D0DF444E2D /* Resources */ = { - isa = PBXGroup; - children = ( - B7DD4E4308B543CDB2A0B96FD8FD5AD5 /* YBImageBrowser.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - BC3F664E09F2AC1761DC4ECE861F83C7 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 183127F3E86A45036E2C0AB7DEB18E1D /* WebP.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - BC6AE7D0ED3FEE3FC0A3BB6704C3832A /* Support Files */ = { - isa = PBXGroup; - children = ( - 244512DFD644D3AA431853F542C2A616 /* Masonry.modulemap */, - 53E27EF908C7FB5EFEE14ADD95C69C96 /* Masonry-dummy.m */, - 97A94F41128644A73B8BB322379AD1AB /* Masonry-Info.plist */, - 0FAF4A2F2B4B2435A7BB4895AF2145CD /* Masonry-prefix.pch */, - 2641DD06874437DB484DC2A833AACEDB /* Masonry-umbrella.h */, - 2678FFFB05AC0FF8ABF1EAE1D51210C5 /* Masonry.debug.xcconfig */, - D414BEB5C18132E781D4587C8EFA1857 /* Masonry.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Masonry"; - sourceTree = ""; - }; - BDA6A1204DF782A42F3B6D09ADE73685 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1FE7CCD2DB56740DB6C59A573D8DFB63 /* AMapFoundation.debug.xcconfig */, - 7C37BD2829041D89916A260C97F51808 /* AMapFoundation.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AMapFoundation"; - sourceTree = ""; - }; - C035CC7FFE41C3C574BD25F1D57B32F3 /* Support Files */ = { - isa = PBXGroup; - children = ( - DBBA01FA6E1F2ADE35EA179C7CFBF223 /* MBProgressHUD.modulemap */, - 4CBDB659ECA60E466DDE07E7F3188D9B /* MBProgressHUD-dummy.m */, - 0DED4BA3B9B036CB4B02EB1ED05A82DB /* MBProgressHUD-Info.plist */, - E25DE705587B10CE643D1DF86AA2C68B /* MBProgressHUD-prefix.pch */, - D4F2F0EA5C534B941F600989F2ADB613 /* MBProgressHUD-umbrella.h */, - 496745A7F3A4397C33365DC9AA2BBD27 /* MBProgressHUD.debug.xcconfig */, - E1061F2B93315280A5B73A81ADDA30B9 /* MBProgressHUD.release.xcconfig */, - 7545B30E10C04C8D4BE734F25C09CB15 /* ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/MBProgressHUD"; - sourceTree = ""; - }; - C151664422ED2B379152732AAA6C657A /* sharpyuv */ = { - isa = PBXGroup; - children = ( - 1B493390BFB085C207195D0FFD8C73B3 /* sharpyuv.c */, - C2EBA132392950FF3765D57D57796814 /* sharpyuv.h */, - CB5F439F4729CFD04024FF05BCA74AE0 /* sharpyuv_cpu.c */, - 3DE1CB79BCC5D870E0A0F8AE2B4A1461 /* sharpyuv_cpu.h */, - 98C65967D7AEF74EAC5A85711A296395 /* sharpyuv_csp.c */, - 092167ED1CC47E4B4914B165AB241CA3 /* sharpyuv_csp.h */, - 36609CDD2BC9353598397AC9D8CB42AA /* sharpyuv_dsp.c */, - 905D38CB18C6D7D4FCFE589AE6168BA5 /* sharpyuv_dsp.h */, - 088A84604336D5130B62B245D8D225F0 /* sharpyuv_gamma.c */, - 62C76DB7DA654E7AD9D4B3B2FB18032C /* sharpyuv_gamma.h */, - 80F00122FF7CD557F71EDB6CD73DCE0D /* sharpyuv_neon.c */, - 060A177B76119368615F6C08CFBDC704 /* sharpyuv_sse2.c */, - ); - name = sharpyuv; - sourceTree = ""; - }; - C25B264F94AFE23D03A45A28C48863B2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 261B8297554CE4FE7CB1170B6603261D /* AMap3DMap.debug.xcconfig */, - A85F7BFA6933B34EAFBDDE988DB2A8A9 /* AMap3DMap.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AMap3DMap"; - sourceTree = ""; - }; - C3FE2D90C8E110F594860B41820D7378 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 79B1ECE0D7959F99866089A3071E708D /* AMapFoundationKit.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - C63F2E7201518ECB969AD15C40AC84ED /* Support Files */ = { - isa = PBXGroup; - children = ( - B40DB95A74207D02BC12B70085297924 /* SwiftKeychainWrapper.modulemap */, - AC83235E9EDBD10A36F3E1F871D63BF3 /* SwiftKeychainWrapper-dummy.m */, - E3D5CE2653C1E5851B93DB2D229DEAD5 /* SwiftKeychainWrapper-Info.plist */, - D5E28175BBC94EB18FFA4750CEFF606C /* SwiftKeychainWrapper-prefix.pch */, - BA8CD97A30916CD9C77856C59D4A8993 /* SwiftKeychainWrapper-umbrella.h */, - E926FA11E8BA74B1F4F9474810B87590 /* SwiftKeychainWrapper.debug.xcconfig */, - A96E31FD91560DE1C982C3A2F559FB6B /* SwiftKeychainWrapper.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SwiftKeychainWrapper"; - sourceTree = ""; - }; - CAAC540835A8357860D729CE16909F61 /* Resources */ = { - isa = PBXGroup; - children = ( - B244600AA2104B57BCCCA5F23E2F4613 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - CACF685024E593A84EDD0094DC8FA308 /* Support Files */ = { - isa = PBXGroup; - children = ( - A12071B705466F16A1CF14EA2B9CDFFC /* AMapSearch.debug.xcconfig */, - 58210E256435ABC11184FBEC80BBAD31 /* AMapSearch.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AMapSearch"; - sourceTree = ""; - }; - CCA7DCBB8267C4F607C0972B50D2BFF0 /* Core */ = { - isa = PBXGroup; - children = ( - B96FFDF9BCAA248D1DC8C88267CED019 /* AccessTokenPlugin.swift */, - D2BF88E4E6955245A365CE72B7B29331 /* AnyEncodable.swift */, - 831ED1AC3678AC789F64583BA59A14C5 /* Atomic.swift */, - 5BB2959D3499F806D0273059BF3598F6 /* Cancellable.swift */, - BE9BA9868608B0F72E0F1A2BCFA4CD6D /* CredentialsPlugin.swift */, - 1733D116F00BB7860C14898B3F57690C /* Endpoint.swift */, - C7FE6109F51AB7D33301A8EC635FFAA0 /* Image.swift */, - 9D30F72ABB0E7C0638BD31E4CE7840A3 /* Moya+Alamofire.swift */, - 9BC029F6B78235F5DBCA8BEA669E6064 /* MoyaError.swift */, - 7BC1184B394B0F1891FA39A297FFFEA0 /* MoyaProvider.swift */, - 100BB5555346B3CAD8AB3EEC096C649E /* MoyaProvider+Defaults.swift */, - 753831899F12C2CB084FFE69415AB0DD /* MoyaProvider+Internal.swift */, - 937D966D88196EC775BA025C4832B900 /* MultipartFormData.swift */, - 961625FA203A229009E5377F960B59F0 /* MultiTarget.swift */, - 76C66EEFD236908E007E71E3DEB9A2C1 /* NetworkActivityPlugin.swift */, - 0CC8DF74CE848DD89C1543B98FF1568C /* NetworkLoggerPlugin.swift */, - 23DADD0A8F4BC93DE27A54C99980A205 /* Plugin.swift */, - BE2AE28AB42D6BB69AEC9E7501336749 /* RequestTypeWrapper.swift */, - A57FD2A0791CC337715FFD68EBC59025 /* Response.swift */, - B9A7F9B1E648B27FC9190CFEA462392A /* TargetType.swift */, - CBBFEC0A19957F2E4DC6F87C398A3318 /* Task.swift */, - 571DADB16DAF9DD3606BAC0AD82E99A9 /* URL+Moya.swift */, - 4BA7E8D0376529DEF59A4B52463226CE /* URLRequest+Encoding.swift */, - 05D4D13EF29C8F7DCE86020D32C8D588 /* ValidationType.swift */, + 4EC813ED21BF52910890B2D6E3F54ECD /* YYAnimatedImageView.h */, + 72580C48B12D84C13CB91FB803B3250C /* YYAnimatedImageView.m */, + 0E27C6104885875C65D924ABDA4E3D40 /* YYFrameImage.h */, + 7B4C1E7106CBA77D0D297129D49B1EB3 /* YYFrameImage.m */, + 3B8AA282E96B073F73D645D38CE1096E /* YYImage.h */, + 26A79D15CF7E56AB1249C65515C36E4B /* YYImage.m */, + C38CCEC48E7F25EFD8909A52CAA8602B /* YYImageCoder.h */, + EB4B6E74F07CE1CFA6740CC7367A9A59 /* YYImageCoder.m */, + 0A8697B4ED19909AFD6C7558CEE8615F /* YYSpriteSheetImage.h */, + 600B0109CAD95BF5917C28BF3281115C /* YYSpriteSheetImage.m */, ); name = Core; sourceTree = ""; }; - CD0D9A28EB7FA8BDD8B46AECDC9967E8 /* Support Files */ = { + ABEA16F59809309D79522523BDCC8988 /* Support Files */ = { isa = PBXGroup; children = ( - 8EA47A05577E8BB8A9BF4102A2A8F1DA /* TagListView.modulemap */, - B4B1CC87B374C42556BACEDB70E5FEFA /* TagListView-dummy.m */, - A8FE3A0CAF8782AEB054AD93A654B274 /* TagListView-Info.plist */, - 8D455E3561CAE1B6B583C060084663C0 /* TagListView-prefix.pch */, - 71D663E2E1139410A15C558A6896C8C7 /* TagListView-umbrella.h */, - 8644E0F97A0F7E3524191228AA9D3074 /* TagListView.debug.xcconfig */, - 038D72D383929263E7180ACF0ED926FB /* TagListView.release.xcconfig */, + C39C724CC87492EDAFC684B436DBC2CF /* SwiftyUserDefaults.modulemap */, + 2EBE4B32A33B53EEC1777BCF15861D1E /* SwiftyUserDefaults-dummy.m */, + 5C8DCA9DAE9A2CA91B99D08FC528E277 /* SwiftyUserDefaults-Info.plist */, + E9B8203079561D85B5850B843642810B /* SwiftyUserDefaults-prefix.pch */, + 410BD1B04CE17FB86D3C4FB7427E2E8A /* SwiftyUserDefaults-umbrella.h */, + 3F080FACE9A2AB9E5FF8918DF0CD166E /* SwiftyUserDefaults.debug.xcconfig */, + A66FBF950048189A9BC5A7C43078F25B /* SwiftyUserDefaults.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SwiftyUserDefaults"; + sourceTree = ""; + }; + AC95595F0BBFBCEB77EC41215C348171 /* Core */ = { + isa = PBXGroup; + children = ( + 95A4FDAF241C16930F812761D74FCEF5 /* AppearanceStyle.swift */, + 3771450394E341C8109007FD4453F6EF /* AssetManager.swift */, + 93E12D74AA92766FA145737CB1FF4B12 /* AssetManager+Asset.swift */, + F3AB2F5FE36493E753EEAAF3B8E6B30D /* AssetManager+AssetCollection.swift */, + 8FDCC95F21DE5E485AAE4A6AFC3ECDE3 /* AssetManager+Authorization.swift */, + 27CB1D6F3889BFEDD86BF0A7F0C55EFB /* AssetManager+AVAsset.swift */, + BB9927B03C2D0F7E7F9022B6EFF4C646 /* AssetManager+AVAssetExportSession.swift */, + A653B0A60B5E5A8FEC71EC7CA4A3EB5F /* AssetManager+Image.swift */, + 92825D18FFC3CBC0A7BD59C44FACD099 /* AssetManager+ImageData.swift */, + 458E91DE3D1A4CB674A1B648258294A3 /* AssetManager+ImageURL.swift */, + D6C3E4424C9BB47614486B556FEF7AEA /* AssetManager+LivePhoto.swift */, + 65029C092034F39CD83E5C58E0DA0B05 /* AssetManager+LivePhotoURL.swift */, + CE53DF77216A675C25EC903D738D2065 /* AssetManager+VideoURL.swift */, + F9C28583AE34DED7B6FCD1ACDB354EDC /* BaseConfiguration.swift */, + 677FF7B4A892D4EB3B2AD9BB1F6B7379 /* BaseViewController.swift */, + AC85375D7D20F08BF74644A806E2502A /* Core+Bundle.swift */, + 90B5BC834A2DCAECF1A45B2A40BF12F8 /* Core+CALayer.swift */, + 0B1594EBD0E078355AAC2E6368B21BDC /* Core+Data.swift */, + 9005A4BA6A695B43606F43DA74AF0ED0 /* Core+Dictionary.swift */, + F13ADE691A62AB1DF886EA4F7FD67E96 /* Core+DispatchQueue.swift */, + A50464F051FFAD36C579BF994F2EE62A /* Core+PHAsset.swift */, + D64FB7527955C366D9B03609179CA6CD /* Core+PHAssetCollection.swift */, + 6C08D86D054AFDEF0A223CD7A4B5015B /* Core+String.swift */, + 2E4D9D32F645C0F77FE2B2594942BD5A /* Core+UIColor.swift */, + CB49502221C6831562B6F3334074EEB2 /* Core+UIDevice.swift */, + 1DC2D7AD3B62E3A2D0D88CB42FAE50CB /* Core+UIFont.swift */, + 797F1309BF0507E755025835173DA3E3 /* Core+UIImage.swift */, + 4D4B40182162CD669ED8D1D713C1A108 /* Core+UIImageView.swift */, + 02840ACD5872409C5A15AF32A909BEC0 /* Core+UIView.swift */, + 7F75D1EC0E1C320D3F9EFC4E8509D719 /* Core+URL.swift */, + DA4B9E352F29C90F44D0244433AF8504 /* CustomLanguage.swift */, + 228A5909B168591161C6BFFF967721A4 /* HXPHPicker.swift */, + DDCC82CDB4622F4F83A99EB2D2AE120E /* ImageContentType.swift */, + B26EFE7D0D803E3B328DE5A7C05B5F30 /* LanguageType.swift */, + 0EB177B7132DB39C91B6B2D930AA7F6B /* LivePhotoError.swift */, + D6FCB776FDC1A9889154E2C982013701 /* PhotoError.swift */, + C84DB09A5FF186DAD4C96289F6032C61 /* PhotoManager.swift */, + D13ADEC01AEBCFADCF283E3936FD6C64 /* PhotoManager+Audio.swift */, + 1FA74D2870A019BA4740B7F676D3BE43 /* PhotoManager+Download.swift */, + 47B17333D0907CCF5AF2E8678FD6D83A /* PhotoManager+Language.swift */, + E02070E552BE1AC1C311C83E723E8C37 /* PhotoPanGestureRecognizer.swift */, + 64CAD2C8FCCCCFB901AD99338C69EE1F /* PhotoTools.swift */, + 0942915E855CACF30C7A5843464A23D4 /* PhotoTools+File.swift */, + 956F909BA66A7652F595667B35B52BFF /* ProgressHUD.swift */, + 906D0A72EE028674565F0303DE1D205A /* ProgressImageView.swift */, + 602C74A8185EA5EE8350DAA128584F7F /* SelectBoxConfiguration.swift */, + 5FB12255CE9417581E8B581894EB9660 /* SelectBoxView.swift */, + FA9EC52758D4E3583A39B592710F605A /* VideoPlayerView.swift */, + 0CBF922902065FFC071B662004D5E28E /* Resources */, + ); + name = Core; + sourceTree = ""; + }; + AD60C8588DD34B9746332044870D56C5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 43D070FA933209AA2B933B1574913A3F /* WechatOpenSDK-XCFramework-xcframeworks.sh */, + C05DB1794BBBFB16B8EA48C125B1579E /* WechatOpenSDK-XCFramework.debug.xcconfig */, + 7494A83BA67A532F60523715329204DF /* WechatOpenSDK-XCFramework.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/WechatOpenSDK-XCFramework"; + sourceTree = ""; + }; + AF7A509B77A950D178DE1E642AB26B72 /* Support Files */ = { + isa = PBXGroup; + children = ( + 57E35B7EB1A35EA7A210180295460940 /* ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist */, + 378F46BB261081002D3462443D321F6E /* SwiftyJSON.modulemap */, + 944736B27436A346B72E1922E58C113A /* SwiftyJSON-dummy.m */, + 1613AA53EE5A2A7A0235668A464EBB18 /* SwiftyJSON-Info.plist */, + 9FF9DE9D91C58B32C61967930F1A4A42 /* SwiftyJSON-prefix.pch */, + 0AA02FA0E65676F5516119114719BAB8 /* SwiftyJSON-umbrella.h */, + 64C174FEED5DBDBD7E75CFF8B4BB3ABB /* SwiftyJSON.debug.xcconfig */, + D1B7F2C96D885D7A145E648320C1726E /* SwiftyJSON.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SwiftyJSON"; + sourceTree = ""; + }; + B50A3A53296A60335F9EC54745F2EA5C /* Resources */ = { + isa = PBXGroup; + children = ( + 4E62540E472572F4BB15B036489695F3 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + B61EAB15AA2E76A18994477CCED07F62 /* Support Files */ = { + isa = PBXGroup; + children = ( + AD83DAC58E563A1D225FFBE27E953654 /* YYImage.modulemap */, + 378A71B05B4B6E35FEFA06A102708B90 /* YYImage-dummy.m */, + A0D118785D957509F43768C5F4E0C6CA /* YYImage-Info.plist */, + B473F4F496BA450835903D12F8556484 /* YYImage-prefix.pch */, + 2A115E0B3FC9B65949A9542E9CDB7BDF /* YYImage-umbrella.h */, + 2A0F966CE73BB9FB937DE773DED561BE /* YYImage.debug.xcconfig */, + 72A1EAF3B2B93A6D388301B986ACB69E /* YYImage.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/YYImage"; + sourceTree = ""; + }; + B6BC1669B13CBAA9F498D430C4891630 /* Support Files */ = { + isa = PBXGroup; + children = ( + DF94A15ED1293E30E88A59E0F6D62484 /* MqttCocoaAsyncSocket.modulemap */, + E45E6AF7340B004DA48A8AE2F8B53F37 /* MqttCocoaAsyncSocket-dummy.m */, + D09EC7A968EE24B6056BBB55B155B841 /* MqttCocoaAsyncSocket-Info.plist */, + 341EC2C4A70106EB67DB74B8C4440046 /* MqttCocoaAsyncSocket-prefix.pch */, + 08750421AE2FCC141D4D1F8E3C6C6789 /* MqttCocoaAsyncSocket-umbrella.h */, + D020FF9A5704378B0D8B41BF65396696 /* MqttCocoaAsyncSocket.debug.xcconfig */, + 018A85E94FE9935E7AFCB8B153633334 /* MqttCocoaAsyncSocket.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/MqttCocoaAsyncSocket"; + sourceTree = ""; + }; + B708B78A29CB5B853E59332CADE08064 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0DD2DE37E0D18D7C606ECD29F45A940A /* TagListView.modulemap */, + 9C9D1DC3A8237ADFBC76223E5E1932BB /* TagListView-dummy.m */, + 1990DB1381D06FADDBC58B8DE86F05D6 /* TagListView-Info.plist */, + 92045CC4A14841CF942F7D0EE8B79E7D /* TagListView-prefix.pch */, + 59DDD979CBD6C9981F4FC9235EFC9381 /* TagListView-umbrella.h */, + 93D67B4D138C469D66869335FAC4A656 /* TagListView.debug.xcconfig */, + 9D3F97F68C76452A9B412F4F0553D559 /* TagListView.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/TagListView"; sourceTree = ""; }; - CE176B7E2EB2BDBA32DEDE56D142CC88 /* Support Files */ = { + B78734F5F7ABB5B594C214F14E7047E8 /* Moya */ = { isa = PBXGroup; children = ( - 5ABF25F38B5335217BB50A39B134AF62 /* HXPHPicker.modulemap */, - 30BB18DD5E18152570847746CA122253 /* HXPHPicker-dummy.m */, - 479A5976FAAC7CD00DADE00121C3194C /* HXPHPicker-Info.plist */, - 41EBF466F9F250D801B4F6EF7B1879E1 /* HXPHPicker-prefix.pch */, - 6E262E45D9D025FC0B1E6F5F63C96BAC /* HXPHPicker-umbrella.h */, - 97D599D0C0EA915D51D3C2779E4B546F /* HXPHPicker.debug.xcconfig */, - 715CB07F1E5C3BEAB5B768CF6A9DD872 /* HXPHPicker.release.xcconfig */, + 31ECF39721A14456865E5D0F7524FAF9 /* Core */, + FDE346877AC0D4457693B942D31074B0 /* Support Files */, + ); + name = Moya; + path = Moya; + sourceTree = ""; + }; + B8671D481CDD6ADC74C2ACA6CB50CB63 /* Picker */ = { + isa = PBXGroup; + children = ( + 17D7819D2675E74CD46EF495115299E5 /* AlbumListConfiguration.swift */, + 6F42108168E3827DDBA4CF6555E2306D /* AlbumTickView.swift */, + E80DB3359336F605C30FE7B728A01618 /* AlbumTitleArrowView.swift */, + C21C4FBD6D82FAF123B6FD4221EEC000 /* AlbumTitleView.swift */, + CD68B1602B9133E2816F156CB92881EF /* AlbumTitleViewConfiguration.swift */, + 2065605DBD09C2F4550B75E77F9B778F /* AlbumView.swift */, + AB40994AE1C02F08D2B55602420DAB57 /* AlbumViewCell.swift */, + 00D38F293A306ED40E9E30F10E5A2943 /* AlbumViewController.swift */, + 8705446677A2D4792E7CE527DD558989 /* CameraConfiguration.swift */, + 56CE73BB666FB1014D9B132720BD8776 /* CameraViewController.swift */, + AEB247929A37EFE26C6A805DEA433B91 /* DeniedAuthorizationView.swift */, + D9E2E94F5A368A73CC30515962A10A16 /* EmptyView.swift */, + 28853C4F1F0BE8910FC831A9312857F8 /* EmptyViewConfiguration.swift */, + 1D7719DE8DCBAF91163BE806ED694652 /* GIFImageView.swift */, + EBF872BB8015B50B7C30FC72B5542972 /* LocalAsset.swift */, + E3CF53606678C5355554CEAF86E72A88 /* NetworkAsset.swift */, + 0FC1EE43154306096568FB039E407BD3 /* NotAuthorizedConfiguration.swift */, + 590BD5EE2F1B73CAD4BA76A24A89F755 /* PhotoAsset.swift */, + 5A180C55B9B74D99B78B2F0EDB46D1C8 /* PhotoAsset+Codable.swift */, + 9A0F856E93522334178410DBF24E676D /* PhotoAsset+Network.swift */, + D40EFA4AC4FAF688BB84B55A3FB2CF5D /* PhotoAsset+Request.swift */, + 3399796C15028FAAB7F429D5AEE0D825 /* PhotoAsset+URL.swift */, + 670E69BFA8B8E794E20278DDDFCCFC1B /* PhotoAssetCollection.swift */, + C3F1B8BD2825588EB74675386BF2CB44 /* PhotoListCameraCellConfiguration.swift */, + 50A29C91398140EF644669A498986A8D /* PhotoListCellConfiguration.swift */, + 3C837B2221F8E0307B9986F0D7DE84AC /* PhotoListConfiguration.swift */, + E8F15BFECC7481FF1ADA3A897CCD4172 /* PhotoPickerBaseViewCell.swift */, + A0DB6C7F3D7CF810502FB403BE2D852D /* PhotoPickerBottomView.swift */, + 63162572B5F40706944B6D4695746BA0 /* PhotoPickerController.swift */, + B18F3A53A26839A8CEF0EACE96727E6B /* PhotoPickerControllerProtocol.swift */, + F976405F401C7E3AC0CEE5C7C2595458 /* PhotoPickerSelectableViewCell.swift */, + 33480720859FB80422F18693CD711143 /* PhotoPickerViewCell.swift */, + FDF437331E3175752D0F2C1F3736BACA /* PhotoPickerViewController.swift */, + F5DA1CF8DC7F54C5F4F0B7DAC3650369 /* PhotoPickerViewController+SwipeSelect.swift */, + 682EED78D7F63416FF9CFDCA15743DCD /* PhotoPreviewContentView.swift */, + CAC6175EFA83D8732500292A8A30189C /* PhotoPreviewSelectedView.swift */, + 9C881CC130CEB757F00BBCE825670589 /* PhotoPreviewSelectedViewCell.swift */, + FD8F7F80F12F551B6BDDBBD6981BC3E1 /* PhotoPreviewVideoView.swift */, + 0BDCDDE834F17A8AC6D94875DF09C0F2 /* PhotoPreviewViewCell.swift */, + BB9E8F62AB5BBD697AAD9ED993626C03 /* PhotoPreviewViewController.swift */, + 2679C547D6616063B0D9FC6E558EBA1C /* Picker+PhotoAsset.swift */, + FC9D6D0932358CB76A02655D6417A65C /* Picker+PhotoManager.swift */, + 1015C6C8D14DA8683A3381003A7C1EB0 /* Picker+PhotoTools.swift */, + 3712FB2901390F9631B6F18D49E764B1 /* Picker+UIImageView.swift */, + 7ED05F749374B2ECD29E17E6726B4D21 /* Picker+UIViewController.swift */, + F51ECB02B19F5FE5864C701321C147C5 /* PickerBottomViewConfiguration.swift */, + 35BDD75E89E9E5DD5191A7DBE6C746BE /* PickerCamerViewCell.swift */, + 104AB2BBDAA118AB5B3EC43FCFB764A9 /* PickerConfiguration.swift */, + B39413E51791A04479D1A4F3B3575E2E /* PickerInteractiveTransition.swift */, + D479E6B7E6471A3F32550F11B6329C0B /* PickerResult.swift */, + E5CAB98E979ECCA2A09B427375C957B5 /* PickerTransition.swift */, + 8E579505C72B45CC000E8E91927E7A5B /* PickerTypes.swift */, + 925963B6762F7EDD3F4B025942C781DD /* PreviewLivePhotoViewCell.swift */, + 4DEA470D696BF33083541B017CF60B05 /* PreviewPhotoViewCell.swift */, + BE3AC6EFED534E56B45FDD982333FDED /* PreviewVideoControlViewCell.swift */, + B575818A4B7E646C5F142DB98D4CD278 /* PreviewVideoViewCell.swift */, + 6AF7B1545843C9BBED27626503F185E9 /* PreviewViewConfiguration.swift */, + ); + name = Picker; + sourceTree = ""; + }; + B89794099D83C1B271367D0889DF0174 /* WebP */ = { + isa = PBXGroup; + children = ( + 755116D0EC3DDB3340553AD7B2F9FF30 /* Frameworks */, + ); + name = WebP; + sourceTree = ""; + }; + B8E57183278F9B617AB1F148A84C5565 /* IQKeyboardToolbarManager */ = { + isa = PBXGroup; + children = ( + 3DB6E6F409BB82016215077AA58FFE0F /* Array+Sort.swift */, + D5660094DA95120EE2B8164E7355B119 /* IQDeepResponderContainerView.swift */, + 7C8FAD9863B07762E14BEC17A1AD179E /* IQKeyboardToolbarConfiguration.swift */, + 865A4BFB2CB8DB37C3E1407B2C8BB4AC /* IQKeyboardToolbarConstants.swift */, + 1970F255FBB8A6704AB7CFD5716435DC /* IQKeyboardToolbarManager.swift */, + AAA272F52E8ADAC35C395237086FBE2C /* IQKeyboardToolbarManager+Action.swift */, + BFA1464237676D38F4BF5A57D9F5A55D /* IQKeyboardToolbarManager+Debug.swift */, + C39880C40AAAAD747B9A62379A5A895B /* IQKeyboardToolbarManager+Deprecated.swift */, + D6A149B6BBD06C2232430F6ABB7B1407 /* IQKeyboardToolbarManager+Internal.swift */, + 858555FE5CD415E9FE0DE9EB2A7AFCFF /* IQKeyboardToolbarManager+Toolbar.swift */, + 84AF2338B277983050F3CAFD5B36E2D8 /* UIView+Responders.swift */, + D20EDFE87D7E3E82F987FC08A4F00CEE /* UIView+RespondersObjc.swift */, + F3C94C83587B7C880837CB978C6057AA /* Resources */, + 0374D4B5D7630697BFFAF476F53A93E2 /* Support Files */, + ); + name = IQKeyboardToolbarManager; + path = IQKeyboardToolbarManager; + sourceTree = ""; + }; + B954CC88C5CA7A509267924263C45070 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5801738C638163C98246CB6F00BA28B0 /* Popover.modulemap */, + 3CDA05AE0A1D88DBAE40E62638BF3C8A /* Popover-dummy.m */, + 7D736B3283334F545C8A8931A8795A4C /* Popover-Info.plist */, + 061073267D9E7A4ABC1B4D3CA50443E7 /* Popover-prefix.pch */, + 12043476FB1F109D8DD030BF0DAF525F /* Popover-umbrella.h */, + 3799191460893486B21344FB44085E5A /* Popover.debug.xcconfig */, + 636B07954D032239F42C35DE71D121DE /* Popover.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/HXPHPicker"; + path = "../Target Support Files/Popover"; + sourceTree = ""; + }; + B960B988B8C0E50177465B9A80766883 /* Support Files */ = { + isa = PBXGroup; + children = ( + CF011CAF790106FD6A19F8F57A0573BD /* Kingfisher.modulemap */, + 26B386FB80AD4FBC1955D5C4F245DDFD /* Kingfisher-dummy.m */, + 946F64F2974C5F3D0BEDE60786B551E5 /* Kingfisher-Info.plist */, + 10BD7C6E2B9C3F8213C2009EA980608B /* Kingfisher-prefix.pch */, + 8E69D9DD0B6099895F3D54842186DC5A /* Kingfisher-umbrella.h */, + B8DB1EBE506F258F6871BF5B3853F937 /* Kingfisher.debug.xcconfig */, + 1FBA36361856104A4D031F00072469BF /* Kingfisher.release.xcconfig */, + 05546E827AAAE9F3BCFBD914821862CD /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Kingfisher"; + sourceTree = ""; + }; + C01231F6BB5829F4658B0F8ADA7827E4 /* Resources */ = { + isa = PBXGroup; + children = ( + C0BB4CBF6048C1CFAA8CF2FA39D85DDA /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + C1BA859B3BF10634F10D96C1F85389D7 /* Masonry */ = { + isa = PBXGroup; + children = ( + C31A05C7D26DBD0A551AA3C91D73FEFF /* MASCompositeConstraint.h */, + 016496ABA78D6144AB7AD700001BE86A /* MASCompositeConstraint.m */, + 0EA38E1760C227E8492F6B7419EBD670 /* MASConstraint.h */, + 0B3260A1DE9EA63DA5199E6744363682 /* MASConstraint.m */, + EE6E36EA8058AD2A1D0CFBC154558690 /* MASConstraint+Private.h */, + 5C6735ECE031BB18EA5077C548DFBD3B /* MASConstraintMaker.h */, + 913C06E86762583AA08FA9981CC07752 /* MASConstraintMaker.m */, + 082BB2C211CC761AE7176E1C91AA3E68 /* MASLayoutConstraint.h */, + 571BB5738ACB42F42C34CE19067238F4 /* MASLayoutConstraint.m */, + 00627804BDA43380564B83E1DE3D49C2 /* Masonry.h */, + 1A065AF90B68633BBEC46B5E72F9476B /* MASUtilities.h */, + 36DB87A7158E945BAE661177931BBB5B /* MASViewAttribute.h */, + 586CAB7528D3A6B6645EDB5A9397E2FB /* MASViewAttribute.m */, + 31A4A6EECE7B81CAF7FDDD1978EE7249 /* MASViewConstraint.h */, + 5A3C23B1D72202683F00B447B922927D /* MASViewConstraint.m */, + 130A9347ACA3AD097CD3B70D8B774B49 /* NSArray+MASAdditions.h */, + F8D1527E921FE86AA6FFED26C884C85C /* NSArray+MASAdditions.m */, + 394D94A4C79F8E0EE3A26D9204D6DC3F /* NSArray+MASShorthandAdditions.h */, + 7E30CE0389A560241FCA8FE83FE0B440 /* NSLayoutConstraint+MASDebugAdditions.h */, + A49386E944B025DD42EE8A1F8EB38266 /* NSLayoutConstraint+MASDebugAdditions.m */, + 06E85A137AD401FDF67AF3F231FCBFD3 /* View+MASAdditions.h */, + 4BE6176D5BCDA6C689675AD9CC5D2E6B /* View+MASAdditions.m */, + 3AD14D0F84352B2B3E7EEA1BB4CAA493 /* View+MASShorthandAdditions.h */, + 3ED6DCACD44E7EC0DE34BDE788A9AFB3 /* ViewController+MASAdditions.h */, + 004B8301B59E0532FC74ADD360B1B420 /* ViewController+MASAdditions.m */, + 8F4E6974780453B057FE5CEA6D6A847A /* Support Files */, + ); + name = Masonry; + path = Masonry; + sourceTree = ""; + }; + C20F07A7207DE59DBA76303351A7F8BD /* Resources */ = { + isa = PBXGroup; + children = ( + 808C026501781567CD3AA43ABB6D5AD5 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + C3DF1F07A9D73ECEA31A7E4FD4BA7F12 /* Resources */ = { + isa = PBXGroup; + children = ( + EBDD2EBD07F29616D00D6743544912F3 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + C7083989FF96825B50C6AD2F90707983 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5890D279B149E323005199F6CC97AF35 /* OpenIMSDKCore-xcframeworks.sh */, + 17272198BEED2330EBB2A866A7ABE400 /* OpenIMSDKCore.debug.xcconfig */, + BE2396AEB28B21E7D7963F4E67D9B1F9 /* OpenIMSDKCore.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/OpenIMSDKCore"; + sourceTree = ""; + }; + C780E2A1BD318E94A7FA21E68CB7939B /* RxDataSources */ = { + isa = PBXGroup; + children = ( + 2D5B12012F6233B5D8F331C901A7869C /* AnimationConfiguration.swift */, + 5D6583A9D6FFB57A60DDCC8A22078841 /* Array+Extensions.swift */, + 4F1DC11660BCCAEE4264510FD65F5749 /* CollectionViewSectionedDataSource.swift */, + 54E4EED20E396CB065FE382ED36B44A1 /* DataSources.swift */, + 68E69BFAD345E18146F7E60EB1231743 /* Deprecated.swift */, + B3514A7FBBF4EB30D7EC248635A87A74 /* FloatingPointType+IdentifiableType.swift */, + 11A04BE5CE43A7F729E96EA4E6256922 /* IntegerType+IdentifiableType.swift */, + BFC9B638004387C6C5A45619A8A5B2E6 /* RxCollectionViewSectionedAnimatedDataSource.swift */, + 56C132AB3EA4F392D2A8DD774E65EFEE /* RxCollectionViewSectionedReloadDataSource.swift */, + D88363A45076A8089140ABB4169C44BE /* RxPickerViewAdapter.swift */, + 47FF8124BAC952F35B2E4461CF41D102 /* RxTableViewSectionedAnimatedDataSource.swift */, + 9427F04B99D87CA5595F70B09E854EDC /* RxTableViewSectionedReloadDataSource.swift */, + F69A46DACB8CF34C53C60CC2D027E792 /* String+IdentifiableType.swift */, + 91F9B1A6C9A789429ABD96817E09C218 /* TableViewSectionedDataSource.swift */, + 581BE4EB6C70F24C0FEE8559206D377C /* UI+SectionedViewType.swift */, + 801F815AE21CA3F75E4A08CD741E3FBC /* ViewTransition.swift */, + 52A97E1F61561F467822E512FBA51A82 /* Support Files */, + ); + name = RxDataSources; + path = RxDataSources; + sourceTree = ""; + }; + C7A7BA4CEC9739DBC6E1C548D5B3509F /* Support Files */ = { + isa = PBXGroup; + children = ( + D8FE2431BB2C01D7B99718C4ED2D8475 /* OpenIMSDK.modulemap */, + EDA3D12EB0F19B293CD12CD014400BFB /* OpenIMSDK-dummy.m */, + 5AB1C590DA6D243CF1D4DBE909C408C3 /* OpenIMSDK-Info.plist */, + 3B4B5E7AE632CD74BA805CCB171392AF /* OpenIMSDK-prefix.pch */, + C9AEE725EBC8AF812D343242835B5448 /* OpenIMSDK-umbrella.h */, + F5552552C87459C15E13CB07C4C4B689 /* OpenIMSDK.debug.xcconfig */, + F1F80ED426C3EB59947DD048D46A342F /* OpenIMSDK.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/OpenIMSDK"; + sourceTree = ""; + }; + C850C078C1E24C07530E60B35CF3DF4D /* iOS */ = { + isa = PBXGroup; + children = ( + C0CD73578573AF5AD46B0F08EBEDF1A5 /* Accelerate.framework */, + E924404F18EF5B2BFCF943AB82366720 /* AssetsLibrary.framework */, + 376332B7BB7B62B68F0FF48144147A45 /* CFNetwork.framework */, + D0A90D1C88AE636E67296B135530FC21 /* Combine.framework */, + 9EE62403F3E6512DC6CF16E7A5F5C68E /* CoreFoundation.framework */, + DFA273262C05031D86CC3431CFFA95B7 /* CoreGraphics.framework */, + 829BA9B4F4F844D6F0CA46A234033DE2 /* Foundation.framework */, + 93AC70A2D46A8E4C52484F59DCF920FD /* ImageIO.framework */, + 4AFBBCC3AC2D57FEB1F37DD9DD64C777 /* MobileCoreServices.framework */, + D0716716AD81AB2B2F5991A5E536BC03 /* Photos.framework */, + 73FB8216CF2F66343E68F8498EADB79F /* PhotosUI.framework */, + F2C997ED187FDEF21DB00D42F13F8ECC /* QuartzCore.framework */, + 1E60C88006022308DBE83289F5CB1A46 /* Security.framework */, + 078A2566C0415B70FA3C6F10C8EEB9C6 /* UIKit.framework */, + ); + name = iOS; + sourceTree = ""; + }; + C92682C44DAD917566CA3C016A52D90B /* Support Files */ = { + isa = PBXGroup; + children = ( + 051F14A8C5F58F79DCE1D93262767C25 /* KingfisherWebP.modulemap */, + 807E9A40B51599207F28141B41ACF379 /* KingfisherWebP-dummy.m */, + 9DAFE69F3F304AC496F03B746D4F05B7 /* KingfisherWebP-Info.plist */, + EAD0ABC3813E3B5F2EC92BB34F2DF105 /* KingfisherWebP-prefix.pch */, + B300794F61F87BC9AE775592D972BEE3 /* KingfisherWebP-umbrella.h */, + BD5055592BE65B1AFCBD850A79CCC6B5 /* KingfisherWebP.debug.xcconfig */, + A7D52DBF5B8B5DD78B762AC31DF025DE /* KingfisherWebP.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/KingfisherWebP"; + sourceTree = ""; + }; + CA618CE6A8D9F9BD2214C05A9D85041C /* Editor */ = { + isa = PBXGroup; + children = ( + 9D5338B11E142296D30DC453C617E8F4 /* CropConfirmViewConfiguration.swift */, + 4009BD16431C62C0B7BE3CB189F750B2 /* Editor+PhotoTools.swift */, + A49D1842DD970A77A3B0D605617890B8 /* Editor+UIImage.swift */, + 53F75E2A009040E7C88B0F41EF87FC7B /* Editor+UIImageView.swift */, + 909BD42DC3755A52936AECE9F677FAC7 /* EditorChartlet.swift */, + 34C7C1820ED663FD4EDC639404C09D55 /* EditorChartletView.swift */, + 1B549342902CF998B972113E3FFF6A2A /* EditorConfiguration.swift */, + EFE15059268A18A5A2987D96995CCA9F /* EditorController.swift */, + 1C112C980D7117A563F32576ED0A5757 /* EditorCropConfirmView.swift */, + 3F7EED91CF0B4D7A89C11A806293769A /* EditorImageResizerControlView.swift */, + 422984CB36725E3CF2CFC36BC69EC1FE /* EditorImageResizerMaskView.swift */, + 52D1166499BF80F225745AF3A61670DD /* EditorImageResizerView.swift */, + 155696EF7C4D692123629E939A4CFC88 /* EditorStickerContentView.swift */, + 06ED629B369D759C9255F2C1BD20473B /* EditorStickerItemView.swift */, + B72E217B485757193D8084079600E909 /* EditorStickerTextView.swift */, + 0DB886261132DFF1F39AFB7A34AE0692 /* EditorStickerTextViewController.swift */, + C4BC4E9795B94391814F9D9D11446D5A /* EditorStickerTrashView.swift */, + 53184C1114CEE9521E8AB97A2DB43893 /* EditorStickerView.swift */, + 015B5597E8B9F59CF0D5FAE133C17DEF /* EditorToolOptions.swift */, + 2BEE403D1E699A5CEDB82263240DDC64 /* EditorToolView.swift */, + A0CBE9B053F9FC8D9F31828C0584A37D /* EditorToolViewCell.swift */, + BFA50E72BEA63413CB9C0B4CC48F4F7A /* EditorToolViewConfiguration.swift */, + DFB269DEB8628E1799B027D9BCE9841F /* EditorType.swift */, + 7111115F1C55B2A19B14616B49223065 /* PhotoCroppingConfiguration.swift */, + 8C4E81CAF61B893EC5CDB1338F44D9DA /* PhotoEditorBrushColorView.swift */, + F5D8900915140D4712BA5E20E7EAA3D4 /* PhotoEditorConfiguration.swift */, + 3B9CB5F944772CAB0E89F0484325B547 /* PhotoEditorContentView.swift */, + 4BC960EB9A445C244712AC3B35F7B71F /* PhotoEditorCropToolModel.swift */, + 663A9AAB1644EDF5B89B050210D188AE /* PhotoEditorCropToolView.swift */, + 78663799850368AB5C48ED1F8C841B69 /* PhotoEditorDrawView.swift */, + 62D07C690BC24C555DF4B8EFE24DBD23 /* PhotoEditorFilter.swift */, + 81270878AE486291AC7784104E82FF1B /* PhotoEditorFilterView.swift */, + A58B86B87E69679760C7B7E8604BB766 /* PhotoEditorMosaicToolView.swift */, + EF35938B724A76703B2E4A3A763CF031 /* PhotoEditorMosaicView.swift */, + 560267D27DA0FB5CD68E69E62A79BFF6 /* PhotoEditorView.swift */, + AB260D469E13128154D9E7ABE02CAFB8 /* PhotoEditorViewController.swift */, + 5C94875BC7BE284051E55C4BDC8BA513 /* PhotoEditorViewController+Animation.swift */, + E16FDF7DD49FB5D341120E3EC5AC1D5C /* PhotoEditorViewController+Export.swift */, + 745F624AA53CEDAE08D3E89BB5C6DBED /* PhotoEditorViewController+Request.swift */, + 996E52A9F81C41390E20DE3A4592D278 /* PhotoEditResult.swift */, + 88F9C67E13D04AECC7D6EF209630A8E3 /* VideoCroppingConfiguration.swift */, + F5F108D6C13B18E7F0E70A6661D58574 /* VideoEditorConfiguration.swift */, + 06875FDB4D66D9C998AEF230FEF92724 /* VideoEditorCropView.swift */, + B97AE06C4122280D4E7697B526A08475 /* VideoEditorCropViewCell.swift */, + C10122837DEED57398C463CC0F8E4EB4 /* VideoEditorFrameMaskView.swift */, + CCAFF5A5740D13881CB89FB2332CF4BC /* VideoEditorMusic.swift */, + E8B35159705EBE2193CC79CA9B894E50 /* VideoEditorMusicAnimationView.swift */, + 67B8A8567DA6C52E64E59F0E24001910 /* VideoEditorMusicView.swift */, + 6C25F665BB457D3486FF8820D7DAEFAD /* VideoEditorPlayerView.swift */, + 18A527F6E05456C08754EC86F74615F4 /* VideoEditorViewController.swift */, + 2487C96BE7C199B1C2B818C214ACE2A1 /* VideoEditResult.swift */, + ); + name = Editor; + sourceTree = ""; + }; + CAD41D11E03C75F7ED636D0E2472E2EA /* RxRelay */ = { + isa = PBXGroup; + children = ( + C4D82C83902BC9F0FB3834FA90DDF005 /* BehaviorRelay.swift */, + B7A25DB02EE751E6D01D050A5E7B3A93 /* Observable+Bind.swift */, + C3DE50759EFD988D04743C79471C7618 /* PublishRelay.swift */, + 57392B079508E1A952EB83F397A6AD5B /* ReplayRelay.swift */, + A11B776E936D8D46C6A528A1CE11FAC3 /* Utils.swift */, + CDE08E67CA1FD2012D7A7C12885F425F /* Resources */, + 26ABA9AE35255DFF6F3ACEC229D38FE6 /* Support Files */, + ); + name = RxRelay; + path = RxRelay; + sourceTree = ""; + }; + CDA22605428F8A70751DEE94C3788E93 /* IQKeyboardManagerSwift */ = { + isa = PBXGroup; + children = ( + 866278242C7A5B979A23E63E21719FE3 /* Appearance */, + 43B3AAC0548B91531161C2A20E2DFA38 /* Core */, + 5169B48C1222A1C1D2880F9578AB809A /* IQKeyboardToolbarManager */, + DC9C6F44976A754DB63167E2E4D033B3 /* Resign */, + 033B8765E42B8234A55FA3C94BF730F6 /* Resources */, + 2D59480D417D31C1242C59A486BFA4CB /* Support Files */, + ); + name = IQKeyboardManagerSwift; + path = IQKeyboardManagerSwift; + sourceTree = ""; + }; + CDE08E67CA1FD2012D7A7C12885F425F /* Resources */ = { + isa = PBXGroup; + children = ( + 7D90B17797653D7003F3F7A500E74D96 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + CE7B4B561955B2023D81ECA3371E7D86 /* Resources */ = { + isa = PBXGroup; + children = ( + 11BA9E364F4512BB8B20BE4DE4BD9140 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 35E526B6E4CA6A7E89FE8C5A5B1F2259 /* Frameworks */, - 45E0ABCC560E63CCDC698046D2CECAC8 /* Pods */, - EFE5927F7E570D4A275ADA784B520553 /* Products */, + E5F5C55E92AC2AAD92797EE3CC9ED22C /* Frameworks */, + 341BDA8F5700F98B3245E94DD113A5EB /* Pods */, + F1F3AB582168068047CB22DFF189D8BC /* Products */, 2B01C5D34569DBC173A53875424B8908 /* Targets Support Files */, ); sourceTree = ""; }; - CFAC46A4B9E993B77CF33E5377EB930A /* Support Files */ = { + D22A784029D0505F8825E2FB6440A13E /* IQKeyboardToolbar */ = { isa = PBXGroup; children = ( - 4E5481FAD7A37F467015F2E5F084A2F1 /* Alamofire.modulemap */, - 57F2F6105FAEB977A72B69CDA9E35CEF /* Alamofire-dummy.m */, - CE5BA2F6D6A3EBD1C8BCA53133492AF9 /* Alamofire-Info.plist */, - 0778C2229489CA4092CFD36A8B0FEBC4 /* Alamofire-prefix.pch */, - 76F3D82220A6BE6531EBF65472D2F31B /* Alamofire-umbrella.h */, - 9748FAB56C967BFAED8A26117036C999 /* Alamofire.debug.xcconfig */, - E614EC925D6A4CB0BB4E4E4562902436 /* Alamofire.release.xcconfig */, - F74E2AACBBD8C244A2E3D3E4A0EC3D58 /* ResourceBundle-Alamofire-Alamofire-Info.plist */, + 4BBF5683D94BE3C129B3F1500E2F0870 /* Core */, + 8DDB28579890664F7606B8D9B6AA6B47 /* Placeholderable */, + 763A9448445192689F3CB9A1C7369710 /* Resources */, + 3DCE3565E12180DA548ADF9D7FEB40F8 /* Support Files */, + ); + name = IQKeyboardToolbar; + path = IQKeyboardToolbar; + sourceTree = ""; + }; + D2E9E39DE97ED52C6B25E9FDD6EE9957 /* Support Files */ = { + isa = PBXGroup; + children = ( + B0191662DEAD607346CE2442458EEB17 /* IQTextView.modulemap */, + 57E3B3CB9A7E71E3C41DDC8AC8973B74 /* IQTextView-dummy.m */, + 12B5B5DF9020B345D986EB097F6AD7BA /* IQTextView-Info.plist */, + 1DD5BEDC44F138136A2BE5B82DDCB24F /* IQTextView-prefix.pch */, + 7196CA4EF95950D8E1B0780E5CB73D1E /* IQTextView-umbrella.h */, + B1A4FD8A8C9FBB2B4AE098AFCDEA027B /* IQTextView.debug.xcconfig */, + DADDA466B0F9556AA080958617E8F666 /* IQTextView.release.xcconfig */, + 92EDBF8FFCFE5EE0F3E29D0ED7298030 /* ResourceBundle-IQTextView-IQTextView-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/Alamofire"; + path = "../Target Support Files/IQTextView"; sourceTree = ""; }; - D071B5073D0C49B845F36464A79AE10B /* Support Files */ = { + D50473D5C3F8FA62E8B45AFC0D8E6F4F /* lottie-ios */ = { isa = PBXGroup; children = ( - 8B4487F9BD655C90D5A3542E1EEF1E9B /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */, - 8A955D35D02642C236DB7120C844EACE /* SDWebImage.modulemap */, - 9223CD5E46678235221233277EDFE02D /* SDWebImage-dummy.m */, - F9BD6A12132160649FD35B828E639EED /* SDWebImage-Info.plist */, - F77407D011F6375DA8974E897B3533C4 /* SDWebImage-prefix.pch */, - F5F87C6B5FD4C86E35043453DB746469 /* SDWebImage-umbrella.h */, - 238EA027049C445CADBCD723D15850C9 /* SDWebImage.debug.xcconfig */, - 3315C38767856D68C851A907CE93A414 /* SDWebImage.release.xcconfig */, + D00321F8E978E74F4F4D60B3EB34997C /* AnimatedButton.swift */, + C8EAC22AF845ED2317153E3913ACB6B1 /* AnimatedControl.swift */, + CAEA5657079E5ED6EC6D28C57EB4C2BF /* AnimatedProviding.swift */, + AB2DA40F1188D559D2779EB5EC0331BC /* AnimatedSwitch.swift */, + 48C0D0820DEB2784A88DFE222DDC52D5 /* AnimationCacheProvider.swift */, + 8BE3802244F0F467A022E91DB6B2B712 /* AnimationContext.swift */, + C5727BECEE9618152FED1401FF57F6A0 /* AnimationFontProvider.swift */, + 1EF0D735372E69C9AC488BD364C4FBE3 /* AnimationImageProvider.swift */, + B36D5FDE715BA934BD34F8786C8DA5A5 /* AnimationKeypath.swift */, + 5FE1963B6D2F054A9E8BFAFEB6F716FC /* AnimationKeypathExtension.swift */, + 06400FEC0E7815877B9FFAD947B38F12 /* AnimationLayer.swift */, + 5D56323B451627192BECC5104B3D81BC /* AnimationSubview.swift */, + 380D1F16AEB20A423847C1057BF1B74D /* AnimationTextProvider.swift */, + 77F14C85DC9D13A5DDC84E594EEA8EA7 /* AnimationTime.swift */, + 8D04DBC093A142D706FC40A9EBD11889 /* AnimatorNode.swift */, + 312BAA0DB116CC685C2FA70D3B0E3B3C /* AnimatorNodeDebugging.swift */, + FAFFC72036DE0CBF86EEAC95FEBA863A /* AnyEpoxyModelProperty.swift */, + 9945C30FA08BD9EC319748ED2D43517F /* AnyEquatable.swift */, + 8F8D5B1A459FAE61EDF4337A132BB5AF /* AnyNodeProperty.swift */, + F0B37D9643E310BBA7496A4FE4A9FC48 /* AnyValueContainer.swift */, + DF151D352C3F940ACCE3650BDFC0D4D4 /* AnyValueProvider.swift */, + E4F1801A3E01D1794CA3E91A36D21155 /* Archive.swift */, + 0296D5D6EFA25ABAAAA68D3CD8738A76 /* Archive+BackingConfiguration.swift */, + A8363BA837F7E198BFBCA2B3BCA30959 /* Archive+Helpers.swift */, + B9F0A16DB2718E87062DB18D1618AAAF /* Archive+MemoryFile.swift */, + B6DF2C5453F49CAFE051B8FD6D17FCA4 /* Archive+Progress.swift */, + DFDA5F5E6DE9CF3C0BF1AFC98DA6D9ED /* Archive+Reading.swift */, + E8112BFCAD85A1901C75F5AECF9170CC /* Archive+ReadingDeprecated.swift */, + 42FEFD5D7BAEE2B475CA21E3B18847DA /* Archive+Writing.swift */, + 98FE132ACD16AAAFCB4C2207A360977B /* Archive+WritingDeprecated.swift */, + 6A095D9FE603AEF527B68874E180B2A0 /* Archive+ZIP64.swift */, + 901DB6006F9C44DE01F74CB94CF76648 /* Asset.swift */, + CC9713B9525A20943182AB6D5E22A57F /* AssetLibrary.swift */, + 4AC29025924C23D539E1D1221AC29A60 /* BaseAnimationLayer.swift */, + 24B4AEB38B8B095C56E839AEF1BCB6FB /* BaseCompositionLayer.swift */, + BB37EDCCBA41B0C9641257E086DC8ABF /* BehaviorsConfigurableView.swift */, + B37E5F666720987BD19B13495B1D2AEC /* BezierPath.swift */, + B9A58617E989FFAC2B9D2EB8ED1B25C4 /* BezierPathRoundExtension.swift */, + BDE09D4F498218C6D85FACE5AF9F3203 /* Binding+Map.swift */, + 423CB5BAFBC5B1B7B8867FCF7091EAFD /* BlendMode+Filter.swift */, + 22CFA28D77DC2B2A44D160C4087AC3B7 /* Bundle.swift */, + D6ECB7242FE69E5D1474792D4B6FBD21 /* BundleImageProvider.swift */, + 3F24D6C58E498E7B37DF8D75A1208F70 /* CAAnimation+TimingConfiguration.swift */, + AD86A09242BE8D4BF03B42D158E5C0D9 /* CachedImageProvider.swift */, + 9C419E6E04DBFE2E3EFEB4AD94165FA9 /* CALayer+addAnimation.swift */, + 1DBBED0980B464762473A6C89F1C172D /* CALayer+fillBounds.swift */, + F5AFA1348A84302F6F2CBA39EB6F5AB7 /* CALayer+setupLayerHierarchy.swift */, + 2F9DB03149250DF330B6D48C0E61D964 /* CallbackContextEpoxyModeled.swift */, + 31C046C0CC4193B0A2A553D90BB92F7F /* CGColor+RGB.swift */, + 44EA28130A47103E346AEA431BD8AB23 /* CGFloatExtensions.swift */, + 8C9D5E2A219C95745FAF204B1E3FC92A /* CGPointExtension.swift */, + DC327E3E09A630F76C0A3C2C4014967D /* ClassReference.swift */, + 9CF9B4F936F9017EE6FE6902E94AAAEC /* Collection+Diff.swift */, + 0AD6F8BAAAFF98186138E4A6113D787B /* ColorEffectValue.swift */, + B50D229B975056B637CE2A13B0263B07 /* ColorExtension.swift */, + 5D66E4A666F8AD6639F3BB8433543EBB /* ColorValueProvider.swift */, + 15DB7F8C2DB86CE0AAF598E6C439B423 /* CombinedShapeAnimation.swift */, + 3A0488FD76DB5F611BF73447B6E0CF0E /* CompatibilityTracker.swift */, + 3E811FDD3EDFA0440713C2597DF1941A /* CompatibleAnimationKeypath.swift */, + F7FAE59124813F9278DCFBAD69B7244C /* CompatibleAnimationView.swift */, + D5E0182FEE828DC6578A7F76F77A59EB /* CompositionLayer.swift */, + 58FFDDCF04DB129070555E67F7D62F4B /* CompositionLayersInitializer.swift */, + 480D5CF8CBC208B22CD517AAD0704692 /* CompoundBezierPath.swift */, + 0AF5A4FEF1EBB57D68D4832ED9C4B8C2 /* ContentConfigurableView.swift */, + A7AF6E104842D1D774F95573E8ACDFC4 /* CoreAnimationLayer.swift */, + BA10D70D427E316E20ABE84F02DE485D /* CoreTextRenderLayer.swift */, + 7657F084D1FA639C2B0E06330CD5D367 /* CurveVertex.swift */, + E4CF735786E6DCCDD3EC08F8BD99569E /* CustomPathAnimation.swift */, + AC0DEEF56E149FD1D1F4844450CEFA30 /* DashPattern.swift */, + 909D62EF63BD78A83AC24163EEE78816 /* Data+Compression.swift */, + 461F530A1AE9AF2A8B01A2FA5A394E06 /* Data+CompressionDeprecated.swift */, + 53F8B1507A4C52B30BD509386B591FD6 /* Data+Serialization.swift */, + F899F189DB3B7D9DF35DDEA3110CF17B /* DataExtension.swift */, + 11335B714622306F91A1F2FB8E0B3186 /* DataIDProviding.swift */, + 72766BC56FB33D493A0DA75B5189A566 /* DecodingStrategy.swift */, + 4C0D804C76B78471CEB59B3283599A1A /* DefaultAnimationCache.swift */, + B24AB5AFB6F42668409FB20FBF37EFE4 /* DictionaryInitializable.swift */, + 3D3412FCB9DBC857F8F90239397E20ED /* DidDisplayProviding.swift */, + D031895E50BDFD816B263068206932EA /* DidEndDisplayingProviding.swift */, + 1238DCD625C5D81AC5BBEBBA05973B84 /* DidSelectProviding.swift */, + D83A09F42FB0A0DEA3C2CE28C6C23CCF /* Diffable.swift */, + 4781270B7E505D46B77FC0AAE0844B23 /* DiffableSection.swift */, + 9C3603E52BD81ED0DFEA15C65199D20C /* DotLottieAnimation.swift */, + 94C3D7F5F5DD3200C6843026A2749F7E /* DotLottieCache.swift */, + 0547616BE46FF1E17F8F0D22C74EC2E2 /* DotLottieCacheProvider.swift */, + A166E25A3C3451C37A3AB8D76235D632 /* DotLottieConfiguration.swift */, + 4C05ACB5044590C564E48226710D1D64 /* DotLottieFile.swift */, + EE0AA3E0FC0B76C7509CA620EE4FC698 /* DotLottieFileHelpers.swift */, + 992563FFA7421581C3FDF8EA91BA1F9C /* DotLottieImageProvider.swift */, + F57B91C4DA1E7A118360091C50ACB4D6 /* DotLottieManifest.swift */, + A5D91DB00869FD3D156C8E656E0146BE /* DotLottieUtils.swift */, + C224AC4EDC0D96C8B5598D7A2323510D /* DropShadowAnimation.swift */, + 879A2E2A67F78CCEFE0F10240CE24FF9 /* DropShadowEffect.swift */, + D9A80A81973DFC185D749BF15E3B9010 /* DropShadowNode.swift */, + 75D18C3514B0AB93334F121664FB2959 /* DropShadowStyle.swift */, + 57DAE67362F099548C9435D60264C18C /* EffectValue.swift */, + 67F2EC575215EF8F36FE3332C7B8FAB5 /* Ellipse.swift */, + 6CCA2FE51D5FD515273072EB283E8F5D /* EllipseAnimation.swift */, + 3B8C00943FF7F8CFAD73B6BE0A6D3985 /* EllipseNode.swift */, + 50A7A193651AB0CFCF223595CA19AA95 /* Entry.swift */, + 3ACFB997E95585F568A813FF855B02A2 /* Entry+Serialization.swift */, + A06D2EBC68A9A66C6DECE0BA1D733FA3 /* Entry+ZIP64.swift */, + 4FB94AE8C5C0B522D4E322D48D4429C0 /* EpoxyableView.swift */, + 5516434AFE89CDE1669E3995A27B09FE /* EpoxyableView+SwiftUIView.swift */, + 442B1083EAD63EC2E04EE79B2C02102A /* EpoxyLogger.swift */, + 0C6A878365FAE3831D101B7448192821 /* EpoxyModelArrayBuilder.swift */, + DB591B97E8E5DE9272DB70B726C9919E /* EpoxyModeled.swift */, + C5D66152891A6C0CFE6DE74BD7438631 /* EpoxyModelProperty.swift */, + 7772449672CBE48D3FFA0D9317D8AD48 /* EpoxyModelStorage.swift */, + DF4F5D327A12E7ACE2DFF76883BD526E /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */, + C490335440F75C578775EFDF160BC241 /* EpoxySwiftUILayoutMargins.swift */, + 76FB8636DE8E4F96063F7028E44A0E04 /* ErasedContentProviding.swift */, + 524B28EBB88699EA3D332A42A3619B8E /* FileManager+ZIP.swift */, + 3F6B9B8EEDDD183E1425AB22C7937309 /* FilepathImageProvider.swift */, + 3712A5FE54262D3B1DDB054BC62A6930 /* Fill.swift */, + FDA2360D1A6E94ECABACD3E1106335EF /* FillNode.swift */, + 56F63B4CF7F8651C02683E839A24EC1B /* FillRenderer.swift */, + 53F52C3A02F01324899BC12175E83B1E /* FloatValueProvider.swift */, + 57A5630091B1B1F7BEB362A6247CA11C /* Font.swift */, + CF71F4E4CAE92E4661A148450BC4B394 /* Glyph.swift */, + 3CFB128BAD33D109C98CF3A44600DE0B /* GradientAnimations.swift */, + E07E0B4611AA88852073CCA616A9032A /* GradientFill.swift */, + 8C79119E0FD1944C9FBEC3DBA813288B /* GradientFillNode.swift */, + 7EEA8F70494527CB93A38C74F7982F83 /* GradientFillRenderer.swift */, + 406F8443BD9B36DA3D96980140325A1D /* GradientRenderLayer.swift */, + 2960647473749EA8AEED48FB2BE7C79A /* GradientStroke.swift */, + 6586E0831A482865F4AE976D099C02EB /* GradientStrokeNode.swift */, + C0AC41EA6D004745BAE6C7B3339BADDD /* GradientStrokeRenderer.swift */, + 969C95064469988CF9DD2C0988D5721B /* GradientValueProvider.swift */, + 85C907F746C2788FC9A636D9BA502E2E /* Group.swift */, + FD075C270BA262E2E0C9C7E705229ABB /* GroupInterpolator.swift */, + E85F341F52AD4EA9051370B4AB27A5BB /* GroupNode.swift */, + D9E1FF60C3DFA18D3698A5B0976068D9 /* GroupOutputNode.swift */, + E4876B235EFC3F79E4FC7B2FAF3A32B1 /* ImageAsset.swift */, + F6A8BD0B26710BD33082F2BBF5BB724A /* ImageCompositionLayer.swift */, + 59E0C671EF5B5B543DDE4A04023C67FD /* ImageLayer.swift */, + 1B096CB908090AF2DD4E15675A33FD06 /* ImageLayerModel.swift */, + F9552D22A9233631F84C168E3F12CBFA /* IndexChangeset.swift */, + F1114FFC890A3B15EDE446EAEE06B9F2 /* InfiniteOpaqueAnimationLayer.swift */, + 5F8CAE6D15F1B3B7A425CDAC4B3BEB3A /* Interpolatable.swift */, + A8E337169F44377E81115D90C19F1BC0 /* InterpolatableExtensions.swift */, + F4EB46D249CB60D0D7A24DFBCDEC31B7 /* InvertedMatteLayer.swift */, + FEB39954F2E0BFA206C3D194C20D02C2 /* ItemsExtension.swift */, + F88405DE450E285D5F5B8F3AA9747866 /* KeyedDecodingContainerExtensions.swift */, + B5EDE4C54CCCF208B2D71DCB9FDB21C7 /* Keyframe.swift */, + 826DA11AB28DAD5B0EB7826B29CFC100 /* KeyframeData.swift */, + D5D131BAEA2B1C0468C915FC762A6341 /* KeyframeExtensions.swift */, + 77D36BE38B7CA86985F86993EB76ED85 /* KeyframeGroup.swift */, + E4047E809A4658ECA83A30E6061F84DC /* KeyframeGroup+exactlyOneKeyframe.swift */, + 3AE15C20A74AE7258AF74FD1B506F1AA /* KeyframeInterpolator.swift */, + 99A13D9C8041EE3BD62071DAE3F0C6B2 /* Keyframes+combined.swift */, + 042A695EB5A0C54C275F88586AB33EF3 /* Keyframes+timeRemapping.swift */, + 6972343F664C52CB3BBB9F28D004156A /* KeypathSearchable.swift */, + 52DE37F1AAEEF218852464F11E143656 /* LayerDebugging.swift */, + A6883A58E11528E040F55C0325D7B37F /* LayerEffect.swift */, + DA18A9D0FE32D587402920F04251F766 /* LayerEffectNode.swift */, + 06C8EC9CBE5189937E85D41906662CC4 /* LayerFontProvider.swift */, + 9BC67518006B19DC55658D20E4359695 /* LayerImageProvider.swift */, + 862203B641B5E8B956897660DF943C86 /* LayerModel.swift */, + 8EFDC55D9C77B32C3928B5308CA1A0C3 /* LayerModel+makeAnimationLayer.swift */, + 97D74D3A2081E4658E8D782F0DFB43C2 /* LayerProperty.swift */, + DE2ABF42C1496614D3DDD6544E992F73 /* LayerStyle.swift */, + DFACA4AD88EF25B756AD0FDF375677F3 /* LayerTextProvider.swift */, + 5D8459D7FBE1CE367D86924BE49985C9 /* LayerTransformNode.swift */, + 3538D5D07C7C1EEA48969493103616C5 /* LegacyGradientFillRenderer.swift */, + 532E9030A15F6711B544C8BEAAB3529F /* LottieAnimation.swift */, + 993E3A197E04AE42791F78A4570F6478 /* LottieAnimationCache.swift */, + 153DDDE8AAB0748444FFC4BC506F42BB /* LottieAnimationHelpers.swift */, + 073E1802D9E834D19ABCCBDA089E92AB /* LottieAnimationLayer.swift */, + EE979B9EDF3477B9352133C921EA1855 /* LottieAnimationSource.swift */, + 9C7EEF7FD983ACD669C21EC0404713ED /* LottieAnimationView.swift */, + 5A6B00582C6F5360841283FCA163063F /* LottieAnimationViewBase.swift */, + 8FECF4078450642BEA0A9B39AB4BE98C /* LottieAnimationViewInitializers.swift */, + EEE5C71E2AA2ED3E55F45F94737D8BF6 /* LottieButton.swift */, + 57F68566C1D13B6EF1FE82022B5A1E98 /* LottieColor.swift */, + B8CF6B41020B1C18360CF68D29A37865 /* LottieConfiguration.swift */, + EBBC4A106EB08D48922BFA7B703838F9 /* LottieLogger.swift */, + 7B6958855F647734EBB24E8340EEC38B /* LottiePlaybackMode.swift */, + 4F193B62510CE37DFCF289B85FBBE78F /* LottieSwitch.swift */, + 59FF368F95FB6496AE29853E9BA5BD14 /* LottieURLSession.swift */, + 1F18B21B8DF3684C2CE65E173E832352 /* LottieView.swift */, + 4538D166A896DAD1AB3BFE037F3EFE5C /* LottieViewType.swift */, + F71C401A793A925B16B2794B641577F0 /* LRUAnimationCache.swift */, + 6DD35593A8572CEFFF1D2C61579D97C6 /* LRUCache.swift */, + 7537436472ABFEAD772B0BF688824449 /* MainThreadAnimationLayer.swift */, + EA123271654EAC1C72B1A246499543F9 /* MakeViewProviding.swift */, + FB7E0915414C93967B126EDE0A3EAE9C /* Marker.swift */, + 99527D922C5842B63773D4E636CAF2A6 /* Mask.swift */, + 694EE45B9AE3A7575F8B867C9D6A78CC /* MaskCompositionLayer.swift */, + 6D3AFCC822EA201EE0774A79F8B66DF7 /* MaskContainerLayer.swift */, + 9668DF6256ACD7532AE815424C1276DB /* MathKit.swift */, + 480FA25861EA5315A0609447A82AA5C2 /* MeasuringViewRepresentable.swift */, + 11B4D2B58D8EC3CA214F9D4A0F71A59C /* Merge.swift */, + C4542B0278922709B2677B3742D449B8 /* NodeProperty.swift */, + A9D622A57312540E1D02274F0ACCE389 /* NodePropertyMap.swift */, + CB216BE0D8FC0CAFD94F4FBE9464267E /* NullCompositionLayer.swift */, + 1196353082FE78E3F0236610EBD8703E /* OpacityAnimation.swift */, + F74E51E407C4A9311284CCF23D154B71 /* PassThroughOutputNode.swift */, + DB42CF3C2FE27263094321A19D8E34CD /* PathElement.swift */, + F5EC0B76BF335CF429B6B623B5DEF288 /* PathNode.swift */, + 41D8AE7E514A94049498276F4D7A2EA8 /* PathOutputNode.swift */, + EF009A9EF803941B4308E2E0875AA35C /* PointValueProvider.swift */, + 7EC8F3147D548524F2105F1B4D734059 /* PolygonNode.swift */, + 213FF271A8C1EF4AFA83B16C94A7CD5E /* PrecompAsset.swift */, + F060B4B84D52BF88E54DC7C9B28D410D /* PreCompLayer.swift */, + 840A962BED1D9BADAEDE3E7E183A317D /* PreCompLayerModel.swift */, + 4FCEA9AD6C802E052AB4F36F955C37E9 /* PreCompositionLayer.swift */, + 1A1FA30BD56F8630D1EBC9B27C1B166D /* Rectangle.swift */, + 1E3BA316C2E40426CD457CC367902F1F /* RectangleAnimation.swift */, + 2E2140737C3E93134F8FDB59AB754F8E /* RectNode.swift */, + 9827171C80049752294AD9E3E7618E0C /* ReducedMotionOption.swift */, + 1BF72D624C3A129C90AEC6EC4E3E5E41 /* RenderingEngineOption.swift */, + 9D185FE7B7678520832236B38A00E369 /* RenderNode.swift */, + 723B33791793F56BD5E9F38531D5874D /* Repeater.swift */, + 640F3024D486EF2882424829BADB5957 /* RepeaterLayer.swift */, + EBC245604F36AD9FEC3CD87AA04F7C2F /* RootAnimationLayer.swift */, + D15EDFC11F19BC7A78A242A7BC5BB452 /* RoundedCorners.swift */, + B35DAB47F413C69F7A5ACA58DFE60344 /* RoundedCornersNode.swift */, + ED970E0B932A9A86C6B9B60E4F4A43DE /* SectionedChangeset.swift */, + A0EDB4D93155CAEB727C0AB45713F6D5 /* SetBehaviorsProviding.swift */, + 35E53EB427E531962F3F3AAD0D6BE4FD /* SetContentProviding.swift */, + 2BDC74945EC8BC04AD74B2B1BE2EB72B /* Shape.swift */, + FE2D768229B35C3FE454C2B95DEEC7BE /* ShapeAnimation.swift */, + B7D13E2DF65446BC4D8E7B407EAA0684 /* ShapeCompositionLayer.swift */, + 6E9D7F05983C95E168849B51B28EC29C /* ShapeContainerLayer.swift */, + E589DCFDF4CA763286693D5151E8C2E7 /* ShapeItem.swift */, + CF265D01BCDF891475E8B6CA021874DD /* ShapeItemLayer.swift */, + 763616BE3E35702DEF0239BC9469B331 /* ShapeLayer.swift */, + 614C8C7093D354C0AC700DB212837602 /* ShapeLayerModel.swift */, + 4C1A9571D4A22125DDC26AAC81C21512 /* ShapeNode.swift */, + 6D8493AA193CAA6E09CB81F3D8A8C477 /* ShapeRenderLayer.swift */, + 248B06013737714E8413242881D097C9 /* ShapeTransform.swift */, + 839BCE2FB3C9925AE8EBE4D4E23D267B /* SingleValueProvider.swift */, + 08BF7E05FE4526682EBDA0F71476A16D /* SizeValueProvider.swift */, + D94DD830C0433EF2212975E170A8EF05 /* SolidCompositionLayer.swift */, + 9E09E8D0DDB0127275867B6DB66EAC96 /* SolidLayer.swift */, + 60FB2512EBA67C9E19A06A26644E2821 /* SolidLayerModel.swift */, + 86A0D05E1B1AF9C0E4BDE710355585D3 /* Star.swift */, + C37E9B0A2752CD48FC43FABF09C7B745 /* StarAnimation.swift */, + 889A561130AB6E4C8C73F23593C54B4D /* StarNode.swift */, + 0C1C877790940F9BEC52E105E2345F63 /* StringExtensions.swift */, + AB272087ABE824979CB58F3810B9CDB8 /* Stroke.swift */, + 9909A72F16EE2DC3ABF5C0F04E9ACEC3 /* StrokeAnimation.swift */, + 2FE035ECA7BD09E6EF69413B6CB12ACB /* StrokeNode.swift */, + 98675E3A1A2936ED5AD80EDCA005B45A /* StrokeRenderer.swift */, + 3333FB4826A1B7E11CD9D053ECCD0B71 /* StyledView.swift */, + AE7C96DF1255DC3006CBEA26F1C9BD7E /* StyleIDProviding.swift */, + F58B1158B39BF41DE17B2D193BD0E0F5 /* SwiftUIMeasurementContainer.swift */, + A6231FD2D37A52E5BFE0B866D8EB940C /* SwiftUIView.swift */, + B92051DFD1B8964C84F2CCBDEA5D52B1 /* TestHelpers.swift */, + B402B8425EBB730BFC58AEB36CC52226 /* TextAnimator.swift */, + 2506741F9F50189A7DD54A4F356E1C0B /* TextAnimatorNode.swift */, + 518C08021C81FCD665925D5FE7DB2D2D /* TextCompositionLayer.swift */, + 18C57118977326E3AB3594BF47E4D50F /* TextDocument.swift */, + 63B4C977FA84E6204CA76F7CD5A2E079 /* TextLayer.swift */, + C214635901487ED70CD287E8BC4AEC74 /* TextLayerModel.swift */, + AE120212B6286301289F194C73D0175F /* TraitCollectionProviding.swift */, + 7A8C2DD3A2C1D03AAA15596C4B5EC68C /* Transform.swift */, + 99865637FCFF7B1AA28FC0923C3042EE /* TransformAnimations.swift */, + 4A821688C0C584B0F53FDAD23FCBF38E /* TransformLayer.swift */, + 6E2020960628625BDC018E48BA326EB2 /* Trim.swift */, + DFFFE5A3E20A221292DEDE2DFCC56A72 /* TrimPathNode.swift */, + CF9DEF0B8FE64352C40FF7FADFC32A4E /* UIColorExtension.swift */, + 4F4A9FE6A3F2ACD446C28FAE8E1F0E53 /* UIView+SwiftUIView.swift */, + 825816BFA5ED9EA8E09C4414305D084D /* UIViewConfiguringSwiftUIView.swift */, + 55B16604977C9DD7CC41867CF659D286 /* UnitBezier.swift */, + 0483E62BDF02CA0C3DE38D03FC2505C6 /* URL+ZIP.swift */, + 3F7489B3075663D6DD35FC554D303EC6 /* ValueContainer.swift */, + 39139551D157EE1146CC15CFBEAFC945 /* ValueProviderStore.swift */, + 0AC56FB29A4BDFF4CF1349AF6A43D9F9 /* Vector1DEffectValue.swift */, + 0DE5DF902C1E8080C92964EA0B0C8D6E /* Vectors.swift */, + 837CE453DD68FD5980A53849C6B2FDE2 /* VectorsExtensions.swift */, + C5E34F664A26E302A185A09496929E75 /* View+ValueChanged.swift */, + 22E6C6B2624EC3C4CEDDDE1149B64473 /* ViewDifferentiatorProviding.swift */, + 488940941E25EEC0F1419CDC1C942616 /* ViewEpoxyModeled.swift */, + C86BA257469B7EDB7C543D6521539A53 /* ViewProviding.swift */, + C36DE6C3FC332032CD0B60D0BDA7563D /* ViewType.swift */, + 173E5A5AC9E0556461707258329978E9 /* VisibilityAnimation.swift */, + E7CDA2FFFAE2097689AF3F32BE7E21DE /* WillDisplayProviding.swift */, + 3505A72458850FC11DA3814D2B095AA5 /* Resources */, + 792F48C1121F4C4727C83EED0CED5BEE /* Support Files */, + ); + name = "lottie-ios"; + path = "lottie-ios"; + sourceTree = ""; + }; + D61BBE141BD5A1FE1FBE1B6CCA689984 /* Support Files */ = { + isa = PBXGroup; + children = ( + E10C79159E195F6C81ED9B2E89F90A37 /* AMapSearch.debug.xcconfig */, + FE7774FEDAEA41B1AA9734250483E1FE /* AMapSearch.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/SDWebImage"; + path = "../Target Support Files/AMapSearch"; sourceTree = ""; }; - D6AE84D7A883F200DE62C54E650BDB4C /* Resources */ = { + D9AC6D9F03DCEE5596A4C6EAB157FD8F /* ZXSDK */ = { isa = PBXGroup; children = ( - 29C1F94D4278A162A285C44FE14DB4F6 /* PrivacyInfo.xcprivacy */, + E1E219131FB54B030C763D283B9FABF6 /* Frameworks */, + 63E726FE4761BFEFC79E1AAB77C7F136 /* Support Files */, ); - name = Resources; + name = ZXSDK; + path = ZXSDK; sourceTree = ""; }; - D98C3FC39CA3292D4531500A177AF707 /* Frameworks */ = { + DAA27F241C38D2B2ADCB38ADC20D98D5 /* Utils */ = { isa = PBXGroup; children = ( - 619D6D0BE97FAA6CFB40BDEB233BD739 /* GeYanSdk.xcframework */, + 2CB958102E3830756508C5AE67B201BE /* OIMDefine.h */, + 5CC360DDD6D3361E48E7695224199158 /* OIMReachability.h */, + 950AF206CB2131B94A4913E8D6D73802 /* OIMReachability.m */, + ); + name = Utils; + sourceTree = ""; + }; + DC9C6F44976A754DB63167E2E4D033B3 /* Resign */ = { + isa = PBXGroup; + children = ( + D0E21354913A22F0F4F3F224BF3699C6 /* IQKeyboardManager+Resign.swift */, + 57F61591FF5B1753F1EDA95DD7F1F221 /* IQKeyboardManager+Resign_Deprecated.swift */, + 86CE596122BF5B193D2C94C75BF941B4 /* IQKeyboardResignHandler.swift */, + 03E67A6EC39FF472B83B7840AF78E292 /* IQKeyboardResignHandler+Internal.swift */, + A6B15A87F23CED5AFFB3908396D1AD38 /* UIView+Resign.swift */, + 16B62285E67238FCDFC2EE5E85A20C18 /* UIView+ResignObjc.swift */, + ); + name = Resign; + sourceTree = ""; + }; + DCCFD82C658FB653ADDC232EAA60F885 /* SwiftyJSON */ = { + isa = PBXGroup; + children = ( + D47AAA9B971BFF2F0C01320573159825 /* SwiftyJSON.swift */, + C01231F6BB5829F4658B0F8ADA7827E4 /* Resources */, + AF7A509B77A950D178DE1E642AB26B72 /* Support Files */, + ); + name = SwiftyJSON; + path = SwiftyJSON; + sourceTree = ""; + }; + DFC6A93A11DD820E89FE7DB4B3E90B6D /* webp */ = { + isa = PBXGroup; + children = ( + 507C90449A9C2A97E2871ACAC9B1A441 /* alpha_dec.c */, + 979C891C173C4B89C451458A3F545DCC /* alpha_enc.c */, + 33F3EFA42D26365BF6A13F0710A58980 /* alpha_processing.c */, + 0951F87C6DE10E5CFAB72203270704EB /* alpha_processing_mips_dsp_r2.c */, + 1CE5CC4648FB6DF842BA008DD474C9D0 /* alpha_processing_neon.c */, + 520200F35D7AC74EBA71E00F2CBF4F38 /* alpha_processing_sse2.c */, + 0D40A187A4C62181827B7D1C0CFFEFFD /* alpha_processing_sse41.c */, + 5F41F37C01FE78AF3EB2EBE2C0063C55 /* alphai_dec.h */, + F671C802188EF41EED437EF1BD461D86 /* analysis_enc.c */, + A29BD49A7C76A70FC93ED9BBE634D6A2 /* backward_references_cost_enc.c */, + 240B3E67D8767688B64A581BA5949261 /* backward_references_enc.c */, + 36867FE9CEB2E51AD35828908BE554DB /* backward_references_enc.h */, + 24D2D7C0AE2ECF3BEFD1763BBEF314B8 /* bit_reader_inl_utils.h */, + 7594C627631107EC787B010DDB216F87 /* bit_reader_utils.c */, + 37A76EC7E372C59E5A53839B2D5EC932 /* bit_reader_utils.h */, + 335078A0CED7AAD0119A29BAF4421016 /* bit_writer_utils.c */, + A509ACD41593F9645F64E6E501A170B4 /* bit_writer_utils.h */, + F537EF39FAE967FAFFB3C95ADE5A3B62 /* buffer_dec.c */, + D6E9D7AF870E8D988924C6290B87CB66 /* color_cache_utils.c */, + 41CEA18D25AEC926DA2658E42254B462 /* color_cache_utils.h */, + 82E48720FDE1FD73E9188821ABBDEB63 /* common_dec.h */, + ADD590C801F4A52D73C98EA6ED07876F /* common_sse2.h */, + E9267C55D20111C7DA6661FF692F1FCA /* common_sse41.h */, + 6BB7796CE00BCED66E4B2F23431A73F6 /* config_enc.c */, + 910B1455FE142F868DB22A1E2D94066D /* cost.c */, + E2604177A3E85192F036556469BE54E5 /* cost_enc.c */, + 01140C390F9C1A5A0B1FA345EDB25D8A /* cost_enc.h */, + A2434F3EB6290F8CE20AB41821143D16 /* cost_mips32.c */, + 940C74F803A7278DA8A603C8A4C8CE5A /* cost_mips_dsp_r2.c */, + 6D70119D576DA10861861869B0B91C91 /* cost_neon.c */, + 3CE5BD03C703D73BE31F3D87E1B5DC08 /* cost_sse2.c */, + 24FC9168D387E6F56C45A5E422ED6057 /* cpu.c */, + A826013E455DCB77EA899538B69425BF /* cpu.h */, + B22FE5811BBCC2B3F4C41290E2AA14F9 /* dec.c */, + 626BED7AFF918C2EB7C12F491DDB7BE7 /* dec_clip_tables.c */, + 3D695561A56C2DD9E3D9132C6DF66CAA /* dec_mips32.c */, + DA3E6508700E6F2FE2BF9BEBCE2BE979 /* dec_mips_dsp_r2.c */, + 1DBE5FAED8A096071298FA384ECCAB5D /* dec_msa.c */, + 815A9A68FC8F5D4B8295C60201EA3607 /* dec_neon.c */, + B581780208A80C4FB8291D723C00EFDB /* dec_sse2.c */, + 46A6A76613C60A158BED1E4B71FF5A5E /* dec_sse41.c */, + 13DD4EB9386FF12834E44BF449F92FC4 /* decode.h */, + 31095D3E6FF883967D59CFEE2575C384 /* dsp.h */, + D1A524C5B6ECAE4BAC7424565E81C313 /* enc.c */, + 046A2C352C7F998A7D82B6A41E402562 /* enc_mips32.c */, + 2CF7AFA4E3D64A4BA4D1B1B57212C941 /* enc_mips_dsp_r2.c */, + D88DF71236E722809CDC054A7C195C5F /* enc_msa.c */, + 5F7C7512CF2FDDA57441C76E292DFA54 /* enc_neon.c */, + 5E5BBE340E41A5864BF05B58060A75F6 /* enc_sse2.c */, + C6D30DDFE1BF6DACA6804172A77CAFA4 /* enc_sse41.c */, + A21AF33BAC1856A8747F2733F50DB38C /* encode.h */, + DAB300A21E292F64E0091E1CB70BE27E /* endian_inl_utils.h */, + 4FF5C188C69C55F5F58943A32C6A5590 /* filter_enc.c */, + DF8B4E43D6A80D3F3D3212D2C78AB121 /* filters.c */, + A2A3A2F1F37FF6F5C217BD219BA3DCFA /* filters_mips_dsp_r2.c */, + C4822263D21DDDA08A1EF2995BBE39B7 /* filters_msa.c */, + 728F4A0612FA1A63487666BF4A4B68DA /* filters_neon.c */, + 52DF6CFFEA5B2F7347476A2524E03780 /* filters_sse2.c */, + 3A5E30809D431C734969D9A65F160C87 /* filters_utils.c */, + 12A797C3A031E57AFC7DDC1C885765D6 /* filters_utils.h */, + 8AA70B6D54C3434DE9C65E169C333587 /* format_constants.h */, + 5C782F6BBA9D908DF2ED57F50C12C768 /* frame_dec.c */, + B01841AD7F4C16405F1596D4FC42C0B7 /* frame_enc.c */, + 68CCF82D67A8D5BF212E5D1E132B0103 /* histogram_enc.c */, + 1FCDFD3479752F715448F3E88166C942 /* histogram_enc.h */, + 803F8F55A8F17B4D7652541124C612C4 /* huffman_encode_utils.c */, + 8493E3C56E90747096AE38907297A71A /* huffman_encode_utils.h */, + D0DE2E7445B1ACF99F6851237BF43962 /* huffman_utils.c */, + 3B59F6D2D32C4EEE3ECDEF9CE11B50D4 /* huffman_utils.h */, + 4CD359CC21DFC73BA0F1DDCAF0486162 /* idec_dec.c */, + 5625B9E2F5C57D4695967DE287CA1547 /* io_dec.c */, + 1B4B16CEF33050278A4A904EC75AD40C /* iterator_enc.c */, + AA7D8697DE6274197EF66543E7204F88 /* lossless.c */, + C6E63714E5163D46EAEF91865D01ECDC /* lossless.h */, + 7AEC81D4CEAFD3F38E344F8311FE012D /* lossless_common.h */, + 69C94D551311BF96B246137BE18B4214 /* lossless_enc.c */, + 57C8B09E9B907A910FA2CA113D4EE94C /* lossless_enc_mips32.c */, + 4F4493CF215BF661CDF160795093A360 /* lossless_enc_mips_dsp_r2.c */, + A06B171ACB56AD93E1BD1EBEF5864588 /* lossless_enc_msa.c */, + 165FE2BA9D7A569098A2DD6DEB322A92 /* lossless_enc_neon.c */, + E62BB35812EB4C99463DE18C1B9EB0BD /* lossless_enc_sse2.c */, + 33F42C258DDB2E31077B9DE98F72F3B4 /* lossless_enc_sse41.c */, + 5C3BD5F1BA48FA5E47E18FBCF7AECCA0 /* lossless_mips_dsp_r2.c */, + D684D3C9D84C465A70ABF5B38AB813C7 /* lossless_msa.c */, + E0EA20F9C28C606A3D5D4FFEF8208E80 /* lossless_neon.c */, + 07D0C4E9495B63B74FEB580EE16DBEC2 /* lossless_sse2.c */, + A89DFF6BEF600D2FD437FB469EB3876D /* lossless_sse41.c */, + 6FB0A97444E8C7D469D5B0FF79C781D6 /* mips_macro.h */, + 41A60F1CDF890259E3C6967417E873B4 /* msa_macro.h */, + 5D73881111D0B6F5672FE5D8E90E98FA /* mux_types.h */, + 924B109D0B5D6A53163A686247653238 /* near_lossless_enc.c */, + F0F4E13F07A961A441A6054F294E1167 /* neon.h */, + 1005FE0354AFFB68DC5891504FCA9BCC /* palette.c */, + 05B1B4DA4C8FF18FC71780D40B4D6E64 /* palette.h */, + 3C07F59A034811F4CBBF62F8E736ECAA /* picture_csp_enc.c */, + E23A82FD88F15BCED19B1985CF16548D /* picture_enc.c */, + 747D0903BDC62FE4C5DA5E8AA4342FAC /* picture_psnr_enc.c */, + FD3856AE45707685922FEF462D919D7B /* picture_rescale_enc.c */, + 103B0BA9D30353B2A3AE6A3E4D345958 /* picture_tools_enc.c */, + 645B1D036F396C3C31884CF44074CB01 /* predictor_enc.c */, + 5163127D0CC7B14BDF70ED1E3ABB888C /* quant.h */, + C30C54F5FE080C171CB0A8068F86BE2F /* quant_dec.c */, + 0ED077EB75CE413B9DB3BDD2E67A5D33 /* quant_enc.c */, + 31391E8B55977047175BC0FA348319BA /* quant_levels_dec_utils.c */, + 76CC33947A6F23A709A9F9686648B932 /* quant_levels_dec_utils.h */, + E1F62D4EADB9E5D416AF1F2EBB690434 /* quant_levels_utils.c */, + 9823236B88743EB6A4D25D711237C722 /* quant_levels_utils.h */, + BC82B7E9975E6980600CDB79F602BDD8 /* random_utils.c */, + ECC43983EFD3D5D2F45DD8A897943511 /* random_utils.h */, + 6427F96BC62F8B8E39CE8CBF47E01176 /* rescaler.c */, + 1C1D9B69A7128BBCC29DD780202F2071 /* rescaler_mips32.c */, + 616CBDDA5612B517A144C40409DE85D5 /* rescaler_mips_dsp_r2.c */, + B2DF02A1C83FCAC61CE81BF9B51677AC /* rescaler_msa.c */, + 6286DBDC946A52B1E86BC5F2EB20BA19 /* rescaler_neon.c */, + 1FB1AF2C85681828F45ABCA77CA811B2 /* rescaler_sse2.c */, + 524F638285FA3A2ABDFCF6B787490342 /* rescaler_utils.c */, + 1CAD8E36D5A47E8FC472AD76480C5F1E /* rescaler_utils.h */, + EC770E47AC11ACA4E82F3988F665DAE0 /* ssim.c */, + CA33EB72D1CACE2D1D5F62ABB5C0D627 /* ssim_sse2.c */, + 71A128A3C931B299C59408CB2AE87451 /* syntax_enc.c */, + 1E154A22F7BFD213343B11EF0EF10A5C /* thread_utils.c */, + A287BBD95D2A3CE560410E6AAEFD0C82 /* thread_utils.h */, + A00EA2624DD142E40DE0ADF47D2A0AB3 /* token_enc.c */, + D06FBFCACDB5DEA5E6A56C03EDB2CCFE /* tree_dec.c */, + 4E8D0DAD81814DB92CFEE73A78339252 /* tree_enc.c */, + 0A53ED458B025D58C4FD11EC93FFAAA2 /* types.h */, + 9AD40EA1CF3BDED2A363F76D9B6911F2 /* upsampling.c */, + 055298DA034E8AA9E33D79D490271D2D /* upsampling_mips_dsp_r2.c */, + CB226B090B92DCBB1D0C6EDDAC487C5D /* upsampling_msa.c */, + D330042F8A70A7845C60AA7BDA165452 /* upsampling_neon.c */, + 7FB09B2B5E42E2CEDD4C919D77689C08 /* upsampling_sse2.c */, + DC0328F98F4917C4905DA2AD95CC417A /* upsampling_sse41.c */, + 8D4A842BE2E110919CE40363C5F007E2 /* utils.c */, + 712994A3D2CF6756C96528319EEF6AA9 /* utils.h */, + 6C98EBBA8FA597707BF0B50B83AE3CE9 /* vp8_dec.c */, + 63A3A7CA60BE4D32F36898432CE921D0 /* vp8_dec.h */, + ADE23998ED27B4812995A97BEF5F323C /* vp8i_dec.h */, + D7E9B43B55164D16B6F6795C9CB4ABD4 /* vp8i_enc.h */, + 375820DF14407C740784DFFB937AD921 /* vp8l_dec.c */, + 7197893149C4441D96B6DD968118BD8C /* vp8l_enc.c */, + 011E89E515BB464178D2AD0A6CBDC760 /* vp8li_dec.h */, + B652E29752B7E03ECA2EB9B62D3DB63A /* vp8li_enc.h */, + C05D0791B25960724D44549980AD74B1 /* webp_dec.c */, + 846FD9A1A5BAE3A6EF9143279169E011 /* webp_enc.c */, + 8FA1F9EE893754FCB88034C3F53B9134 /* webpi_dec.h */, + 1A95E8634ABD3401F658163DA5877CED /* yuv.c */, + 8F648C5A78D49866F4428026C3DBC0FF /* yuv.h */, + FDECDECD34ADFC847CCA706F55AFC610 /* yuv_mips32.c */, + F51E7DE30BC2B5251F76EC0B770D2D23 /* yuv_mips_dsp_r2.c */, + E14EB83C1DB19335E77096319A0E2693 /* yuv_neon.c */, + 4E15CCE57FB545DAC0D33E55EBB19B2A /* yuv_sse2.c */, + 27A43B258704D27FDBD3E9FF44A51207 /* yuv_sse41.c */, + ); + name = webp; + sourceTree = ""; + }; + E14CAAD9AACB44493155D716691D2BB6 /* Support Files */ = { + isa = PBXGroup; + children = ( + CA53A2E29927041974A34C30773D58EC /* ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist */, + 1B7EFA9029C4AA0F8E04C83D67306D6D /* RxCocoa.modulemap */, + 6A6B3C05E2A7710AA4BB0C9B83E2BF36 /* RxCocoa-dummy.m */, + 37CD281275F1894727824699298D37B6 /* RxCocoa-Info.plist */, + E6DCBE3CADE53A7306B36C101337AAE8 /* RxCocoa-prefix.pch */, + D1EC99C6BE34665E03162207933049DA /* RxCocoa-umbrella.h */, + 5B1A0130105B98916AF1D590086BFD66 /* RxCocoa.debug.xcconfig */, + 709B926DD9D3886E0BA907D0A3655373 /* RxCocoa.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxCocoa"; + sourceTree = ""; + }; + E1E219131FB54B030C763D283B9FABF6 /* Frameworks */ = { + isa = PBXGroup; + children = ( + D8615B74C79F1A3751FE67C06080A6DC /* ZXSDK.framework */, ); name = Frameworks; sourceTree = ""; }; - DA82333E2C26E6CDAC71C128CC3E9276 /* Support Files */ = { + E33D399FBB585A3939D3AAEC5B6515DD /* SwiftKeychainWrapper */ = { isa = PBXGroup; children = ( - 71CAA31075A3F10488171E1B74FC8B0F /* SwiftyUserDefaults.modulemap */, - 3A5605DFB255E8E50316E27C2AC51298 /* SwiftyUserDefaults-dummy.m */, - 36018657F97ACBD41941D6142C29AED7 /* SwiftyUserDefaults-Info.plist */, - A76FDED2A38259CFBEF42A7E0ADA24C1 /* SwiftyUserDefaults-prefix.pch */, - CD8E93CCDB5866098FEF8856FFB20F0F /* SwiftyUserDefaults-umbrella.h */, - F1A0B9A15DBD2D3F89FC7A2167A4AD3F /* SwiftyUserDefaults.debug.xcconfig */, - 10B1ACF2AADB5AD04163F4674BFE07A0 /* SwiftyUserDefaults.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SwiftyUserDefaults"; - sourceTree = ""; - }; - E08F64891F9C2915133647F92424EA3A /* Support Files */ = { - isa = PBXGroup; - children = ( - ECE162FF4B96BD214DA70E69F32A4DC8 /* MarqueeLabel.modulemap */, - 3046218CAE71E06503DEE56FE37F2119 /* MarqueeLabel-dummy.m */, - C1C0FD80E79D2926FDECD4C655DF8167 /* MarqueeLabel-Info.plist */, - C3FC533DE5E471CA767990817D462FD9 /* MarqueeLabel-prefix.pch */, - 49109E0282ED87E8EDD6FB47CB18C964 /* MarqueeLabel-umbrella.h */, - 1858DBC20C1ACE16F5BE62DD4C23AEDF /* MarqueeLabel.debug.xcconfig */, - 815C778FCFC9DF9AB4BB867705E3D701 /* MarqueeLabel.release.xcconfig */, - 645AE5F27AA607A164905A55BE37FDA8 /* ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/MarqueeLabel"; - sourceTree = ""; - }; - E2A7FEC7F567EF8BD435292F80BDC7E8 /* SwiftKeychainWrapper */ = { - isa = PBXGroup; - children = ( - 1E93437C29905A7527D19EBEC710F418 /* KeychainItemAccessibility.swift */, - FF0025CF7C17D6A5F84D9489FE650FBA /* KeychainWrapper.swift */, - 5761947A8E5C4B96B80D8634E5181BC3 /* KeychainWrapperSubscript.swift */, - 301C9D054BD58240F500E205344E5E3C /* SwiftKeychainWrapper.h */, - C63F2E7201518ECB969AD15C40AC84ED /* Support Files */, + 78F45D1A1EB720928FAD6EFDCCBE1536 /* KeychainItemAccessibility.swift */, + 4EB58ABC19057B8242704E3499769C82 /* KeychainWrapper.swift */, + 2287FFA8D1569A799C7199DEACC54A2A /* KeychainWrapperSubscript.swift */, + 7AA65DC4296085382ABB031FFD4FDBAD /* SwiftKeychainWrapper.h */, + 6B9B000CBA2C2C3B994B0679C462F810 /* Support Files */, ); name = SwiftKeychainWrapper; path = SwiftKeychainWrapper; sourceTree = ""; }; - E38841225B2C182D3288F2B62AC3EEDA /* Core */ = { + E470EDB4DA4C218EBB9CC4297465F767 /* Support Files */ = { isa = PBXGroup; children = ( - F92FC47C21AB70D50DE321EF7CDC1FEF /* YYAnimatedImageView.h */, - 366510E521C9064578CB795725F0EF55 /* YYAnimatedImageView.m */, - 5369DE443FA67414E25C47C16C19CDD2 /* YYFrameImage.h */, - 6815C778E5D2D39FDC2284C3868D2F07 /* YYFrameImage.m */, - 32262A01385AA280BD0BCCC5C70A0237 /* YYImage.h */, - ADB41122F7EEAC1BC2E8C6BA3079508C /* YYImage.m */, - C9A10F0B9F0023A1C363E7C4517DDDBD /* YYImageCoder.h */, - 71E50B64226D3560CAF37B63F959E322 /* YYImageCoder.m */, - C1B302C4A61CD77057994883E8AE64C5 /* YYSpriteSheetImage.h */, - BB7467BE133454D87B61A8895816C0A5 /* YYSpriteSheetImage.m */, + 14A25801BE3681A6B246E467BD8305FE /* HXPHPicker.modulemap */, + DC1E150CEE2FA713EF8E77E76B5F0E06 /* HXPHPicker-dummy.m */, + E3ADD0BE9D6A447D24B498B2BD362212 /* HXPHPicker-Info.plist */, + 9B26973B3CBD32429FC5B8671E715F12 /* HXPHPicker-prefix.pch */, + 27E062A58C2152A34289C191C1908410 /* HXPHPicker-umbrella.h */, + CE33785CC080AE402A8C5B0628D044B2 /* HXPHPicker.debug.xcconfig */, + 7A538427ACB5E54D82B9758C7B881AFA /* HXPHPicker.release.xcconfig */, ); - name = Core; + name = "Support Files"; + path = "../Target Support Files/HXPHPicker"; sourceTree = ""; }; - E5B87255883FF2491827C25D20AA6E24 /* Placeholderable */ = { + E5201F3866F50193E15BB3B6B62DB64E /* Resources */ = { isa = PBXGroup; children = ( - 2082CF6101F2C1D95E6AA64DA48FA9C6 /* IQPlaceholderable.swift */, - ); - name = Placeholderable; - sourceTree = ""; - }; - E8BAC1ABC4D224C9FD7B9EA798FA89CD /* Resources */ = { - isa = PBXGroup; - children = ( - ACA84D9FD7A30E84D64FDD5B306DE077 /* PrivacyInfo.xcprivacy */, + 87F5684EEAC16057EE7CFC5BACC763C4 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - EA761952229FF5E736A9D51024E3B26C /* Popover */ = { + E5F5C55E92AC2AAD92797EE3CC9ED22C /* Frameworks */ = { isa = PBXGroup; children = ( - FB8BDEA4C7A77BAA0355626608295FB3 /* Popover.swift */, - 82E03FC2739088B6695017EFFF339F6D /* Support Files */, + C850C078C1E24C07530E60B35CF3DF4D /* iOS */, ); - name = Popover; - path = Popover; + name = Frameworks; sourceTree = ""; }; - EB2539048E7BDC98365D91AB0A1E942E /* Support Files */ = { + E60D404C90FA88964FA6392E06D2D272 /* CocoaMQTT */ = { isa = PBXGroup; children = ( - 1D2FE9608AAFE10B6C532B177274353D /* MJRefresh.modulemap */, - 4846DEBD1B88739515A29CBE64DAD34F /* MJRefresh-dummy.m */, - 7CCD874AE1FC5B522BA3D50B6F03D7B2 /* MJRefresh-Info.plist */, - 1DB6B3A6190703C3CC0E2646340F58EC /* MJRefresh-prefix.pch */, - CFC2CA99DCB07C318665A8C26096B21E /* MJRefresh-umbrella.h */, - 7FAA15A80E3EE70FB8617B72A76C5C99 /* MJRefresh.debug.xcconfig */, - 086F64A3B9E25E5506DF53C6A7398B30 /* MJRefresh.release.xcconfig */, - D2F3CE00946882B137C6D3ADE1F17BF5 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */, + 3354CCF305F029048F29E81C8CBCEF66 /* Core */, + EEC1FFA5679453BBA638BBC65D9FB99C /* Support Files */, + ); + name = CocoaMQTT; + path = CocoaMQTT; + sourceTree = ""; + }; + E67F28A7BFC2D0A10F4A859FF3252BD1 /* Video */ = { + isa = PBXGroup; + children = ( + 5ED4C28A20C58BA223BDDBF5861D744E /* YBIBVideoActionBar.h */, + 1EC1B8C248D81410FDAFCB9BE646654F /* YBIBVideoActionBar.m */, + 4E70EBF8D3A2110BAE7AB2F5C0FCE6B7 /* YBIBVideoCell.h */, + 57A2457AF7E1D5EF7A21A2F3D540DA59 /* YBIBVideoCell.m */, + 8949E81B22A5BA6D918960149D5B3E4C /* YBIBVideoCell+Internal.h */, + 4448D42457474E9CEFD9FDDB43FCDE90 /* YBIBVideoData.h */, + 193E7324AAD235E26ADFD7F5B3EEB6C7 /* YBIBVideoData.m */, + EA7C9A78827F0C1A7A33C41BAAE00C77 /* YBIBVideoData+Internal.h */, + A9F238C824DC5CABA2405329173D8675 /* YBIBVideoTopBar.h */, + C5CFBD20109F66699F30CEBC6AB89D14 /* YBIBVideoTopBar.m */, + 522607A5314BF8105FC7AA0003C2790A /* YBIBVideoView.h */, + CFABCB79861B27F18DA91612184F6887 /* YBIBVideoView.m */, + EEDC9305ED11DC686414C6542BB53A3F /* Resources */, + ); + name = Video; + sourceTree = ""; + }; + E69EBF1C66CE1E6E987817BBE63B224A /* MJExtension */ = { + isa = PBXGroup; + children = ( + 2BD8508309633303254E1D0D64DC2DF9 /* MJExtension.h */, + E3620E9742F07E1E2733403D44E6B104 /* MJExtensionConst.h */, + 637305295B526B7C505220CE2A7893E8 /* MJExtensionConst.m */, + 2D7D7A97A7089AEDDA405B472981349F /* MJFoundation.h */, + 53594C8166DD9CECAC206989DD8F274D /* MJFoundation.m */, + 57DACE5762DB2310A02D85503ED9DED1 /* MJProperty.h */, + FAF290DAFBACC9C13199D9CE5174EDA4 /* MJProperty.m */, + DFD1D7F5AE312A4CF621602C119A807D /* MJPropertyKey.h */, + C1B656B97F0E6F92AF27F46991440302 /* MJPropertyKey.m */, + D80F30B4976169EF9937B6A44FD12D40 /* MJPropertyType.h */, + DE1E6901934EE596740D842380286A4D /* MJPropertyType.m */, + CA1E32AF2B6B2E567E088EE3153CA7E8 /* NSObject+MJClass.h */, + FA212ECF33B3A933473221784ED69166 /* NSObject+MJClass.m */, + 5AB1411EA19E9E5CCE78567975424B15 /* NSObject+MJCoding.h */, + BD344724CF8CFF05B4EC629141908CFD /* NSObject+MJCoding.m */, + CF0EB9FA6D0C021B52847CA29ACE00CF /* NSObject+MJKeyValue.h */, + 89594ACC4AC688E569CADE30241012CB /* NSObject+MJKeyValue.m */, + 3AC8482EF4E24B214C0C7B9E49611EE5 /* NSObject+MJProperty.h */, + 69B4A7FF944AD82C79E440C8DF908199 /* NSObject+MJProperty.m */, + 0531C9A5E841EDBCD66B6F621E48F634 /* NSString+MJExtension.h */, + B335E945CD78406784CCA803F62F16F3 /* NSString+MJExtension.m */, + B50A3A53296A60335F9EC54745F2EA5C /* Resources */, + 85B1E4EC1A97067A50E27785FFF4EB42 /* Support Files */, + ); + name = MJExtension; + path = MJExtension; + sourceTree = ""; + }; + E9E5A69AF7E4BC033E90E0F769D9646E /* Callbacker */ = { + isa = PBXGroup; + children = ( + 7983D53E055B37FF8E25038B02CC164D /* OIMCallbacker.h */, + 5B0150E1B9B7AA3DE6394C130418B487 /* OIMCallbacker.m */, + 90C7FFBD13E7069D7CDB43E2A9F7F81D /* OIMCallbacker+Closure.h */, + CD723E5D168E0DB8A0F018B2A3F37D7A /* OIMCallbacker+Closure.m */, + F21FFCD8871B063FF323D4E6DEEBC240 /* OIMGCDMulticastDelegate.h */, + 423264E105440A0186760072DCD20FCC /* OIMGCDMulticastDelegate.m */, + ); + name = Callbacker; + sourceTree = ""; + }; + EAF84AD095D72F6E0529578F7284CCFE /* Resources */ = { + isa = PBXGroup; + children = ( + 277192D403211FA10EEAC643C35570AD /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + EB0510EACDEE7519FFB716FBB9089BB1 /* SDCycleScrollView */ = { + isa = PBXGroup; + children = ( + B0AB04C5B7E187EB649C48990318B217 /* SDCollectionViewCell.h */, + 33B78742EEB2B26C6433B045E4C130E7 /* SDCollectionViewCell.m */, + 8B4B42635EF69EE9862334DD24CC3566 /* SDCycleScrollView.h */, + 335488488BA5012989636955BBCB8F05 /* SDCycleScrollView.m */, + 158C77258A2351E9D3B6E93C28100672 /* TAAbstractDotView.h */, + F55A04BD28A92256172FFBE62A100A7B /* TAAbstractDotView.m */, + 3526170ED597B2F4DF1BF8DD590D5391 /* TAAnimatedDotView.h */, + 46401BF2160F11FED118E9A0C76EDE18 /* TAAnimatedDotView.m */, + FA45A4A7B7866A3D8115C051623E3CF7 /* TADotView.h */, + 38D2052BC73AF3D0CEB469FDC3D6C867 /* TADotView.m */, + 9EEC0659E54BABA5CEDC5C8D6F2B82C0 /* TAPageControl.h */, + EA130CD648B85D56FD604CD251FFD940 /* TAPageControl.m */, + FD30BE25D5B77C034CA2040AC6EF80E6 /* UIView+SDExtension.h */, + AD1D86B254CE47711A06BBB8609D5C1C /* UIView+SDExtension.m */, + 6A1DF896831FAB9A457EECCA4F045D31 /* Support Files */, + ); + name = SDCycleScrollView; + path = SDCycleScrollView; + sourceTree = ""; + }; + EC1B197DDB5A762DE794CED65B40DE63 /* Support Files */ = { + isa = PBXGroup; + children = ( + C53A4E9FEDAEA9A964D888B3B4ACDE62 /* Differentiator.modulemap */, + 3676B48C2F610BF5A549DEC0E3237259 /* Differentiator-dummy.m */, + C9A1F58E7DA61B4F02959233658F889B /* Differentiator-Info.plist */, + B50687CF3F684AA051CA00760DB2F127 /* Differentiator-prefix.pch */, + 2F2C087558ADE98640782FDA625F779D /* Differentiator-umbrella.h */, + A26A017981C2551A9932A411A10D8C13 /* Differentiator.debug.xcconfig */, + 800097F58750AAC2B2BAF8E599AD7AEF /* Differentiator.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/MJRefresh"; + path = "../Target Support Files/Differentiator"; sourceTree = ""; }; - EFE5927F7E570D4A275ADA784B520553 /* Products */ = { + EEC1FFA5679453BBA638BBC65D9FB99C /* Support Files */ = { + isa = PBXGroup; + children = ( + 6F21BA5E097A8DE88F83DD9522A9D0A0 /* CocoaMQTT.modulemap */, + 3C61A14610D0126017F22A925514C694 /* CocoaMQTT-dummy.m */, + A81A9BF5594B5731597BBC2E2B350AE5 /* CocoaMQTT-Info.plist */, + EA78CE4C4E183B922A11439BE9465823 /* CocoaMQTT-prefix.pch */, + 5630C95267C5EDAFCAA18472484F8E66 /* CocoaMQTT-umbrella.h */, + 1572295F624626F7E6A25BFFD705DE16 /* CocoaMQTT.debug.xcconfig */, + 8510A31B20023A5D55194501EEC480F3 /* CocoaMQTT.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/CocoaMQTT"; + sourceTree = ""; + }; + EEDC9305ED11DC686414C6542BB53A3F /* Resources */ = { + isa = PBXGroup; + children = ( + 6F49859D2EBDF3619C22E8A959FF01BD /* YBImageBrowserVideo.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + F1F3AB582168068047CB22DFF189D8BC /* Products */ = { isa = PBXGroup; children = ( 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */, 085DBCE7DD98588B2ED103B1C1F36026 /* Alamofire-Alamofire */, C261436D14052AE3C35F240BCD155CAC /* CocoaLumberjack */, 519AF98C92B517DD023896CD077EBFD4 /* CocoaLumberjack-CocoaLumberjackPrivacy */, + E6A4E1627379D6540B81A470C575D716 /* CocoaMQTT */, D51C3D0C53D23B97B032E3BDD4F82C82 /* Differentiator */, B313762A2C974EF09CE7FBAC374B6DFD /* HXPHPicker */, FC7F0CF2EA5DF59C59D9995890DA5C47 /* IQKeyboardCore */, @@ -9331,6 +9711,7 @@ E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */, 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */, 3756A9BBE41ABEE8DCBF5BCA6972C4DA /* Moya */, + 08DE826BB58AC8456D39338C267DB337 /* MqttCocoaAsyncSocket */, B9084FE779702931E8DF1D00A2D725FB /* ObjectMapper */, FE6B8ABE5D0AD8A55BCFA48D21915C07 /* ObjectMapper-Privacy */, 1D6CFC15839ACA2CFFE42FF0D4017A07 /* OpenIMSDK */, @@ -9363,300 +9744,185 @@ name = Products; sourceTree = ""; }; - F00883E6CC241DFA597CE4D826864AAB /* Support Files */ = { + F27BEC3AFB9CB8C7BE8741955A88428A /* Resources */ = { isa = PBXGroup; children = ( - C117CFE5F649547894B19490E91DC335 /* IQKeyboardCore.modulemap */, - 525CD205D27F9863472F14703FE96F86 /* IQKeyboardCore-dummy.m */, - A22E4F69C2B5364D39225FE8A26D6D52 /* IQKeyboardCore-Info.plist */, - BA1C0686D3B77AFA9CF96045D8924FE4 /* IQKeyboardCore-prefix.pch */, - 6C8F1BE5271921E4112CB6A96BB1E636 /* IQKeyboardCore-umbrella.h */, - ED84EE15E780A4989C1BA79801B0FCF2 /* IQKeyboardCore.debug.xcconfig */, - 94801563DB532EDC0D80A3BCEE705193 /* IQKeyboardCore.release.xcconfig */, - 2860F4098A792B41F328813B0B8C63DE /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */, + 22A0CAC012E06B7CA4430A19FA504471 /* AMap.bundle */, ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardCore"; + name = Resources; sourceTree = ""; }; - F2B158C56525CB37D0756C301E1ED796 /* Frameworks */ = { + F2885CB689AB458D2550825B8891B537 /* Resources */ = { isa = PBXGroup; children = ( - 8A289C4B349FC18182B850690A731B54 /* AMapSearchKit.framework */, + 088F69851DD20A7E2B4360E4B044A7EF /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + F3C94C83587B7C880837CB978C6057AA /* Resources */ = { + isa = PBXGroup; + children = ( + 81A904CC270F40DAD1A3F3B872317F74 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + F622E344DE756B39160F9A2CA8BC57E2 /* OpenIMSDK */ = { + isa = PBXGroup; + children = ( + 140B90127F8284D9D202F085B0596ECE /* OpenIMSDK.h */, + E9E5A69AF7E4BC033E90E0F769D9646E /* Callbacker */, + 89982FE6845276AD7CB7B77D6DE60F37 /* CallbackProxy */, + 2AF197CA5C99CF72FF47CF9E963E3B00 /* Interface */, + 6407C2B50B084AD33143E72B9879A582 /* Model */, + C7A7BA4CEC9739DBC6E1C548D5B3509F /* Support Files */, + DAA27F241C38D2B2ADCB38ADC20D98D5 /* Utils */, + ); + name = OpenIMSDK; + path = OpenIMSDK; + sourceTree = ""; + }; + FA24AC496694CC0F7BDFC3B94CAD8F28 /* AMap3DMap */ = { + isa = PBXGroup; + children = ( + 6F476A0F630588EC001BA726F7230DE0 /* MAAnimatedAnnotation.h */, + 3B3B4B9F481B229260E949B4E0BFD04D /* MAAnnotation.h */, + 536DEEB258E2B70900710B5E8FC66D08 /* MAAnnotationMoveAnimation.h */, + 5AC2A8315BF414FD10417F45C17F129F /* MAAnnotationView.h */, + 328DDF3378405C46687D785CD170BBE8 /* MAArc.h */, + 9DEB529B2C777502325ABEA4D9CFF4A9 /* MAArcRenderer.h */, + FA1B3D33E1E2CC485CB770904F585605 /* MABaseEngineOverlay.h */, + D58502CF1328DAFBECC1FCDA8D9977D3 /* MABaseOverlay.h */, + 278619F364243280567A6DC8713CF090 /* MACircle.h */, + 5395433AE72618F4C6E62E1EAD06583D /* MACircleRenderer.h */, + 0C72CD0DD87596086C9AF0B56109C312 /* MAConfig.h */, + 275C9C22C6613394FF56DA407F7A0984 /* MACustomBuildingOverlay.h */, + DF7D16D0FE91DDE31FC402A033B81E21 /* MACustomBuildingOverlayRenderer.h */, + 3C6C2C1E35F34598B436A9715B3178E9 /* MACustomCalloutView.h */, + 50E7654753D12870F9957B1D05E0070F /* MAGeodesicPolyline.h */, + 72EB134685BD981674EE5719D703B0E0 /* MAGeometry.h */, + 42D00A5C619445D1495B62A932B9DE3B /* MAGroundOverlay.h */, + 44D897C6C7596759284807513D0F656D /* MAGroundOverlayRenderer.h */, + 858773D1E33A099C96526441A987E2ED /* MAHeatMapTileOverlay.h */, + B413FF66AC5CD323A97820A94E4B199D /* MAHeatMapVectorGridOverlay.h */, + 7F9D6946F90005D408F0F33D2D99A653 /* MAHeatMapVectorGridOverlayRenderer.h */, + 04165116172DB6943583A8C0448C2A3D /* MAHeatMapVectorOverlay.h */, + 2753B5C58645A09D290E600E3BC9DA7F /* MAHeatMapVectorOverlayRender.h */, + 7208DE5B0D75C8BD53D09473AD6743A6 /* MAIndoorInfo.h */, + F71D0D26D45B5542A0A8F39277E64753 /* MALineDrawType.h */, + 423169ACF822472DA2500156F0733BB8 /* MAMapAccessibilityIdentifier.h */, + ACA0FD1057D4E019CF3F33E4DD4C7F55 /* MAMapCustomStyleOptions.h */, + 6325F793B5AC4E9D6C23999F997A27B3 /* MAMapKit.h */, + B85B00D192F8CAF5C187AE860E1B7101 /* MAMapSnapshot.h */, + 5BEBB2722A594F06C7EA18F3A1060AC6 /* MAMapStatus.h */, + 58BCBEA4DC72DA1F90CEE9B583D7D999 /* MAMapVersion.h */, + 71A2C4C71126517C40B0DB66C220EBD7 /* MAMapView.h */, + 3D365F8F2795391FEA3A7976186221B1 /* MAMapView+Resource.h */, + 323F33641A0EBD63B2A4092E2A400D62 /* MAMultiColoredPolylineRenderer.h */, + 5DB4F11D14B8046F8001DD637F89FD95 /* MAMultiPoint.h */, + 96F3E5D9B2FF0D6AA2D5960343BEE699 /* MAMultiPointOverlay.h */, + F642CE189FBD1A03236E003623E87E58 /* MAMultiPointOverlayRenderer.h */, + A1458B5A431F562E12F39408D20AACD5 /* MAMultiPolyline.h */, + A0526BE677EE80BEB8B8F270EBF0711B /* MAMultiTexturePolylineRenderer.h */, + 58BCD5CBFF14B89ADBDF291E1F9D9272 /* MAMVTTileOverlay.h */, + DCCCE1F7F46C22320520E6F805D4750A /* MAMVTTileOverlayRenderer.h */, + 1804279EFA58CB40CB913B6BA37A081A /* MAOfflineCity.h */, + BB93E38AD3C52061F96904FE8367EBB7 /* MAOfflineItem.h */, + 18CCEF9F4B1E514EE1C151BAFB108BB2 /* MAOfflineItemCommonCity.h */, + B5D2D3AE65A187B8FEF27AEA68252A80 /* MAOfflineItemMunicipality.h */, + DE691F3994CC695878CAD1302104BA69 /* MAOfflineItemNationWide.h */, + D9AA6644C740DEBA4D2CFE120147749F /* MAOfflineMap.h */, + 259B8BB391902490BE6CB75B27D954D4 /* MAOfflineMapViewController.h */, + E08C9F4051C49DE50433663D3F76F9D6 /* MAOfflineProvince.h */, + 05C843F98BE11FA841C4889FB5BE5773 /* MAOverlay.h */, + 306934A83C5EFAA04DB020939FC11FD0 /* MAOverlayPathRenderer.h */, + 4A1C62F9A38F1FD80FB92031BAFDFAF5 /* MAOverlayRenderer.h */, + 605153200D33EF84B07350CBDC5C1DCB /* MAParticleOverlay.h */, + 8CCA2E44E59981BE0EACCD1B13A784DC /* MAParticleOverlayOptions.h */, + 55D46CF71D5154F263AC8564AA723692 /* MAParticleOverlayRenderer.h */, + 64C6220B00E5F0A013BFFA10F5EE99E1 /* MAPathShowRange.h */, + CA06EA67576AB4DA1C662F80B2FC1A3A /* MAPinAnnotationView.h */, + E02B5460C16F5447650288B96410B6BF /* MAPoiFilter.h */, + 072418454C445A6F822370D323C70103 /* MAPointAnnotation.h */, + 000906441E421AC44EFD2B17AF49ABEF /* MAPolygon.h */, + AFEDB749D90165E90B360880E2B0BF0F /* MAPolygonRenderer.h */, + 9EC2A9DDAB7BEE8FDC3EACBC3C4C1D1E /* MAPolyline.h */, + 1E591870392035106E96512F65102385 /* MAPolylineRenderer.h */, + 957ABD5CBD7C6C587953F24C9B4801B8 /* MARouteOverlay.h */, + 153604802C3D5B8223956E5CB7AAA14F /* MARouteOverlayModel.h */, + 22F35B08FE80D620A4E10C301B3181A6 /* MAShape.h */, + D70C39F07A6519EF9AAB2BE1DF2272BA /* MATerrainOverlay.h */, + 5A3F99D429B6905052BB416F92885D5F /* MATerrainOverlayRenderer.h */, + DF26523D4FE930F3F717C1C2811DC2D6 /* MATileOverlay.h */, + 731CEBC2B0AC7F996BF22CAFD8482D40 /* MATileOverlayRenderer.h */, + E12432D22B9EE08D0AAFE1409868E544 /* MATouchPoi.h */, + 7CB54E37C3D8E8221EED74772BBAB72B /* MATraceLocation.h */, + 5F862FDF6BDB6EA81D6FAD1A68F9B444 /* MATraceManager.h */, + 6860AFC57864328E2A00C39E5DCC17C9 /* MAUserLocation.h */, + DD18BE8DE0EF2EA417D20CE3978E8782 /* MAUserLocationRepresentation.h */, + 4DF06C65934AA46F4928AB88AF81DC06 /* Frameworks */, + F27BEC3AFB9CB8C7BE8741955A88428A /* Resources */, + 1599095F42B10F407428B81B12177944 /* Support Files */, + ); + name = AMap3DMap; + path = AMap3DMap; + sourceTree = ""; + }; + FADF433389EC6E744C22289B13560776 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 3D87137706F35911310CFABBD8880A4D /* AMapFoundationKit.framework */, ); name = Frameworks; sourceTree = ""; }; - F456D54BFDB45606FD2826FBEEC75A16 /* MBProgressHUD */ = { + FC8142659FBF40BE9B6BF0EA9829EF8A /* Resources */ = { isa = PBXGroup; children = ( - 937ADC586D7A9572D0499B091531BB27 /* MBProgressHUD.h */, - 4C2FF52A2AD4EFB49CA6B7904FDF26EA /* MBProgressHUD.m */, - D6AE84D7A883F200DE62C54E650BDB4C /* Resources */, - C035CC7FFE41C3C574BD25F1D57B32F3 /* Support Files */, - ); - name = MBProgressHUD; - path = MBProgressHUD; - sourceTree = ""; - }; - F56875C21757957BEF6B761DC98D8504 /* Resources */ = { - isa = PBXGroup; - children = ( - 79991E2B9E282CACD293EC27C823FE3E /* AMap.bundle */, + 45F9E01CB1B5AD57F4855BEAFABE70FF /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - F7C7D0A1E1783A005ECB525ED5C4FBD2 /* Resources */ = { + FD24351E668B6206CE5BC360C713BFB5 /* Support Files */ = { isa = PBXGroup; children = ( - 5631AFA1B502DB722A84A7D8AEBC9608 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - F7FCEF70C7D9750C1B6ED3C89E1E04E3 /* iOS */ = { - isa = PBXGroup; - children = ( - C77D66DCCBD20AA11966F53C867FF4FB /* Accelerate.framework */, - 51BA12DF890414FF3DD09E9C68FA652D /* AssetsLibrary.framework */, - F22AAF79A7B61FB53A870AA54CECA0A5 /* CFNetwork.framework */, - BB070EEA28E7CED98A5D3FBC546B2023 /* Combine.framework */, - E04FBA11E10D9D33996D230B6C10B978 /* CoreFoundation.framework */, - 29F796D6472EA6FC82B038C97ECF4785 /* CoreGraphics.framework */, - 4BAE82BA654C7CDA2022A2F964E00DC3 /* Foundation.framework */, - 65CFE3481B5AC8650B206B3A373CA75D /* ImageIO.framework */, - 84364ADC8106E744D74626D2D0AEC0B7 /* MobileCoreServices.framework */, - 9DD1638A7E851D89BA5A60B16C3122AA /* Photos.framework */, - 1296678825E509F2A6EBEA9A83A60147 /* PhotosUI.framework */, - 58B9B2BED448FF6B8E278E87D6D430A3 /* QuartzCore.framework */, - 9542D08E68E56D8CFEDBC7CD5F29AE32 /* UIKit.framework */, - ); - name = iOS; - sourceTree = ""; - }; - F92D38EEB283873DE3BC6F7542FD9F5C /* GTCommonSDK */ = { - isa = PBXGroup; - children = ( - B8175D252F228A82B4B468FE53FE1054 /* Frameworks */, - 21764D062FBD199DAC83E1EB5A269654 /* Support Files */, - ); - name = GTCommonSDK; - path = GTCommonSDK; - sourceTree = ""; - }; - FA3643B9EB0DC348D5E145744C5C997D /* IQKeyboardManagerSwift */ = { - isa = PBXGroup; - children = ( - 06E4BE89938F40F906CC60D72240FD70 /* Appearance */, - 875EAE81E1A431FDF6BB486F0E3129A2 /* Core */, - 4F0CDE059BDFC8D56B1C035A7A27130C /* IQKeyboardToolbarManager */, - B60B395FEF9D2B980EC8C3072FCC6020 /* Resign */, - 02143E9AFEAEC702FE2D8A4CE262415A /* Resources */, - A1787D86241D5231123FE52CE70DB675 /* Support Files */, - ); - name = IQKeyboardManagerSwift; - path = IQKeyboardManagerSwift; - sourceTree = ""; - }; - FA73FB89FFC6C041D2C971504BC4F6B0 /* Callbacker */ = { - isa = PBXGroup; - children = ( - 722CBBE05AA45B4D4BCC2A8D48EC1CFB /* OIMCallbacker.h */, - 3E47F234141A9130E3D666C798E5329B /* OIMCallbacker.m */, - 8068E8070D96B799FC962E5A1BC5511B /* OIMCallbacker+Closure.h */, - A3AF198343EDA479FAEFF07AB3155C1A /* OIMCallbacker+Closure.m */, - DD55E3EE49E45A74B40D393DA730FB1F /* OIMGCDMulticastDelegate.h */, - 36E652E445F8CECC432D298A13A78229 /* OIMGCDMulticastDelegate.m */, - ); - name = Callbacker; - sourceTree = ""; - }; - FA8BC2C4FFD28ECB131D96288CDC922C /* Resources */ = { - isa = PBXGroup; - children = ( - 43E68058B169D1FBD605BEB82E2A7B8F /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - FB8F2C6262E7A6E43D78BD8E5D73242E /* Frameworks */ = { - isa = PBXGroup; - children = ( - 486BC245372C2FC6F3B475C1D0AC365B /* OpenIMCore.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - FDB60DA6F3D82B35536E04AFE17973A0 /* Core */ = { - isa = PBXGroup; - children = ( - 2F5E0EBA29568C35DF864FAF6CBA4DD6 /* NSBezierPath+SDRoundedCorners.h */, - 3F4975EE0DFB3B2FF2DC34F0C3FAD60E /* NSBezierPath+SDRoundedCorners.m */, - CE6A24FF0DA7E2B9D9E7D6432F783172 /* NSButton+WebCache.h */, - 8F878A7EA007A0B25D711F68CEC2F467 /* NSButton+WebCache.m */, - AB2DDA3D7CBE2D21345D27AC7AF3D8B6 /* NSData+ImageContentType.h */, - 453CA5B7C2555E48218CED21C1BC8519 /* NSData+ImageContentType.m */, - 96A774383BDFCF0DCC96A12872CBD4BB /* NSImage+Compatibility.h */, - 6D47897E34F522D3CF1F0C22AB710E89 /* NSImage+Compatibility.m */, - B13292BD10906E86B88551C19BEBC246 /* SDAnimatedImage.h */, - A8F92E2A7462A6E9C1EBE6F316F7E10B /* SDAnimatedImage.m */, - 1C4A3B8F09E406012F86745357A1CD7D /* SDAnimatedImagePlayer.h */, - F1230DFA99D00D6DA8C2465727F22D30 /* SDAnimatedImagePlayer.m */, - 81EEAD77C593182D302DEC7E521078E3 /* SDAnimatedImageRep.h */, - 584B397D010BE3052C3967E87A313165 /* SDAnimatedImageRep.m */, - EB7E2AEED7BA2AEFE99F0369B0A398E2 /* SDAnimatedImageView.h */, - BC8B0B4D9A47EDA4FB888829AF560CD8 /* SDAnimatedImageView.m */, - 6737E046AAEEC1377A37635597AD9339 /* SDAnimatedImageView+WebCache.h */, - 75FE13F045D517683751F241C2D07B5D /* SDAnimatedImageView+WebCache.m */, - AD6C858EAA13A54CA0AA44CC1CE1B01A /* SDAssociatedObject.h */, - 6DFC47471DC57CA8A3990D13F5421EC2 /* SDAssociatedObject.m */, - 36203684131055DB499F60D39CE2F9CA /* SDAsyncBlockOperation.h */, - B552EFCDA8BC74439CF19FF88D4BA03C /* SDAsyncBlockOperation.m */, - D42BD13DE088E55D9440C64037EC2796 /* SDCallbackQueue.h */, - AD1C37483F1765480EA3F2E60B78344D /* SDCallbackQueue.m */, - 56C8858466B5059D32D3438BB36FF23C /* SDDeviceHelper.h */, - EF1552FB2882AE6292A41E0FE732D03B /* SDDeviceHelper.m */, - 0EFE005BE578C2D2E402895822FD412B /* SDDiskCache.h */, - E1D1566EFC577C509F7BD737CAC55973 /* SDDiskCache.m */, - CD0484F6BC5E5083AA0A3493E6A7E299 /* SDDisplayLink.h */, - 4D8BD69420673B5C0598B75F654685F3 /* SDDisplayLink.m */, - 9421E603875C52CCF37AA01A75D831F8 /* SDFileAttributeHelper.h */, - 541F4A250353BC493AD6863F891D9F95 /* SDFileAttributeHelper.m */, - 32FEFE432FBEFC662E16C8BDE4DA9817 /* SDGraphicsImageRenderer.h */, - C14B726FB27D2B21A55B33ADEC4ECFB9 /* SDGraphicsImageRenderer.m */, - 6B0442B2E380011F57D531EC0553CF0A /* SDImageAPNGCoder.h */, - 639CF52A40302ABAD0394A3F45CD9342 /* SDImageAPNGCoder.m */, - 0C4A299CFB1CC50C15D414460381F776 /* SDImageAssetManager.h */, - 944D14CC3340E5906FB0AE787C227F8A /* SDImageAssetManager.m */, - 812CB0666B267F4A5171B774F6D0D99B /* SDImageAWebPCoder.h */, - AD3F046E6A26BC1343E61DFF8913EEBD /* SDImageAWebPCoder.m */, - 6B34C0675FA28CE45E9A9E5129638E48 /* SDImageCache.h */, - A90426A3569DFD849BCC6A1F9C5CCD8D /* SDImageCache.m */, - D3C3F3D9536425D441065A0DD49296FA /* SDImageCacheConfig.h */, - BA191322E165A18078EB558F6D18F31E /* SDImageCacheConfig.m */, - 078588641DE48A9F8B942FE651C967F5 /* SDImageCacheDefine.h */, - 5FE0AF0A4A942C9B375AB754DEE35103 /* SDImageCacheDefine.m */, - 9F7376569D3C3F89560606F792EFCAE3 /* SDImageCachesManager.h */, - DF51400637F64015372A2214FB9C7DBC /* SDImageCachesManager.m */, - DB2F9EE6399F9C70D28AB93C2F3695D3 /* SDImageCachesManagerOperation.h */, - 06C6D818FF85158065EEB29C708DF89F /* SDImageCachesManagerOperation.m */, - 707AC05913DB1E5066C5D4A3117A8D94 /* SDImageCoder.h */, - 50ED832AF109F2B258D94F54C004E6F6 /* SDImageCoder.m */, - DC1657AFEF441E5B1C0C549DEC563130 /* SDImageCoderHelper.h */, - E4D3017944C2D05C9DAE6514D3E169CD /* SDImageCoderHelper.m */, - E059300BBA1B1C6E282AABF76CB9A425 /* SDImageCodersManager.h */, - 7D21B5AC77BB1F5C1839961C7C149A4F /* SDImageCodersManager.m */, - 64DA66D7FA4D6D1DFF8EB0A3D5A1B537 /* SDImageFrame.h */, - 1724A41AA97890D9CB0895E2B99DCD9E /* SDImageFrame.m */, - 564EC0EDD2FAFB0AF6925E211B89F1CD /* SDImageFramePool.h */, - 386033983F3A03681989750FE5B69703 /* SDImageFramePool.m */, - D68AE9C63479784FDA72DE0494BF25A9 /* SDImageGIFCoder.h */, - 0846B8700232494BFCEC5F1561A0AD7C /* SDImageGIFCoder.m */, - 65116B7F8B410E440874CCFA63662B20 /* SDImageGraphics.h */, - 7FE1BA63F690470C059660AF0B0F5AC8 /* SDImageGraphics.m */, - 7C431CF55C1DEA301F7009AC22BAF420 /* SDImageHEICCoder.h */, - DF48A0B567CF35580C11362739F02501 /* SDImageHEICCoder.m */, - 42B2824679F61129A99A02FB3B02A3D9 /* SDImageIOAnimatedCoder.h */, - 60EDA73CDAB249744F8D82D94147C9E2 /* SDImageIOAnimatedCoder.m */, - E92A2F23BD154B929E5D231A46F3FCA1 /* SDImageIOAnimatedCoderInternal.h */, - 680A5B1FAD29D5052E4E207406B38187 /* SDImageIOCoder.h */, - 4D6D43780E33C2CDBD9719B5CA9CD786 /* SDImageIOCoder.m */, - 9A4D97DA05C3A8E92FE31917D35A2473 /* SDImageLoader.h */, - B9D4067406FA8209E984A168CBD3D6A7 /* SDImageLoader.m */, - 7F033F3D3DD2BD7F88B3CFEBDF396ED5 /* SDImageLoadersManager.h */, - 6D1715A4AEA9E504CD864D3449B29041 /* SDImageLoadersManager.m */, - 1F58995D9C873B51C91694DA3DF853E2 /* SDImageTransformer.h */, - 680A88CC00CB2961A0B5247C9F2AFDEB /* SDImageTransformer.m */, - 035A29367C3694753943C9E78FE114DE /* SDInternalMacros.h */, - EDB10F862D32D2EB8157A71B23F041C5 /* SDInternalMacros.m */, - A18CEDAEF818C6AB48438A2230736E32 /* SDMemoryCache.h */, - 5E47BC20E69F8FD24594FFC1D8910599 /* SDMemoryCache.m */, - A8167F7A91C1C9DD4217753A632852CD /* SDmetamacros.h */, - 2FA02D6C631F6C170C069CABD449F276 /* SDWeakProxy.h */, - 972CC00CAA521E6FA780F098E389470A /* SDWeakProxy.m */, - 847FB0FA98CE4AC2E60D73CCAC2CF1AF /* SDWebImage.h */, - D86878EE3183A9473ECB5A2110815050 /* SDWebImageCacheKeyFilter.h */, - 0DA807B3AA45AE66EB8FD6744357C386 /* SDWebImageCacheKeyFilter.m */, - 10EE3A5EAF25A1133FE1366F3E35BD6F /* SDWebImageCacheSerializer.h */, - 8472C6305564D304D3D3D434D7191E22 /* SDWebImageCacheSerializer.m */, - BBCDF59E6D69248934B4BC8F30930BBC /* SDWebImageCompat.h */, - 78936EC2DBF2CF8634C0CC3581635D28 /* SDWebImageCompat.m */, - CACB3BCA3DB641C9B591E625330BA336 /* SDWebImageDefine.h */, - 5CC6895CB40EF7ADB0A3C945CEDFF07F /* SDWebImageDefine.m */, - F98D9C1BCC770B8E7D5CE310E26D0F4D /* SDWebImageDownloader.h */, - 7F5CFA1AE264D0A7CC41E863C86C294C /* SDWebImageDownloader.m */, - 11E4FA4C2B1EA9C47652450BD97F5DAC /* SDWebImageDownloaderConfig.h */, - C3F217B8362CC3E3556A8BBDC8F0693C /* SDWebImageDownloaderConfig.m */, - A677DBA18E68A3B1473D33FD77407ADD /* SDWebImageDownloaderDecryptor.h */, - 41FEE0B7FFF23C3578AAA6B48F10FD1E /* SDWebImageDownloaderDecryptor.m */, - 726A570EB3A764BD9182B257D8A9B086 /* SDWebImageDownloaderOperation.h */, - AA79DD3CDCB73818B02AC1D089A6D543 /* SDWebImageDownloaderOperation.m */, - 9AACEF2C953C3C0DBC735A19E819E97D /* SDWebImageDownloaderRequestModifier.h */, - 5DB84D16310CC6D943255E049A9E9D77 /* SDWebImageDownloaderRequestModifier.m */, - 1E8354D6F5407F2DBB7BAE63AF881072 /* SDWebImageDownloaderResponseModifier.h */, - 38A2C4F42AAAE1661BF9821201515A70 /* SDWebImageDownloaderResponseModifier.m */, - 8CD15BB092F57C56BCAA6B4B7F799504 /* SDWebImageError.h */, - B838E8CD32B3E7AF843A57E9E5C5B435 /* SDWebImageError.m */, - 08E79F539A51EF5624368459D580FDA3 /* SDWebImageIndicator.h */, - 3934EA26369C7ED8AC99BDB4DF11A6E2 /* SDWebImageIndicator.m */, - EAB7003BBB2F9EF9DA4E095D91280CC0 /* SDWebImageManager.h */, - 850D41C7AEEAD377501D1391EFF8CD50 /* SDWebImageManager.m */, - A9A5A6309F39C14ADCA5F233F829C0AB /* SDWebImageOperation.h */, - D77A6E5E115865516443F9DA796B6091 /* SDWebImageOperation.m */, - 769581DC9784BD5739E44A9BD1FEE12D /* SDWebImageOptionsProcessor.h */, - 736BB63679A232597C9253B4A0B634D1 /* SDWebImageOptionsProcessor.m */, - 7DA0874C875EC9052754A0E09B82B4E6 /* SDWebImagePrefetcher.h */, - 52F73D847B989EAAA31283582D8074C4 /* SDWebImagePrefetcher.m */, - 57C5F40A9D38F5D71424CF3307F62112 /* SDWebImageTransition.h */, - 1C50D5AF6E97AE83A91CBEDB011B783C /* SDWebImageTransition.m */, - ADFA2645467E0829AC032303FE5EA3B0 /* SDWebImageTransitionInternal.h */, - EA7F7E45797654B45F07848151665690 /* UIButton+WebCache.h */, - FE4D3EFFD11310558DF46FD1F4BC3E8C /* UIButton+WebCache.m */, - 8F8F9A75D00E6A2AE71D19B551AD747C /* UIColor+SDHexString.h */, - 1C1449F57688BEF3B9D5DCFB485E606C /* UIColor+SDHexString.m */, - DDAEE0D2FE71C52FD936AF6D2095F23E /* UIImage+ExtendedCacheData.h */, - 16355D6BA368A1364975051A8532358E /* UIImage+ExtendedCacheData.m */, - DA1B465FAF1DF8179501C93F8925EAA1 /* UIImage+ForceDecode.h */, - 872036297568467805CDE1401346D2B1 /* UIImage+ForceDecode.m */, - EE69701659551D2EA95E581E43FAAE49 /* UIImage+GIF.h */, - 355C2A9EBE4A9B292FB4090BC017E1E8 /* UIImage+GIF.m */, - 659ABEE73565FB13D1D253ACC5C5F5EB /* UIImage+MemoryCacheCost.h */, - 2707006BD41B87DF0C15833B3D8A4253 /* UIImage+MemoryCacheCost.m */, - 0DC1922990EE3C6470B7E270DD74209C /* UIImage+Metadata.h */, - 27D9BE3D24E10967CFE1D61E94371D91 /* UIImage+Metadata.m */, - 1227C89CE60E2237AF4BD0EB74800DFD /* UIImage+MultiFormat.h */, - 3081092804875B0A054049768857C958 /* UIImage+MultiFormat.m */, - 5E9446A922C299F4C733B3E3B64FC4DF /* UIImage+Transform.h */, - 9E1546130068EEAD3189EC41869D6F14 /* UIImage+Transform.m */, - 065D063BBA4E2E76DE8E4F0FC55DEC82 /* UIImageView+HighlightedWebCache.h */, - 5EA628EB8F76497538FA2290CB38448E /* UIImageView+HighlightedWebCache.m */, - 2C37D8F8F5792C0FBB119534DD5A5838 /* UIImageView+WebCache.h */, - 05E906325386DD455125AD4ED4D148D2 /* UIImageView+WebCache.m */, - D076B59FCDF9A92CE3960EA4ADC0446E /* UIView+WebCache.h */, - 16193DA5A0D7C1CE6F0645E191E3B728 /* UIView+WebCache.m */, - EB7396B87B6C023F0EC483AD518CC57D /* UIView+WebCacheOperation.h */, - 7D3DCF34621F9247483D8AC14424E3D9 /* UIView+WebCacheOperation.m */, - 9C9DAE1505A940BA7AE87B8FD412527B /* UIView+WebCacheState.h */, - 51F6B5ECB20B05B4A5117043241B8C90 /* UIView+WebCacheState.m */, - 0C0F35F6B3D37E54F23853FDD1CA32B0 /* Resources */, - ); - name = Core; - sourceTree = ""; - }; - FE1D993C35E23F57C7F678604B14B362 /* Support Files */ = { - isa = PBXGroup; - children = ( - B6728F00D1736A5EA82B7A41A3FE632D /* URLNavigator.modulemap */, - 457470DF1C51CF053BB4ED593859965A /* URLNavigator-dummy.m */, - F956AF2B26CA388284D8AC5398D2DE02 /* URLNavigator-Info.plist */, - BCB8986ADEB13628FCBEE6A879989156 /* URLNavigator-prefix.pch */, - 193191BB278021F213BF3AEF417EBFFA /* URLNavigator-umbrella.h */, - D8D4E72FFA61743609A51FAE174F8833 /* URLNavigator.debug.xcconfig */, - 0F326E73494C37B436B25DC1DD104CFE /* URLNavigator.release.xcconfig */, + 47B192A3DA152CDAA23C460A7AE465C0 /* AMapLocation.debug.xcconfig */, + F9A39A1F349D79A7CA652C614515AFCB /* AMapLocation.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/URLNavigator"; + path = "../Target Support Files/AMapLocation"; + sourceTree = ""; + }; + FDE346877AC0D4457693B942D31074B0 /* Support Files */ = { + isa = PBXGroup; + children = ( + D1B597661EBD1744C9ED9D0DF6770F00 /* Moya.modulemap */, + 94057504769A3A6E724B5B40972FC141 /* Moya-dummy.m */, + B75E188BCF351E3AFA06D9B5C90A1DD1 /* Moya-Info.plist */, + 86D333D81D219F0C8A1F7714AD9A1C6E /* Moya-prefix.pch */, + 58E05B5C93BADAEFD58E919F0B6DB5D0 /* Moya-umbrella.h */, + F9C185543B30AD5DE41DCA09C4929D61 /* Moya.debug.xcconfig */, + 3FB7A78444CD136A1E106D7281BB2012 /* Moya.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Moya"; + sourceTree = ""; + }; + FFA90A54CF1FB8501D2D40721BC02ED1 /* Support Files */ = { + isa = PBXGroup; + children = ( + D9C6AC3FDFA670E0F4363A7F5CCA5E45 /* SwiftDate.modulemap */, + 77A1006A98BEC8471B208887084BC2DC /* SwiftDate-dummy.m */, + AC69131AF9EA014107D0800E6C683B52 /* SwiftDate-Info.plist */, + 7DDECA542B8616BF9C2AD135D1790970 /* SwiftDate-prefix.pch */, + 245230D60496C156AA01F11BF0F5812A /* SwiftDate-umbrella.h */, + A4A7F2883A127431D6E6E825F82B1CD1 /* SwiftDate.debug.xcconfig */, + 1A0AD4B77AA2B0C8F61E913F33E32B5D /* SwiftDate.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SwiftDate"; sourceTree = ""; }; /* End PBXGroup section */ @@ -9700,6 +9966,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 0A1ADBD78E3F07C5417FE41171CD8FF6 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 3812BEA7F8A1D931C4C8BA0B782A92A8 /* IQKeyboardToolbar-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0A3C36B0909C1076801B26E74787825A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -9742,6 +10016,65 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 109D8502A54BB6BDA8CDE803768984A2 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 31F42206CBE3923A5758B97AD729A7DB /* alphai_dec.h in Headers */, + 89B9718F6328E69EB494F036512691D1 /* animi.h in Headers */, + 28B54402C159A5D46AE0930CC115B860 /* backward_references_enc.h in Headers */, + 7EFB074DB7112E352E4C8F16337C65DD /* bit_reader_inl_utils.h in Headers */, + 3F2D23F9C43322FECE50FFDBAC5EBDA9 /* bit_reader_utils.h in Headers */, + 0064701BFCF9493C543F9EA81131D857 /* bit_writer_utils.h in Headers */, + E68D8B20567D40A88FD6D438E2DEC82A /* color_cache_utils.h in Headers */, + 69E18ED7FA1CFA345EF5D00B7ABA156B /* common_dec.h in Headers */, + 50D00DC42BB5C1BE2352D3464EFB94CB /* common_sse2.h in Headers */, + 33FF3CD3E08555DFBD99128351618032 /* common_sse41.h in Headers */, + F8E6EAF5CAD39A590A6080E2458B7B7B /* cost_enc.h in Headers */, + F2CAB82F6922D2E31AE4AB1EA47D78D4 /* cpu.h in Headers */, + 7752B9B3776841659476CF994354E9FE /* decode.h in Headers */, + ABA94A91427B1911BD12BF9E63471453 /* demux.h in Headers */, + 89B8FDF95E703B9B1D6D9B056906A1A2 /* dsp.h in Headers */, + D6EDEA4B0E659AFF6E7077B418A69EA3 /* encode.h in Headers */, + EA0EC730ECD108B415C89082EC38F80A /* endian_inl_utils.h in Headers */, + 7909FCB28ECBECC829CCBDDC60E65519 /* filters_utils.h in Headers */, + 36771549218157A81F13322EF18824E1 /* format_constants.h in Headers */, + DBE151E83EF0795D63B966BA72493B35 /* histogram_enc.h in Headers */, + 0760006FCC7B25877D2946A874A40FCF /* huffman_encode_utils.h in Headers */, + BA47662F9A5020F099D17EA1CADB05BE /* huffman_utils.h in Headers */, + 55699564BB44B2104A443E6D48923E90 /* libwebp-umbrella.h in Headers */, + C2D8DE91BD230A156FD26EF3E11CD2F0 /* lossless.h in Headers */, + 4BB0CA2D3BBB9A3D60EFB691B070B3D3 /* lossless_common.h in Headers */, + 5DE57E6CA0FC3C9752AA4E895D3F4B10 /* mips_macro.h in Headers */, + D912BAA92B710E431466F00CFD74B839 /* msa_macro.h in Headers */, + 5727F454DBE214ABD764FD2AC05BC7C4 /* mux.h in Headers */, + 2A3F75428348E6B2AB9828388AD4B9CD /* mux_types.h in Headers */, + 508F0749C8CE0782F435CE83E8883BD7 /* muxi.h in Headers */, + 77F24BC228EABC6538B11AC83E85336A /* neon.h in Headers */, + 646D5CDC2EB30283ACEBFC0AEDBF75CD /* palette.h in Headers */, + 19EB3D966E33BFCF2240BCB10D24A2E2 /* quant.h in Headers */, + 1B289229F7E62A4EABA042918B85CEEA /* quant_levels_dec_utils.h in Headers */, + A837370033A5D6274750FFC197CD5517 /* quant_levels_utils.h in Headers */, + FDD025445312AFB33EA31D1EADAEDBF1 /* random_utils.h in Headers */, + AF2A94909F2C7470ABB6995ACDB756F6 /* rescaler_utils.h in Headers */, + 6E67A4985A0D1F75DF8A4ADE6E9317F0 /* sharpyuv.h in Headers */, + DD19644625120193D3829CD28947BD5D /* sharpyuv_cpu.h in Headers */, + F9CD0CE99E62359BD1197482B1B252AE /* sharpyuv_csp.h in Headers */, + 79B7DBB43E06A5F65799B8AB51B39A77 /* sharpyuv_dsp.h in Headers */, + 1FFFC2B6E599D4C2125E35182E161F2B /* sharpyuv_gamma.h in Headers */, + AE98272854C73D89242B359616498EEF /* thread_utils.h in Headers */, + 14435C7937441FB8744FDD53F12A4711 /* types.h in Headers */, + 00A2D7844984BB5F3786A89A8583B088 /* utils.h in Headers */, + A29A43CF3053CFBF94A3EF7CF2324F70 /* vp8_dec.h in Headers */, + 4AEC3CC4368A996534E603361B5D7940 /* vp8i_dec.h in Headers */, + DC8A5E54801009B75FAF7209FC87940D /* vp8i_enc.h in Headers */, + 785E695163038FE0296501AE72DF1BAA /* vp8li_dec.h in Headers */, + 979EE714FBC877B08294DDDAC01C1BDE /* vp8li_enc.h in Headers */, + C0A1130442B239AC2610C6878C2C6869 /* webpi_dec.h in Headers */, + D52966A0BA4ADF8470C6E99A4A2D2D8E /* yuv.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 135061D7D4932B44CE6E9D0F9398BF47 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -9750,11 +10083,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 15904C570F65433C8D6B842579F35988 /* Headers */ = { + 13BA45E0D772BF298A07A8B164843527 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - CC70B453E389190B300C8CB7AB6A788E /* RxRelay-umbrella.h in Headers */, + A87F51B875525B9EFCF8E484CB3EEBA0 /* IQKeyboardNotification-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9782,11 +10115,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1CCF9F9F94B853C9A16E712C9D0A2436 /* Headers */ = { + 1E730CCD415F2AFF367A6A095471BEF3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 6094AAEC695E16343CEA6679DE1928E4 /* IQKeyboardReturnManager-umbrella.h in Headers */, + E5C456FCAC3DA10DC08919AAF20A3626 /* IQKeyboardReturnManager-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9823,73 +10156,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 239C68A724D71408289AB7EAF090BEAB /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 771CE2A036FA11F4B146E7CD81415142 /* alphai_dec.h in Headers */, - FAB169480639A185A5D86CA50D382BA4 /* animi.h in Headers */, - ED1AB9A592D2AE39400348BF0D201B45 /* backward_references_enc.h in Headers */, - D05D499E426C4CEEAEA63704CF36569C /* bit_reader_inl_utils.h in Headers */, - ED737F7F6498DD3542CD014AB696A02E /* bit_reader_utils.h in Headers */, - B32135C2E38D3F46CAB71F02B695E1A9 /* bit_writer_utils.h in Headers */, - 72A1A7BC05EB7651BE8BA9908DDF4554 /* color_cache_utils.h in Headers */, - A4D9CEEE49AA3EF5064EB426E05BF774 /* common_dec.h in Headers */, - CE58C177ED6AD34ADB5596F4FBBA0A0F /* common_sse2.h in Headers */, - 9CBDE95F15D7D2F7926F74170A23E8F1 /* common_sse41.h in Headers */, - 1A7B9ED5CA59C67DD04CAC926E695425 /* cost_enc.h in Headers */, - B229312BD26C96CA7BBDD079EA82CA7B /* cpu.h in Headers */, - 8BE4081312CA9A9E19E299210C143A69 /* decode.h in Headers */, - E0069EDC3753BF4A03707B9C82F5802D /* demux.h in Headers */, - 3206FC7A03AAE9D7995E1C20BAC2A741 /* dsp.h in Headers */, - 7FCED58A456951FB7579DA3DAE904546 /* encode.h in Headers */, - E97E56E8F38113E2CFB63B3A66953903 /* endian_inl_utils.h in Headers */, - 4EE26FA7C7FB130C57FF22FF1CAC2B3F /* filters_utils.h in Headers */, - DCED4E4B0F4985056B32DF79783981AF /* format_constants.h in Headers */, - 2592486071DE6F98A5C55F487F7FA386 /* histogram_enc.h in Headers */, - 1BA63FA9A4AB11699E3B8636B3F7A504 /* huffman_encode_utils.h in Headers */, - 5429EFE2AEFCBAE8C5D9FE99E813B322 /* huffman_utils.h in Headers */, - 33868191124C9202405A7A4B640C7372 /* libwebp-umbrella.h in Headers */, - 01A8F02D2B45B1A7995955F2FA96BE80 /* lossless.h in Headers */, - C2504EF0A847BB416ECE80CA2F9BC2ED /* lossless_common.h in Headers */, - DB1708B7C82FA44676C239921B21209E /* mips_macro.h in Headers */, - 6DF9A1A26E26014E7551926E7329F1F0 /* msa_macro.h in Headers */, - 5EFF6487E656A2A2D4324817F28CD5B8 /* mux.h in Headers */, - 97BD0BC7A9938C464C3D919699CAE7B0 /* mux_types.h in Headers */, - DC06A1D5ADAFEA4996B96A0FF2812066 /* muxi.h in Headers */, - 1FBB47887AF2968FBFB65187522F2BFB /* neon.h in Headers */, - DDBA4D50BFCFA2AB8F7955CE701A7867 /* palette.h in Headers */, - F08FB6404C03C32B6797A313FCFA26E8 /* quant.h in Headers */, - C84BF5FCC4846F6CA4C505BD25E266C2 /* quant_levels_dec_utils.h in Headers */, - 8B8DE512FB2E9193A16BC295E3BD17D2 /* quant_levels_utils.h in Headers */, - 02137A1D7F2DA49192522B3CF40ACB6F /* random_utils.h in Headers */, - BB38C83C7216E02ACF4EE149FD2ABC71 /* rescaler_utils.h in Headers */, - CA27CEC4815701402243AC17FF3D8209 /* sharpyuv.h in Headers */, - E22B29F35FA7B9A571C95C500C12F120 /* sharpyuv_cpu.h in Headers */, - 5547D47E48CD0F4AE65CB8DEFF8E0D53 /* sharpyuv_csp.h in Headers */, - B49B2D5BC6CD6BE522D76CC1B4B78B71 /* sharpyuv_dsp.h in Headers */, - F298ABA2514CA9C0132231985603A5D8 /* sharpyuv_gamma.h in Headers */, - 1E5AAE8872B0EA30EF8795F9ADD121CC /* thread_utils.h in Headers */, - 210F7EA56537707CB22ED35A96752D3C /* types.h in Headers */, - 01DB231356AA70412D3F0CFD9DDD5536 /* utils.h in Headers */, - 2DD1C0AC76A3D56A0B95C39413C9C5A7 /* vp8_dec.h in Headers */, - C8F8EF7F872F391808687A0875D07F23 /* vp8i_dec.h in Headers */, - 10176A35E59957F7BEF5D7CC5C75D6BF /* vp8i_enc.h in Headers */, - 283D02109109BBD9F05A22C4EBA4E3B5 /* vp8li_dec.h in Headers */, - E4D62C8F5788C16CE8FDD00107251863 /* vp8li_enc.h in Headers */, - B008E06B51A57F11E9A195A14B80F6C2 /* webpi_dec.h in Headers */, - 5357356A8E071A949B0A89105C330C2E /* yuv.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 318601919E3743ED449C246D87E001FA /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - BB06C36A7FC540F344FE52110DDB261B /* IQTextInputViewNotification-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 35BFD39CD04E54A30B68C67B27EF8984 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -9906,19 +10172,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 40E8608A45A6663CB24FD171688536F7 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 08DE41CEAAE46D4F36B5A49C0215C73F /* YYAnimatedImageView.h in Headers */, - 0D7A87A56DA3B690ECAE9690D7D86E89 /* YYFrameImage.h in Headers */, - 0B72E2D6759DA3AD821EFD74DDD47A52 /* YYImage.h in Headers */, - F8C3D698F829A6F10872C99EB6ADE46B /* YYImage-umbrella.h in Headers */, - 10ED26F8959949C6A935D09FA076BDA7 /* YYImageCoder.h in Headers */, - D5DEA67CF8E95AB0E51A175E91769482 /* YYSpriteSheetImage.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 41C2E8D70816C79059A34333A0AB78D7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -9927,6 +10180,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4267F1536A6AD942385A2C98EED8318B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 917F9BB22E1E892B4144A812C2F49096 /* IQTextView-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 4CC4A2D6B1305F5EE1DFA5830208CA72 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -9936,14 +10197,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 519FBAB53C2A084293F6820C2039993B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - D87ACEE630B7A52130B62DFFE5D00488 /* IQTextView-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5B1500FE995B9224E0AF0B42CE93C03B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -9952,87 +10205,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 62EC0EE14DF494A83101325DA76039F0 /* Headers */ = { + 79CA09845E5444D46A42008314213DA0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 7C8D5357287A3F34A0F2CD2BBFC29270 /* NSBezierPath+SDRoundedCorners.h in Headers */, - 6C56558199B60AB6A4090D2F4ACE67ED /* NSButton+WebCache.h in Headers */, - 724F464814668A050CC7066026C57B9C /* NSData+ImageContentType.h in Headers */, - B56F252576BC6F84DE40D50006FC21E6 /* NSImage+Compatibility.h in Headers */, - F7E50993F8A838F860941A1B9DA6BEC0 /* SDAnimatedImage.h in Headers */, - AAF9494BBBCBF94960369A5624E1DF5D /* SDAnimatedImagePlayer.h in Headers */, - 9CA7295DFA502275B960E09DE8FA8BA2 /* SDAnimatedImageRep.h in Headers */, - B9C4A527640636F2E81CE6B3DAA86A76 /* SDAnimatedImageView.h in Headers */, - 391B27BAE013804D48948F0985BA840F /* SDAnimatedImageView+WebCache.h in Headers */, - 426DF2A1F33269F713D3949662213765 /* SDAssociatedObject.h in Headers */, - 495788561F6ADE88310B49BDB3A049C8 /* SDAsyncBlockOperation.h in Headers */, - 4DA27FD55659157AB453E2F3CA143AE1 /* SDCallbackQueue.h in Headers */, - 938A1624E7E0AA2C636073D50916A3AE /* SDDeviceHelper.h in Headers */, - 86ADEC1D9102F901343EFCB62D423D2E /* SDDiskCache.h in Headers */, - F6A36E290DE040FDBFEC708F4C06237F /* SDDisplayLink.h in Headers */, - B1FD607CDF2E95D05BA3B880BB410E7B /* SDFileAttributeHelper.h in Headers */, - FE104235E87599AA0A971D024286E855 /* SDGraphicsImageRenderer.h in Headers */, - 89E31B923A29D5465F7BA83D2107345A /* SDImageAPNGCoder.h in Headers */, - 146980AB2006B0CD80481D0F8B4E254C /* SDImageAssetManager.h in Headers */, - 927FB34ED26E3AAC260DE630EC4B5862 /* SDImageAWebPCoder.h in Headers */, - 33D4E19DAC45622690570E3E4E106BAF /* SDImageCache.h in Headers */, - 396607D0F1FBB75736DD27CB92EB9999 /* SDImageCacheConfig.h in Headers */, - 2D62BA53B0142D84D921DB41ABDC5434 /* SDImageCacheDefine.h in Headers */, - CA31FEFC92EF7C84991037F938677068 /* SDImageCachesManager.h in Headers */, - F0957C2AA649E01C0FF1FF23272DBF2E /* SDImageCachesManagerOperation.h in Headers */, - F5194E7C5178D14021699602C11C9B16 /* SDImageCoder.h in Headers */, - 4610A18A58F46FF1F7500A6BF7741023 /* SDImageCoderHelper.h in Headers */, - 43192D92EC7DA0AEE6330B1931314D59 /* SDImageCodersManager.h in Headers */, - 24A4CC474AE353733E5372A03F61BF2B /* SDImageFrame.h in Headers */, - 33798D67D14D1204B31A48503769D2E7 /* SDImageFramePool.h in Headers */, - 3F418D0580A3DCBB2387B300F3E441C0 /* SDImageGIFCoder.h in Headers */, - A2BBF60D463B5DA1E57EB843B63DED87 /* SDImageGraphics.h in Headers */, - A20FD3BD7888CA75CCBE32C513D7E076 /* SDImageHEICCoder.h in Headers */, - 965ABCBF7A409A106D970E220F43F0D2 /* SDImageIOAnimatedCoder.h in Headers */, - E1DD651C52693F6D44F67698D02C7D82 /* SDImageIOAnimatedCoderInternal.h in Headers */, - 40AC034D9E5CD7A5BA0BFB394D59D47E /* SDImageIOCoder.h in Headers */, - 0A5209C46796D51E1A1887AD438B2B68 /* SDImageLoader.h in Headers */, - D43B99296130183FFF11E193E38C42F8 /* SDImageLoadersManager.h in Headers */, - 58D1B8BFF33B272CF5655439B621F2B1 /* SDImageTransformer.h in Headers */, - 63E0DD5A7FA5099D1811E8C9E709830C /* SDInternalMacros.h in Headers */, - 513171B8A7FF210CDAAD8F89082D354A /* SDMemoryCache.h in Headers */, - 0F00F218544256F621E912A1B2D31E14 /* SDmetamacros.h in Headers */, - 7DF4855DCBE2691D7348F8E654F5960D /* SDWeakProxy.h in Headers */, - B3B7D430ECBFB270DB1E8D1F17ABE8D2 /* SDWebImage.h in Headers */, - E1CAAC3585EB1C15CD85EC2F1491E04C /* SDWebImage-umbrella.h in Headers */, - 4518B315DD773DC7EBA8BD3EDE4E2B44 /* SDWebImageCacheKeyFilter.h in Headers */, - 414940B9A0191884E8BBCA71D0E738B0 /* SDWebImageCacheSerializer.h in Headers */, - 3CA7EFA98EF3857A8C31A29776E6C55F /* SDWebImageCompat.h in Headers */, - F57662901DFE32CF41A632EAE684DC81 /* SDWebImageDefine.h in Headers */, - CC9E38183A1E0569E132A6DA920A9E48 /* SDWebImageDownloader.h in Headers */, - C71F72A5BEA7E7E2DA06517FD28CD703 /* SDWebImageDownloaderConfig.h in Headers */, - B3AF4BD0E1246FDD4F23204C1EAAFE18 /* SDWebImageDownloaderDecryptor.h in Headers */, - 277E92350B422767A7A8C06B450D05E0 /* SDWebImageDownloaderOperation.h in Headers */, - 9B8F1984A1F831434EFB36B7BC03C431 /* SDWebImageDownloaderRequestModifier.h in Headers */, - 8F8EEB10D95D5FC6FBC08E87B2000EBB /* SDWebImageDownloaderResponseModifier.h in Headers */, - AA5BF2DFB10400AA27950626CF7948DF /* SDWebImageError.h in Headers */, - 4C1D69C1BF682CA3960720F66538C07A /* SDWebImageIndicator.h in Headers */, - 572CD95503502CDF3ED788F0B24C252E /* SDWebImageManager.h in Headers */, - 07CA17824EC0D3FEE27CD298B01DF318 /* SDWebImageOperation.h in Headers */, - 01251B0F77150F7AB43D9384DF6307B5 /* SDWebImageOptionsProcessor.h in Headers */, - 17950D311BAF4B98B5BDB1D63C25457D /* SDWebImagePrefetcher.h in Headers */, - C5320CD53E83230B2207534005DDD183 /* SDWebImageTransition.h in Headers */, - B3F47B7393090017F4BD01635B052462 /* SDWebImageTransitionInternal.h in Headers */, - B008CBC52C3135A6FCF0532177D46D43 /* UIButton+WebCache.h in Headers */, - B74FEE33ADD328185A51EE3A14BF754B /* UIColor+SDHexString.h in Headers */, - 9C4901CD6CC93184585BD5E765C9841C /* UIImage+ExtendedCacheData.h in Headers */, - ECCB9573EE1FC50A834CE1A38B186FCD /* UIImage+ForceDecode.h in Headers */, - A93F0AB3530D12C4DA9F4C4389C7F2B1 /* UIImage+GIF.h in Headers */, - 590F07818244814004FBBEAB1DD57CF4 /* UIImage+MemoryCacheCost.h in Headers */, - 29D4B4F01F898A67E67DCC582FD06AAF /* UIImage+Metadata.h in Headers */, - 2E9C5A7894CD69E92C70E00B0510C1A8 /* UIImage+MultiFormat.h in Headers */, - 08BAC516D9FC9F41B4BD38C7D32EEB00 /* UIImage+Transform.h in Headers */, - E42A5C1780E7E37B3383F387DE14C3AB /* UIImageView+HighlightedWebCache.h in Headers */, - 5D616EA4592D70E951F33BDA4A7C8DA3 /* UIImageView+WebCache.h in Headers */, - 9468675C9202DD78D32E8C7888DBC731 /* UIView+WebCache.h in Headers */, - 478BCD3392E5988621AE61164403A89F /* UIView+WebCacheOperation.h in Headers */, - 13FA81FF80477E468F9F24ED719D367D /* UIView+WebCacheState.h in Headers */, + F1ED7598E0D75E704B52BFCF77193A27 /* MGCDAsyncSocket.h in Headers */, + 1C3F07299171B82493D3696239A11BAF /* MGCDAsyncUdpSocket.h in Headers */, + 2F44F439C70D865DE857F8A71E11D548 /* MqttCocoaAsyncSocket-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10126,6 +10305,98 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 8C8791591AC8DF09F458119E235D92DB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 4F03E118D2391DA8DF72DF10152F07C8 /* IQKeyboardToolbarManager-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 90E88CBAC178FB7B4C880A2ABF406C5C /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0069ED224FBE6CB9E7C00EFE24D18CE8 /* NSBezierPath+SDRoundedCorners.h in Headers */, + B876DC1AD722CC2597B54B608293FA84 /* NSButton+WebCache.h in Headers */, + 6F0838C80554CA46CEEC7CFFBA26B9E7 /* NSData+ImageContentType.h in Headers */, + 1AB69E4AB50F68DA1FC1473E49F2A502 /* NSImage+Compatibility.h in Headers */, + 018484B9FC55FBB212B6A2A24558C516 /* SDAnimatedImage.h in Headers */, + 02B594763EB091EDFBEBB557DC9389E2 /* SDAnimatedImagePlayer.h in Headers */, + 114C81D88949616817C9CC12A151EAE6 /* SDAnimatedImageRep.h in Headers */, + 19D1AC27CED63C2BF64F14D47BA96A17 /* SDAnimatedImageView.h in Headers */, + 7053223F22305B4166BD83EFC451E575 /* SDAnimatedImageView+WebCache.h in Headers */, + 278E08ECD06CE42D68C327B7ED07B31E /* SDAssociatedObject.h in Headers */, + 4E11FC5197231B7FC95109CBEFB6615B /* SDAsyncBlockOperation.h in Headers */, + DED29495981A4879132B212D29F011E0 /* SDCallbackQueue.h in Headers */, + 5259F923E04070DB3B5FD9F1A98B62FB /* SDDeviceHelper.h in Headers */, + 205C83B3629F462C40CBBFC1E1FCBC3C /* SDDiskCache.h in Headers */, + 77B41C6CFE0B92758119A593633C0233 /* SDDisplayLink.h in Headers */, + 635C4536301F19B49DF66A23969A9D15 /* SDFileAttributeHelper.h in Headers */, + 88E0FD7941654F2DC21D27A34DD3CD56 /* SDGraphicsImageRenderer.h in Headers */, + 3A3F68777F9F40041E582D489B12AA57 /* SDImageAPNGCoder.h in Headers */, + 9644417C8C310B2FC3EBDB998596F3C8 /* SDImageAssetManager.h in Headers */, + F71350F6F7159EB8B0DF0ECD7F059A05 /* SDImageAWebPCoder.h in Headers */, + 846291975C27066CBC64574C9A91ECFA /* SDImageCache.h in Headers */, + 9FDC5D39EE8B3B84BDE0191BDE69A4AB /* SDImageCacheConfig.h in Headers */, + C29048D82709E1E770DFE0EDE18A350D /* SDImageCacheDefine.h in Headers */, + D99628FF1D127B3AAE385EDC25AA3BD7 /* SDImageCachesManager.h in Headers */, + 5F81D7B4079A62D601FB3264F3E526C0 /* SDImageCachesManagerOperation.h in Headers */, + 0698F5A9D63CA4D0197FA0E1AC614229 /* SDImageCoder.h in Headers */, + 174C03CECE0755237E65408465CACD10 /* SDImageCoderHelper.h in Headers */, + CA6BEF6E85FEBDD24B3845FF2252DDB7 /* SDImageCodersManager.h in Headers */, + 865C9E00F47572630D3FA6ECC1AFE3D9 /* SDImageFrame.h in Headers */, + C6CEDE25513EE580A409D2FE1EBB14BD /* SDImageFramePool.h in Headers */, + 40CA3D5F4E23459A974B7C886260F70D /* SDImageGIFCoder.h in Headers */, + 43A8337B50D483F93A22E1941C18671E /* SDImageGraphics.h in Headers */, + B147ECB892B7C79FE4B1B46436E885B8 /* SDImageHEICCoder.h in Headers */, + 9C80A0175BF8E8B561F88F78FD8027C1 /* SDImageIOAnimatedCoder.h in Headers */, + A243EC482D57F45F646DD0769BA8D5AA /* SDImageIOAnimatedCoderInternal.h in Headers */, + B25C6013B93EF08F819A23AAB22285D5 /* SDImageIOCoder.h in Headers */, + B86CE44BAAF1C2379BE06AE0C9C3835A /* SDImageLoader.h in Headers */, + EAF7893AAEF99828D21EAC0593AC879B /* SDImageLoadersManager.h in Headers */, + DC2A18D6757FC43108332EBAF1A08533 /* SDImageTransformer.h in Headers */, + 81FC65E558B3CF7EFD2635E9B2D38478 /* SDInternalMacros.h in Headers */, + A013D216E8894F541CF684EF88305EB3 /* SDMemoryCache.h in Headers */, + 4FBF89FE470E2F4A0E7E8546A469967A /* SDmetamacros.h in Headers */, + 2DB9E576AE22E204A74411EF598FD0D8 /* SDWeakProxy.h in Headers */, + 32EBC704E71F378249AD902DDA6B9925 /* SDWebImage.h in Headers */, + 522BAB997E48EA6A808C89BA298FE55B /* SDWebImage-umbrella.h in Headers */, + D96E2F7DFB6141B690667AFEC61FA224 /* SDWebImageCacheKeyFilter.h in Headers */, + 5F73B8422D7F873146B63613F05D2059 /* SDWebImageCacheSerializer.h in Headers */, + 9D0684B3B738D7D21EAA1387D127C782 /* SDWebImageCompat.h in Headers */, + 6EEC267E5A4D42DC73361B1417C34E2A /* SDWebImageDefine.h in Headers */, + 533A88E45962B5D9C58C2C8CDF68B408 /* SDWebImageDownloader.h in Headers */, + FA00D4B3C909624A6332E038A6DB41FF /* SDWebImageDownloaderConfig.h in Headers */, + 48A5FF7B0107E13FDFA349294CE41359 /* SDWebImageDownloaderDecryptor.h in Headers */, + 94A1B8EAF5E302028F0E33406D1C2D2B /* SDWebImageDownloaderOperation.h in Headers */, + 14FD166E09E03302D347CD373DB56DB1 /* SDWebImageDownloaderRequestModifier.h in Headers */, + 3AF22D14F94A221F4364191126E08D30 /* SDWebImageDownloaderResponseModifier.h in Headers */, + E6F716B03ECC7EF34A1D0584DCDC6C0A /* SDWebImageError.h in Headers */, + 75166BBBCEB03EF71AF8D26E2B4DF828 /* SDWebImageIndicator.h in Headers */, + B09CA827B18A5EC0404B38B1F5351AAC /* SDWebImageManager.h in Headers */, + 51AD982F51665703357600F04DCD328F /* SDWebImageOperation.h in Headers */, + 490AEEAF2B7281C716A29CF7BEFD6E33 /* SDWebImageOptionsProcessor.h in Headers */, + F02729146154EF6B9187305230290CD4 /* SDWebImagePrefetcher.h in Headers */, + 5F6AAEF831D378F4E6A3FF51825ED87A /* SDWebImageTransition.h in Headers */, + ED3C727C9AAF04C05ADFF6ABAEFFEA8D /* SDWebImageTransitionInternal.h in Headers */, + 4569889593FF212F0BC397FE2ABC5312 /* UIButton+WebCache.h in Headers */, + A0534AEA682DDCE2360B05C9EF82C8FE /* UIColor+SDHexString.h in Headers */, + B3DE6FE1EC85A2D9631122D41AE6AB35 /* UIImage+ExtendedCacheData.h in Headers */, + 3EC79AF239C06987A9C62AA7FEC1B96F /* UIImage+ForceDecode.h in Headers */, + 12BFAC7BBCEADD5934026623E8FB8B59 /* UIImage+GIF.h in Headers */, + C1300DFF8872E46FD85689A4D06A5C2E /* UIImage+MemoryCacheCost.h in Headers */, + 4ECDB9E3C46C6B4233DA2AC4DA514932 /* UIImage+Metadata.h in Headers */, + 491D049834F6F84A3D0785A682FCAE39 /* UIImage+MultiFormat.h in Headers */, + 533C838059890F6AFF29075B9A7D4C6D /* UIImage+Transform.h in Headers */, + EDBFC4DEE1C21470926DF2EF13131904 /* UIImageView+HighlightedWebCache.h in Headers */, + 5C44470EF1044429D6457EFEC81C018A /* UIImageView+WebCache.h in Headers */, + 5B41F4CE095824F7FBA30F59241A020B /* UIView+WebCache.h in Headers */, + F1C6A9649B5FDCB480FD7D7774FFF8B3 /* UIView+WebCacheOperation.h in Headers */, + 7D9A3C79C7741EAB604C5BBA70BA72C0 /* UIView+WebCacheState.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9A8871E23F769D3719C8AE9D1B2A65C2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -10134,6 +10405,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9B7B8664B89664F1C8286E05338A5CA3 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A983DF87C622A2FBC2DC71F27911092C /* Pods-QuickLocation-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A6393C4D6FFDDD38F34CED09FCFA2220 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -10150,6 +10429,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + AB88581FF933CF69BBB0E15137F88F7A /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F5EF1E2426930587F2F1AD8D2B7B1A25 /* RxSwift-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; ABB9DBEF89E605AB2428F8DE8382506F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -10187,6 +10474,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B140A8F9807A2A947D7A2DFD0D48ED8E /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BBF958606E2F274F7FEF9F54B7A8308B /* YYAnimatedImageView.h in Headers */, + 12FEC145834F9E1CAEF646C4BCBCC378 /* YYFrameImage.h in Headers */, + 300B7BFD749B06AE3B711426442E41A3 /* YYImage.h in Headers */, + C81A012F3A85BC343EC5C412F8D68834 /* YYImage-umbrella.h in Headers */, + E90C1EC062107478A1ED904273F0D170 /* YYImageCoder.h in Headers */, + CC38F0303BE0BFBF1E573561D01FB082 /* YYSpriteSheetImage.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B5EAA3937121469A8724C96FCC88A075 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 6C9E4124129EBA01A46BC58D63017EC3 /* CocoaMQTT-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; B9D06F7443086FD18D2F6596BEFA3BD5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -10213,6 +10521,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + CE14A1B2AC014777D86ABF76B78591C7 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8DB634AD509A72F1980DCB26BABB92DB /* RxRelay-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; CE8A0429AC94A4510B7341047DE45093 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -10289,43 +10605,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D893447AB16953A17BD0C74F8F5D8E05 /* Headers */ = { + E9C253F48E424996C0098227A7DDB0A3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 869413419A22C3834700E726484CAFDB /* IQKeyboardToolbarManager-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E554F405EEF5E215C189FCD81FD1336F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F1AD95BA0DBDE87A562B836694A21410 /* IQKeyboardToolbar-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F3A536E36F6FF7344A815F868C2E74FF /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 99EF2A49CBC5CB056F28CB5BE9635468 /* RxSwift-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FB7CD51FACD057EFC34D2053A49C2843 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 7B20820FD55F1B574D96C1631ABE247C /* IQKeyboardNotification-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FC8E41F3FDA4136BA6EC764F4D6CA06A /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - B42C81138A67C0F5F5319692819E0F00 /* Pods-QuickLocation-umbrella.h in Headers */, + 2ACBCEA4A2C9BF7E1DE378F47A085951 /* IQTextInputViewNotification-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10344,8 +10628,8 @@ buildRules = ( ); dependencies = ( - 24F5C489A5CAB8B16DED42BA2A359BCD /* PBXTargetDependency */, - 1F6B9529EA8851EFFFDF3AE7A59897C1 /* PBXTargetDependency */, + 97F5677077D12F150E9E2A81F9C5C267 /* PBXTargetDependency */, + C9790921DBE75E75BD1923A5433D496E /* PBXTargetDependency */, ); name = OpenIMSDK; productName = OpenIMSDK; @@ -10354,19 +10638,19 @@ }; 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */ = { isa = PBXNativeTarget; - buildConfigurationList = AB54FD55C44E74B81F98130A2F89111B /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */; + buildConfigurationList = 9FC117AC9D899E1F16FF60429B123876 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */; buildPhases = ( - D893447AB16953A17BD0C74F8F5D8E05 /* Headers */, - EAE616CE827CD647AF659A0331E9E818 /* Sources */, - 14B3CCFC54C48FF903C4430B0CB61D11 /* Frameworks */, - 6821795096DB743034896811810EF1F9 /* Resources */, + 8C8791591AC8DF09F458119E235D92DB /* Headers */, + 13FA7BFD74C2C193D076A6264259CE14 /* Sources */, + 482C5B1970165B23261707783962CC96 /* Frameworks */, + 37E2E612BC8369F3D0A183A3A7CB91F7 /* Resources */, ); buildRules = ( ); dependencies = ( - 589545B23EBD0FAC78937DBAE7B1A19A /* PBXTargetDependency */, - E31B8ADFB939C29A420C91B025937B5A /* PBXTargetDependency */, - FF0B57E9EB26306BBB98E52B91423F15 /* PBXTargetDependency */, + DAAD65E821D02F91D43F7A3A62CBBDA8 /* PBXTargetDependency */, + 22FD2D9961CFCF2D03384022B321BE58 /* PBXTargetDependency */, + D759FA7EE75F394744201482262719BF /* PBXTargetDependency */, ); name = IQKeyboardToolbarManager; productName = IQKeyboardToolbarManager; @@ -10375,18 +10659,18 @@ }; 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */ = { isa = PBXNativeTarget; - buildConfigurationList = 27E6C1DA6E893A20C30FD7A93AFC374B /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */; + buildConfigurationList = 74CA0743989155B4C5D31007514878C4 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */; buildPhases = ( - 1CCF9F9F94B853C9A16E712C9D0A2436 /* Headers */, - 77B92F3E962AB128EA18C60F9CB941BA /* Sources */, - 2B6239E683B57810A0877D78BE796C47 /* Frameworks */, - D5609EC3502F839C77C6DC1D58408E17 /* Resources */, + 1E730CCD415F2AFF367A6A095471BEF3 /* Headers */, + 4C6D39C725B13E768A35C11599741CC9 /* Sources */, + 1E2B6A394F883A79D7671E5A135C602E /* Frameworks */, + 048341746DD7E8EE813D71F10918B271 /* Resources */, ); buildRules = ( ); dependencies = ( - 8C9B20CA05D6610DBC8634EA66CA201D /* PBXTargetDependency */, - E3BA0C8E703DE59FB19C26D247A970A0 /* PBXTargetDependency */, + D5651A70BE15EFB4982444B5B2512219 /* PBXTargetDependency */, + 06B6359C2148234D64D3CF1461F00BDA /* PBXTargetDependency */, ); name = IQKeyboardReturnManager; productName = IQKeyboardReturnManager; @@ -10405,7 +10689,7 @@ buildRules = ( ); dependencies = ( - 1E34ADB9A2FEDE5D364BB05A2BB68BFB /* PBXTargetDependency */, + 6D9C59384F3559350AFE1FDB2CA37BE0 /* PBXTargetDependency */, ); name = "lottie-ios"; productName = Lottie; @@ -10424,8 +10708,8 @@ buildRules = ( ); dependencies = ( - AEF4127D51E2B1A6B9A82E278A399887 /* PBXTargetDependency */, - BF6E306977B6E64CFC3ADC3266986004 /* PBXTargetDependency */, + 5321810D064BBAE1E9CDBF73A2AAE428 /* PBXTargetDependency */, + 2C4C823F501A47C36E0AABE5C9C2EFE6 /* PBXTargetDependency */, ); name = KingfisherWebP; productName = KingfisherWebP; @@ -10434,11 +10718,11 @@ }; 11779BD43CF8155A53E2C00B1566A19F /* RxSwift-RxSwift_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 355641FA650FE0A47CAFAEF548CE37D0 /* Build configuration list for PBXNativeTarget "RxSwift-RxSwift_Privacy" */; + buildConfigurationList = 7163CE213F73888D42781422F65C7896 /* Build configuration list for PBXNativeTarget "RxSwift-RxSwift_Privacy" */; buildPhases = ( - FF8726859A2FDCDAA260B4B9716AE1A2 /* Sources */, - 30CBDF3C2C6AD00BB734B3714F0F8794 /* Frameworks */, - 25617855BF8FBC9CC08A0545E3DF12ED /* Resources */, + F71B644154811CF94B90B2EF77E8653B /* Sources */, + EA57FD53CD6CF350CFD35FC143E54D17 /* Frameworks */, + CAAB5769287A1527C19DBC52617AB995 /* Resources */, ); buildRules = ( ); @@ -10451,18 +10735,18 @@ }; 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */ = { isa = PBXNativeTarget; - buildConfigurationList = D19A882E9703087238F6DCEADF438F1A /* Build configuration list for PBXNativeTarget "IQTextView" */; + buildConfigurationList = 4F5BECF0073A6C526CA38FBEEAE65366 /* Build configuration list for PBXNativeTarget "IQTextView" */; buildPhases = ( - 519FBAB53C2A084293F6820C2039993B /* Headers */, - C27D4907B15A73D8EA10928092B172A8 /* Sources */, - AFD31CE975B174D16F411C4BAF7804F7 /* Frameworks */, - 2EA41950ED522603811A5832D4613E29 /* Resources */, + 4267F1536A6AD942385A2C98EED8318B /* Headers */, + C858D393F19697D85A403464DDAF1E07 /* Sources */, + 5AD337ADA1AEF4CA3BF4F85311013FD8 /* Frameworks */, + E0124A1E59B0E67FB5A1D2F394D1A689 /* Resources */, ); buildRules = ( ); dependencies = ( - F9E3CB353BAFA9E9E26238DB24750CB9 /* PBXTargetDependency */, - F3FD20E5A63C1BFA024C5E8E681CD267 /* PBXTargetDependency */, + ABACB0A175D8B505AFEA6FAA85221E85 /* PBXTargetDependency */, + 9A16765A9DC1FB99C242C68E7264FACC /* PBXTargetDependency */, ); name = IQTextView; productName = IQTextView; @@ -10481,7 +10765,7 @@ buildRules = ( ); dependencies = ( - 93ABE1C778AFF8E2A9551EF47F2263AD /* PBXTargetDependency */, + 731036B6B7F1CCD04A28C88363BE792B /* PBXTargetDependency */, ); name = ObjectMapper; productName = ObjectMapper; @@ -10500,7 +10784,7 @@ buildRules = ( ); dependencies = ( - CA923E8E6E0A16A454FA2C47B6696544 /* PBXTargetDependency */, + 23950B2FE9701D22FAB1B2F3CEAD4003 /* PBXTargetDependency */, ); name = Moya; productName = Moya; @@ -10519,7 +10803,7 @@ buildRules = ( ); dependencies = ( - 16E79159685C75B532CEF6D862DAABC8 /* PBXTargetDependency */, + 21281E0511BBBAA3B120421BDA31D470 /* PBXTargetDependency */, ); name = SnapKit; productName = SnapKit; @@ -10564,11 +10848,11 @@ }; 276021C4482165D46E0CBBEFB822FE95 /* CocoaLumberjack-CocoaLumberjackPrivacy */ = { isa = PBXNativeTarget; - buildConfigurationList = F34FCEDC1D5872EBC62EDD44DA6477B3 /* Build configuration list for PBXNativeTarget "CocoaLumberjack-CocoaLumberjackPrivacy" */; + buildConfigurationList = 6A29205CCB770D69C4CE94DAE16F442F /* Build configuration list for PBXNativeTarget "CocoaLumberjack-CocoaLumberjackPrivacy" */; buildPhases = ( - 39C0DE2BF57DC4E328FDDA370CDB05D2 /* Sources */, - E3B5144A411ABAD0C7783D05BEEE9BFC /* Frameworks */, - 5B0176AE1F954EC48322EC9860C4E2AE /* Resources */, + 71692A15AD05B88CD11C28F6DA73CF9B /* Sources */, + 5B6537CFC952FC20C4EEDE8D0C5409FC /* Frameworks */, + E242152B887656FEB7CE67250DBBDD53 /* Resources */, ); buildRules = ( ); @@ -10581,18 +10865,18 @@ }; 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */ = { isa = PBXNativeTarget; - buildConfigurationList = 39B74D0BE7AD9880E60F5DFCD0523612 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */; + buildConfigurationList = 36A794AD3BEBCCD2C0BE75DC3D13CEC0 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */; buildPhases = ( - 318601919E3743ED449C246D87E001FA /* Headers */, - 4F27EA5776A48D0363ACB688FFD4C68A /* Sources */, - 4B344E39C34BAC4E674B21008D14E588 /* Frameworks */, - 73A3F3E0D6A61129CCD3FAFB550211EA /* Resources */, + E9C253F48E424996C0098227A7DDB0A3 /* Headers */, + 4913C2F4121E1C16187D360E215881B2 /* Sources */, + 5AA94748A595AC7488968B9CBB02CD39 /* Frameworks */, + 97F1C6B10A94C792FC583039581CFEFB /* Resources */, ); buildRules = ( ); dependencies = ( - 2E4D8563217D17E396DC1DC6DD804833 /* PBXTargetDependency */, - 2B851C01CA72080372960C311BC1C3A1 /* PBXTargetDependency */, + 9AB57BB286C6B3B66A9922B2D4690340 /* PBXTargetDependency */, + 8874094E975774071CC66CE460F5C6FE /* PBXTargetDependency */, ); name = IQTextInputViewNotification; productName = IQTextInputViewNotification; @@ -10601,11 +10885,11 @@ }; 2B8FF445A5162845FAB9EC00FC92B694 /* IQKeyboardNotification-IQKeyboardNotification */ = { isa = PBXNativeTarget; - buildConfigurationList = 6A6EAE788828FAC84CA851AF9513C395 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */; + buildConfigurationList = EE84F2E720E0F4CCA0AA5D9753F54CF1 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */; buildPhases = ( - 0D1CF396363093333F5FEE0FC1D941D6 /* Sources */, - E6292162CEFD75B0B4A16072BC9C5ED4 /* Frameworks */, - 23C2EC80D38A7F93DDB7710AC2ECB3A0 /* Resources */, + A8D891EB4676BA49A7DE130898522C2D /* Sources */, + EB3A6F364D9092D07EE373210EB67CEA /* Frameworks */, + E8EE26654911879E9E0B76323B6AD16F /* Resources */, ); buildRules = ( ); @@ -10618,17 +10902,17 @@ }; 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = D25D1A86881D18DF2B01C871873DA4FD /* Build configuration list for PBXNativeTarget "SDWebImage" */; + buildConfigurationList = B25EFB22FA9E922D7EFE7E9BF5C8EB0E /* Build configuration list for PBXNativeTarget "SDWebImage" */; buildPhases = ( - 62EC0EE14DF494A83101325DA76039F0 /* Headers */, - C543215097EDF2FAA2CFBEC2ED4FF0A4 /* Sources */, - ADDFCDC2EA09AB785B0D83C34C20DE39 /* Frameworks */, - 33D6AC982E0314666BFDEAFAE9C482E6 /* Resources */, + 90E88CBAC178FB7B4C880A2ABF406C5C /* Headers */, + D567B5EB900BCD8C3D681FD57ED56BE9 /* Sources */, + 09DC200874950881346CB5CF3030DCDE /* Frameworks */, + 7944F12A776C87062880289B4AEF0345 /* Resources */, ); buildRules = ( ); dependencies = ( - 57D0AB67F94696CE24C38704A19E8ACE /* PBXTargetDependency */, + 9C5610B5C59B89EEAA95B61A07D4619C /* PBXTargetDependency */, ); name = SDWebImage; productName = SDWebImage; @@ -10637,11 +10921,11 @@ }; 39101A2B1096DFB129FCDE5490875054 /* RxRelay-RxRelay_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = D2D7ECC79626771DD3DBA21E3D2A1666 /* Build configuration list for PBXNativeTarget "RxRelay-RxRelay_Privacy" */; + buildConfigurationList = 86DB1A97ED27CD00080CD6C1BF42DBFA /* Build configuration list for PBXNativeTarget "RxRelay-RxRelay_Privacy" */; buildPhases = ( - 413BD44DB0856D8E0358F350768D70B5 /* Sources */, - 3A85F096B63B0C12EE15D40EDFCE39F7 /* Frameworks */, - C9D2BA17597BD9D10A8BACD6D530524E /* Resources */, + E873BFFDF3BD266B69A127FD928FE93D /* Sources */, + 2DA6307D2FA15E8E4881319ADDCC6DE0 /* Frameworks */, + E571BE96E47797830317E0AB23389499 /* Resources */, ); buildRules = ( ); @@ -10654,11 +10938,11 @@ }; 3AE57FC4CF27B0BC540B3112353377BF /* MBProgressHUD-MBProgressHUD */ = { isa = PBXNativeTarget; - buildConfigurationList = 5E922FEE2AD37BFC983DCA4DA7B6181F /* Build configuration list for PBXNativeTarget "MBProgressHUD-MBProgressHUD" */; + buildConfigurationList = 757798FC7D05DC5B159999BF40BD2456 /* Build configuration list for PBXNativeTarget "MBProgressHUD-MBProgressHUD" */; buildPhases = ( - AAF72206400F9816CEECD411989FA0FF /* Sources */, - 7019CB1612D089CFE4E3335DDD7699EA /* Frameworks */, - F82883CC8E1C24098B8B224C4243A017 /* Resources */, + 894E07E0B8F5D85643A8FC94E64FE049 /* Sources */, + E33664E8D18621F813D4AEBF9D1CA702 /* Frameworks */, + 034D494659D3083A2B910182B7C4CC5A /* Resources */, ); buildRules = ( ); @@ -10699,9 +10983,9 @@ buildRules = ( ); dependencies = ( - 4563B0373B6E25797E0E63BA07DB9A12 /* PBXTargetDependency */, - 3A9372AAC6B93BA7412E41FFFFBC65D1 /* PBXTargetDependency */, - 809C6BB1B364064A1EB1A7BC9739B2D1 /* PBXTargetDependency */, + 9FA9141BF656042985FBEE89022581C7 /* PBXTargetDependency */, + B12B4CF458578356E489F06F6219F4B5 /* PBXTargetDependency */, + 9CFE6EF2F769A079911AA46CAD3E782D /* PBXTargetDependency */, ); name = RxDataSources; productName = RxDataSources; @@ -10710,11 +10994,11 @@ }; 4502C7427440BEB17A50C0BF6E638A85 /* IQTextInputViewNotification-IQTextInputViewNotification */ = { isa = PBXNativeTarget; - buildConfigurationList = 1F1CC3D499493FAF0DD04E927FB9C62C /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */; + buildConfigurationList = 2CFDEC658879BF3F8755C0D94533DD07 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */; buildPhases = ( - 347E0C664DDF370093C3E30925757EC8 /* Sources */, - 2DBE7820B8A8EC06685821AFE0665F89 /* Frameworks */, - D4DE6C908D537B3C4D297D6CFEC155C6 /* Resources */, + 46B69E7E6B89A55EF747BFA0FC4F54E9 /* Sources */, + 40D2C207639D2CA6A4F3F69BD60D6C88 /* Frameworks */, + BC38D500BCF8EA94CB65449B2D776BD7 /* Resources */, ); buildRules = ( ); @@ -10727,18 +11011,18 @@ }; 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */ = { isa = PBXNativeTarget; - buildConfigurationList = 983007A441D8557EA03BD116DF150079 /* Build configuration list for PBXNativeTarget "RxRelay" */; + buildConfigurationList = B810A89EE45327E8558B0455BE1BFE6F /* Build configuration list for PBXNativeTarget "RxRelay" */; buildPhases = ( - 15904C570F65433C8D6B842579F35988 /* Headers */, - 5D7BB7090ECA84FF50BF60E73FC9B09F /* Sources */, - 5E44D54AD5CEEC2711966638831C7F79 /* Frameworks */, - 8BA0C2630E6B153BC254A807D0295A6A /* Resources */, + CE14A1B2AC014777D86ABF76B78591C7 /* Headers */, + 01C24295C8287BE4F6E5F15479124477 /* Sources */, + BDAA83BE9DECB0452B6AB5A57C3A2237 /* Frameworks */, + 7E1420486D12C8D91F9F9E74C8E88A39 /* Resources */, ); buildRules = ( ); dependencies = ( - 0A270D927D85F31292A0BA59517E8649 /* PBXTargetDependency */, - 5422A638FC545C95EBA20704B1FCD8E4 /* PBXTargetDependency */, + 7733274C6E0C595785A2E7696BD16672 /* PBXTargetDependency */, + 623EADCF50D7FB34CDAA0B88F5DFBF97 /* PBXTargetDependency */, ); name = RxRelay; productName = RxRelay; @@ -10747,12 +11031,12 @@ }; 47D2E85A78C25869BB13521D8561A638 /* libwebp */ = { isa = PBXNativeTarget; - buildConfigurationList = 6C8AAC430878C55132CE101BE3947ECE /* Build configuration list for PBXNativeTarget "libwebp" */; + buildConfigurationList = 6EE0C580D4B4F5DF5D297308DC4983AF /* Build configuration list for PBXNativeTarget "libwebp" */; buildPhases = ( - 239C68A724D71408289AB7EAF090BEAB /* Headers */, - C672A28881304CE3555816F1C4553B1E /* Sources */, - 27D85D2DE824EC39A220D5DF3A1B3700 /* Frameworks */, - A23213350E6A48CA2BF78B674AD6BF82 /* Resources */, + 109D8502A54BB6BDA8CDE803768984A2 /* Headers */, + D2DA36F1282A4EEF40487329493B3581 /* Sources */, + 2FD6D6D3C27D1F0E3E43C4A839524669 /* Frameworks */, + 6EAEA7B9CC2849523DAB27705D5AA08D /* Resources */, ); buildRules = ( ); @@ -10775,13 +11059,32 @@ buildRules = ( ); dependencies = ( - FD2A66E21108EDDB256389A4711EB95B /* PBXTargetDependency */, + 55DF357831ED9BC1DB0033056C869B0F /* PBXTargetDependency */, ); name = MJExtension; productName = MJExtension; productReference = 2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension */; productType = "com.apple.product-type.framework"; }; + 4EB168A830EFA6136FA93357D1F1511A /* CocoaMQTT */ = { + isa = PBXNativeTarget; + buildConfigurationList = 701421AC78CFCB06DED14D7A82780FB3 /* Build configuration list for PBXNativeTarget "CocoaMQTT" */; + buildPhases = ( + B5EAA3937121469A8724C96FCC88A075 /* Headers */, + BB2714530DE387EE457ABD49CD4A5789 /* Sources */, + 277FF12C2651061512FB3A26F0AD2308 /* Frameworks */, + A4A6D9B820D143969128BE3EA029773A /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + CAFDA423A8120F3A8DD11D314C11111B /* PBXTargetDependency */, + ); + name = CocoaMQTT; + productName = CocoaMQTT; + productReference = E6A4E1627379D6540B81A470C575D716 /* CocoaMQTT */; + productType = "com.apple.product-type.framework"; + }; 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */ = { isa = PBXNativeTarget; buildConfigurationList = AAA1F8799DB68036C3BE983C05FAA2C7 /* Build configuration list for PBXNativeTarget "Masonry" */; @@ -10802,11 +11105,11 @@ }; 5C92E047D2B317BFB31393F449A9EA0D /* RxCocoa-RxCocoa_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 8D4601F2FE970FD358D36EAA7D359464 /* Build configuration list for PBXNativeTarget "RxCocoa-RxCocoa_Privacy" */; + buildConfigurationList = 74E7BB30B8789F5471E13D1D9C21C66C /* Build configuration list for PBXNativeTarget "RxCocoa-RxCocoa_Privacy" */; buildPhases = ( - 11A34DDE224D2836079EABADCD8A8E04 /* Sources */, - 9825A28BFE907B062A94929F53216E87 /* Frameworks */, - A8CC6628C022C383E8605C29ED144DB1 /* Resources */, + EB1788181A2BB691931C15EE395D5DAD /* Sources */, + 4C91894590E9C4C8EFBADF42B0003F66 /* Frameworks */, + ABF2CC011CB4DC1485360C5CA8B27157 /* Resources */, ); buildRules = ( ); @@ -10837,11 +11140,11 @@ }; 677650A76A720691B88A6959EFED6418 /* SwiftyJSON-SwiftyJSON */ = { isa = PBXNativeTarget; - buildConfigurationList = 7D3E39350E8F78F3C28A7E4F78B6E0B8 /* Build configuration list for PBXNativeTarget "SwiftyJSON-SwiftyJSON" */; + buildConfigurationList = 3CA9216911EF16B6BFFD055F1953965D /* Build configuration list for PBXNativeTarget "SwiftyJSON-SwiftyJSON" */; buildPhases = ( - 25FB831060853C6D988172BD51F4B7DD /* Sources */, - CA9CE68CE719691AA3A4ADACC21F0AF9 /* Frameworks */, - DB978B93646DEAB6DFF5ADC3AF6CB41B /* Resources */, + 3E86D5855CF181CDB972E342F4E02FFE /* Sources */, + 2C20BFE194DD149BC347E329960B93DA /* Frameworks */, + 1FA8FA7F15BCC1A3F21958216CFFA096 /* Resources */, ); buildRules = ( ); @@ -10864,7 +11167,7 @@ buildRules = ( ); dependencies = ( - 7223D67E1534958016F47E100734166E /* PBXTargetDependency */, + 4CAC7E59316C2FDE7A939824D0EDD010 /* PBXTargetDependency */, ); name = MJRefresh; productName = MJRefresh; @@ -10901,9 +11204,9 @@ buildRules = ( ); dependencies = ( - 4DF6DC90A69ABF06C5FE87ADFB9F481D /* PBXTargetDependency */, - EB3A666E9AC00B8B6AE940FA6874A778 /* PBXTargetDependency */, - E641EE970C8C6EC0575D11D9128B2887 /* PBXTargetDependency */, + 00A1072D085D33FF9E229983C05DBFD6 /* PBXTargetDependency */, + C23A0C6F18CC3C8FB09F11EB7C356E83 /* PBXTargetDependency */, + 2442F750D27033389D5ADDB48BD56A14 /* PBXTargetDependency */, ); name = RxCocoa; productName = RxCocoa; @@ -10912,68 +11215,70 @@ }; 7B2FF6E8662313DAC1DB23D6B750D43C /* Pods-QuickLocation */ = { isa = PBXNativeTarget; - buildConfigurationList = EA941C1047FD4F475EBCF2297A47EEF3 /* Build configuration list for PBXNativeTarget "Pods-QuickLocation" */; + buildConfigurationList = 6E3711E75C912F7271040F0F928F9A89 /* Build configuration list for PBXNativeTarget "Pods-QuickLocation" */; buildPhases = ( - FC8E41F3FDA4136BA6EC764F4D6CA06A /* Headers */, - 5617F9353C3A30E22C044791BBAADAB3 /* Sources */, - 16AB0459A23AC69B658C7E57E2D4A6F2 /* Frameworks */, - E9E84DCA31807AF25979678C55CAA0C0 /* Resources */, + 9B7B8664B89664F1C8286E05338A5CA3 /* Headers */, + BC407DD2244E3D84B04992F1E0D8BB1B /* Sources */, + 2C871119D45F7AA4DA2DF9BF90E0CB7D /* Frameworks */, + AE203C28EFDBF9F11219F7DE18744178 /* Resources */, ); buildRules = ( ); dependencies = ( - A7251C0B1CD15B90F362B6371D9ABEB2 /* PBXTargetDependency */, - 5F38C0ED219C3396D3234A7027D1D999 /* PBXTargetDependency */, - FC8EF6355BA5F6C6FD2BD0348C24DE14 /* PBXTargetDependency */, - 6995BCBDB8E4C3A8A27B6C53031785EA /* PBXTargetDependency */, - 06EDD5B89C3D0C2108751E14413DA766 /* PBXTargetDependency */, - 474BA1D6BA459E5E6306C93E0E31A41A /* PBXTargetDependency */, - 61E289E0A9065296349039D1D6E9F9BA /* PBXTargetDependency */, - F98B4F6C1E5D43B2281CD4D147C752A5 /* PBXTargetDependency */, - F921C1A1EF134BAC85F4DF9606458914 /* PBXTargetDependency */, - 27F0CDE14281B8CB610803FBB1B167D7 /* PBXTargetDependency */, - AB2ECBAF111733CC1E8352C2268369B9 /* PBXTargetDependency */, - D991E1747DECD8EF3091A3C02FF0BD58 /* PBXTargetDependency */, - EA400D6D6B28C34C0608A602D119CB89 /* PBXTargetDependency */, - 5F02745808F174D51E57F01436ABB372 /* PBXTargetDependency */, - 29E3F9DFCC9FBE2FAE76790C4ECAED2C /* PBXTargetDependency */, - 689454A68DEC3ACBD89C2AF2BDF7E4FF /* PBXTargetDependency */, - 714C6A6DE5889D6FEF0C0D3F6B46824A /* PBXTargetDependency */, - 75D1C2E049377428E0F5BAD89A42CDAC /* PBXTargetDependency */, - 3807AD07A236EA168BF6A364ED07C782 /* PBXTargetDependency */, - E76212A3A2D1721BA51C1D262DF271D4 /* PBXTargetDependency */, - 63FBBF33E794DF4852E334EC554EF841 /* PBXTargetDependency */, - EE3D14813A7F1781B2A0689D95DF691E /* PBXTargetDependency */, - DF953A6B0F070C79FFDEB6B95072FB36 /* PBXTargetDependency */, - 418A5F7852FD349835E60C16DD507C67 /* PBXTargetDependency */, - B8757CEC296AE79AAE009388BE836685 /* PBXTargetDependency */, - DB546251EA6DB2A51377E50F06779EA6 /* PBXTargetDependency */, - BBCAD01738D428E18C51619FEB646864 /* PBXTargetDependency */, - 776ED604F2D6B820B3270532E2127EA8 /* PBXTargetDependency */, - 0E0E74C2D4426EA2441F10A0A60BF5C9 /* PBXTargetDependency */, - 9C63E297360D2C008DB2A7A057984497 /* PBXTargetDependency */, - 6A65BC82B097A262E0ECC8104999C714 /* PBXTargetDependency */, - E9A3E7D15D6686E38B55421279DE4D16 /* PBXTargetDependency */, - 52D2E18D5980B4CAEB5BC8A9694601EE /* PBXTargetDependency */, - CF7AA26E6D68D6289431F15F070521F4 /* PBXTargetDependency */, - EDAC16EE2188486D189990FA13B3456D /* PBXTargetDependency */, - FAB28E7185E42F14BA8E7C81771E7BF9 /* PBXTargetDependency */, - 8602DE5A03B3206977FCE64395F9BC6F /* PBXTargetDependency */, - 2793407C6B54BE79E0F479BDFFE4F0D8 /* PBXTargetDependency */, - 925E49A503DD65CF0410C5E0C24E16F9 /* PBXTargetDependency */, - 24BD652E0B8C2522FEC261C98350926B /* PBXTargetDependency */, - DB3FA8A17D62B44653577F81BBC78D4F /* PBXTargetDependency */, - 6917B6E71FCEC314AB67E58C93947011 /* PBXTargetDependency */, - DF0192CB058D6E4DAA11A8136A3002F4 /* PBXTargetDependency */, - 8F28C015BFED2FBC5A4F2EE229EE4298 /* PBXTargetDependency */, - FF66E54E7CF9D1BB190AF4ADC129371C /* PBXTargetDependency */, - EEDC1E39AB51D6AAC6540D06A24AB984 /* PBXTargetDependency */, - BC0D789B7BCA7AB5F8580B8AF266CA7D /* PBXTargetDependency */, - 4B58B6D9FD62717F08C97DC2873BCB87 /* PBXTargetDependency */, - A64B4139FBE40A8C7EDA0251EF0F4859 /* PBXTargetDependency */, - 0423424C517A6FF31FBC7257498A4912 /* PBXTargetDependency */, - 229DF5CC4CE2B68D7FC375271C40DD18 /* PBXTargetDependency */, - 6E2911D5C5E2792E0D3E97DAF942B8ED /* PBXTargetDependency */, + 67D619A424F2BC1B051F9CAB4BFA9804 /* PBXTargetDependency */, + FFFBFAB00B10E1ABC9ED8CA155436E90 /* PBXTargetDependency */, + 4A9B378EC57730012AB00FFA7E1BA3CD /* PBXTargetDependency */, + 81D0C1CE48C78D8960A21CC9B8BB66E2 /* PBXTargetDependency */, + A0B59B7EED6E088DDE107DE1E609B795 /* PBXTargetDependency */, + 02DCF412CCF54ABF196C58318A06952F /* PBXTargetDependency */, + 844EE58D8052C7FA612D8983BB848A7A /* PBXTargetDependency */, + C91890FA12733C2B65D6C2A630A8E11B /* PBXTargetDependency */, + 5212F0408404D38D8B1703FBFF1A0195 /* PBXTargetDependency */, + 061A0A7A6AC73DE97E2687A75901F5C8 /* PBXTargetDependency */, + 14C2A59A23B990EC78D9686BFD09C2E4 /* PBXTargetDependency */, + 06CC905783430DCBA4B28924A156B219 /* PBXTargetDependency */, + 9943B828208CC1B8924821C99D81BA93 /* PBXTargetDependency */, + 8ECC0F686D557BA3FD2C4823EECDC82D /* PBXTargetDependency */, + 5EAFBF615DAF48A2F3E28F72217759F2 /* PBXTargetDependency */, + 053F080C03AA720B6C921F0EA8B4B378 /* PBXTargetDependency */, + 8D0DABD68F75AE005635BE2D6B73E6E5 /* PBXTargetDependency */, + 119FBF0B2F7BE1CE61569418C63670C8 /* PBXTargetDependency */, + 3D7C07273E2759A8305988ECF754865E /* PBXTargetDependency */, + 8D7361C4F6FE5F91025E75836705AA22 /* PBXTargetDependency */, + 89D1D0D1D4489194150C65BB3B0729E3 /* PBXTargetDependency */, + 87B3CF7A6AEA4860A117BE6197DF4608 /* PBXTargetDependency */, + 6461C8BD9A5F27DC75A5E6BA7AAA64E0 /* PBXTargetDependency */, + 71CEE74B9E1954F63D1CA59CF9FF432F /* PBXTargetDependency */, + BC0345E0443F779BCAA4606B48AFDE3A /* PBXTargetDependency */, + C2C1B24DD139892A57A460B78898AAA1 /* PBXTargetDependency */, + 3DF275744C0F1F92E2A45684C525CD7B /* PBXTargetDependency */, + 05931D2B26F77153CB3201A4A1B1FB10 /* PBXTargetDependency */, + 11C9AC3D696902A308FAC527831E4214 /* PBXTargetDependency */, + 2D1FFB6A11AC395B33C7986274813725 /* PBXTargetDependency */, + 09E258F4CBA9A48361CE274E9A3B7F86 /* PBXTargetDependency */, + 3DCF89CB2DF6A9464255DB3BC9FBC079 /* PBXTargetDependency */, + 3DA49EDBDF22679824B4053DEDE74E38 /* PBXTargetDependency */, + 565F3DFF9BA679342F9043CC623DC846 /* PBXTargetDependency */, + 41378EFE1B6698D2B8BDE3375AA5BCBC /* PBXTargetDependency */, + 9F38598720ADB94FCD5D729271A29639 /* PBXTargetDependency */, + 4F160F00FC669AB62227CBF1A69D8CC4 /* PBXTargetDependency */, + EF8A7784AE5CDC5DA53D690528846AB3 /* PBXTargetDependency */, + 1C4F4702C94163ACD0D7378F24244C9E /* PBXTargetDependency */, + A8988DDA2B032FA533D262B179690162 /* PBXTargetDependency */, + A9BE54AB584D7D98F5ED5E3B41EE4578 /* PBXTargetDependency */, + 4E7D8402DD5720638C3D65337010A923 /* PBXTargetDependency */, + 8FC66720C41E4AE84F637B0A2DD14EE2 /* PBXTargetDependency */, + 08CB616BE7CC88F7F2A67328CB21EF5E /* PBXTargetDependency */, + B3E194739BBE5563CEADD1783522BA9F /* PBXTargetDependency */, + 24ACCCFD5AC8526CB6FEEC407A94E172 /* PBXTargetDependency */, + 69B99208E6BA6AD0321E7F37C298C0F1 /* PBXTargetDependency */, + 317B2AF08FF5FC2546411F885D9E4AA3 /* PBXTargetDependency */, + E3A3706048E530DEB7C582F6A987E2A3 /* PBXTargetDependency */, + F76072662756082232E539FB6FAD05B2 /* PBXTargetDependency */, + C43B7F857249763D7A59CDE2501B860E /* PBXTargetDependency */, + 14566B4B65F642562FC97EA6C971D955 /* PBXTargetDependency */, + B30A38F1D067613698D0ECBFF82F45EB /* PBXTargetDependency */, + 13814B5F73D6A9D057A4645F22952380 /* PBXTargetDependency */, ); name = "Pods-QuickLocation"; productName = Pods_QuickLocation; @@ -10982,11 +11287,11 @@ }; 7C5613175BBC4BF67E36DB4FBEBC01D0 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */ = { isa = PBXNativeTarget; - buildConfigurationList = 3606C6C7473BDDA747B961013F63837B /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */; + buildConfigurationList = D37672541719AF3542039591D846B1A2 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */; buildPhases = ( - 3D5797597F20D575447F0E4DBF2DEE3B /* Sources */, - 9070E29A77AEF224DAD68D5CE02D9E9D /* Frameworks */, - 43133C2CC5378A5FFDAFA8AC6FD32D21 /* Resources */, + 16593F496A72F1F2DCBBDD63B5268EEC /* Sources */, + B55C9F1352AC4E1A79DEF57943336A49 /* Frameworks */, + 15CEE2FE6FB1E7CB15E47DC66C1120D4 /* Resources */, ); buildRules = ( ); @@ -10999,12 +11304,12 @@ }; 822E44240F2922DAB12018A6B649BD19 /* YYImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 18CC7E116881CCCFF50C55897144816E /* Build configuration list for PBXNativeTarget "YYImage" */; + buildConfigurationList = AD16F0FCAD771A357F473A4AFE0DAD13 /* Build configuration list for PBXNativeTarget "YYImage" */; buildPhases = ( - 40E8608A45A6663CB24FD171688536F7 /* Headers */, - 81F03CCECDA1FC18435042180C600368 /* Sources */, - D04E0124F8432BD77BD51B9C2D21EF3E /* Frameworks */, - 9AFD80F930BB91B2BACB91FBD00027E4 /* Resources */, + B140A8F9807A2A947D7A2DFD0D48ED8E /* Headers */, + 587DD1DB8F7D5493853619236C13DE5D /* Sources */, + BEB9B0D56F4008740021BAADA40238A3 /* Frameworks */, + 72771E06402A203535CC6D24FF18A83C /* Resources */, ); buildRules = ( ); @@ -11027,7 +11332,7 @@ buildRules = ( ); dependencies = ( - EA90E841FE1B83FD460BE5DF34C8A3B7 /* PBXTargetDependency */, + 16D37F6F9C0102A83E71C6BE6B84C6CA /* PBXTargetDependency */, ); name = MBProgressHUD; productName = MBProgressHUD; @@ -11036,11 +11341,11 @@ }; 88810798DA63A2F6611B0970EA276DEC /* IQKeyboardReturnManager-IQKeyboardReturnManager */ = { isa = PBXNativeTarget; - buildConfigurationList = F48896F2B355944D89133495B349A209 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */; + buildConfigurationList = FE928EFF4FD3F75514DA375AC225A59E /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */; buildPhases = ( - 39049C2CAC5FC1ABE0794D667C168BDF /* Sources */, - 7E3F89ED6BDF72DF1BBFF1EBFA833D09 /* Frameworks */, - D7646EAD557C397466E006267CDFCA14 /* Resources */, + DFC181D4377A1BAD6585D3C9978A2C3D /* Sources */, + 53C0E00DF3D2426FEA276C429C101E9B /* Frameworks */, + 9AB2255FB04B22BB592652DD75CA5531 /* Resources */, ); buildRules = ( ); @@ -11071,11 +11376,11 @@ }; 8A8DB685241263AFDF5E6B20FE67B93A /* SnapKit-SnapKit_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 71C54D251EC42560EFF3CE4B275E8DA4 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */; + buildConfigurationList = 2DF8257610A4F0250953B8B24B9302A6 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */; buildPhases = ( - BE584699783D4EFA62AAE2E14CF198D0 /* Sources */, - 5FC385F019F30F8056E28B6D1E8B86B9 /* Frameworks */, - 76E0B413CC41F691A4ECFE72FB07F0F1 /* Resources */, + 1276B092A22EE1538E4B050B85645B70 /* Sources */, + 01AE4BFCC836B4A0E0D7BFBDA19C9A6C /* Frameworks */, + 9DEC9B64BC463675671DFE0ED675F654 /* Resources */, ); buildRules = ( ); @@ -11088,11 +11393,11 @@ }; 94CFBA7D633ECA58DF85C327B035E6A3 /* SDWebImage-SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = E8B5922B5EAC07270F7EBC177288A753 /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */; + buildConfigurationList = B9C98F60F3068C7DB86F9997E7ADC7D6 /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */; buildPhases = ( - A47F439B8D061FAF926B29A112E34AF6 /* Sources */, - 28953E19C2005E9193DC91008D1DE7BB /* Frameworks */, - 7ABA347695C011F034F6B84EDD41B548 /* Resources */, + BBAD2C14A04F3915F9568482BFC47E26 /* Sources */, + 06328DAD038631B177DE7D4FD4AA9DD9 /* Frameworks */, + 025054388155064A6AAAC9C02D172AE3 /* Resources */, ); buildRules = ( ); @@ -11105,11 +11410,11 @@ }; 976126A1CE06DC6E162563800E1BDF14 /* Alamofire-Alamofire */ = { isa = PBXNativeTarget; - buildConfigurationList = B4235B903770F2009D5C2863EFB72F2F /* Build configuration list for PBXNativeTarget "Alamofire-Alamofire" */; + buildConfigurationList = 294F585694949ACBE0279FE7F4677EF2 /* Build configuration list for PBXNativeTarget "Alamofire-Alamofire" */; buildPhases = ( - 6EB6B062252682B121E3120653AF2BC7 /* Sources */, - 24D572644A965DFE839190D36A91A35A /* Frameworks */, - E052CE5A875358208B4E3DFC8DE00B32 /* Resources */, + 70BE4224601F75D96D377EDDB8084DAF /* Sources */, + 01975CBDD3B70D1E18BB91B8301AE617 /* Frameworks */, + 24B5E37AE776DE36B4BF7C13BF3E3A3A /* Resources */, ); buildRules = ( ); @@ -11122,11 +11427,11 @@ }; 9828BBC09E9FB1238624113D7456E59E /* Kingfisher-Kingfisher */ = { isa = PBXNativeTarget; - buildConfigurationList = 950D6D814E279F5AD0981351D37170B0 /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */; + buildConfigurationList = AC300E7B80778A8B1063AA52F7BB053A /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */; buildPhases = ( - 0E510E418804381A0F002D582B2D688C /* Sources */, - FA994E5F3F5CBAFCD1C9D3AB03A4C48D /* Frameworks */, - 04ADE83A29D4A315B8053EDDB2EE3ED3 /* Resources */, + 09EACC9E3A742CD64040127B378ACB39 /* Sources */, + 01DFC48E1F53F491E4BA276CB013D8FB /* Frameworks */, + 4A3538B2E3C9B71D22582C87C57E492B /* Resources */, ); buildRules = ( ); @@ -11139,11 +11444,11 @@ }; 982A68D37F5DCBC1FC1FDC0BB2F0EB8E /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */ = { isa = PBXNativeTarget; - buildConfigurationList = 2FE321B4B52F6E212AA0AC623949A1D1 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */; + buildConfigurationList = DA5E7F9090E0F51DF371BAD15789BA85 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */; buildPhases = ( - CA6DBC72AA33333BCAC9445A32BD908F /* Sources */, - 6AC1271961B00B1E2C927BD726508CF5 /* Frameworks */, - 09D727F15F09039C2251695BA61D1B38 /* Resources */, + 2941C4E22687863CE625E6A88386A22A /* Sources */, + E3AF7819D3384DD52FC3A8D2752EFAE8 /* Frameworks */, + 4B7442CE4009F1C6B46EB1E0F2FECA1B /* Resources */, ); buildRules = ( ); @@ -11174,17 +11479,17 @@ }; A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */ = { isa = PBXNativeTarget; - buildConfigurationList = 7B3ECF9B14E831C1E69A740F6EDD2397 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */; + buildConfigurationList = 464447B68542887B4E815F2387D67490 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */; buildPhases = ( - FB7CD51FACD057EFC34D2053A49C2843 /* Headers */, - A2F44179063046C06A348D012B5D9DBC /* Sources */, - 9044335B6F58888C40BF8DAB731BD484 /* Frameworks */, - 89AFF5D66BA54960CB1EA89A8ACFA33E /* Resources */, + 13BA45E0D772BF298A07A8B164843527 /* Headers */, + B2A31197323F230D6200DFFF253D9F8F /* Sources */, + 2DE5D894FF69B5E9F0E4EFF2354C0653 /* Frameworks */, + 6CFC083652B60F73E6AAEEDFBFCE3B47 /* Resources */, ); buildRules = ( ); dependencies = ( - 1A6D8A996B55A6BB9FB4E590163AD294 /* PBXTargetDependency */, + 9E397E80B5B748D13CF4BCD1E4A99E2E /* PBXTargetDependency */, ); name = IQKeyboardNotification; productName = IQKeyboardNotification; @@ -11193,11 +11498,11 @@ }; A6602BCAA6F4F932A586C41D0B7E019C /* IQTextView-IQTextView */ = { isa = PBXNativeTarget; - buildConfigurationList = 9F4308D7D5046F7288DB3693BDD9D2FA /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */; + buildConfigurationList = F9FAD43D2A0DEB921B66E27E37C7E5B9 /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */; buildPhases = ( - 39067DE68C862D6B997E0441CCF512B0 /* Sources */, - DC5E36FEFA1FBB27AEBDCF22AA3C06EB /* Frameworks */, - EBF88CC2A0107A48F104387FBED6454C /* Resources */, + 3B52A5A8596F88A8BFD84799F2875071 /* Sources */, + 12B469B686D5B69A29FDCCD4BFD6C715 /* Frameworks */, + B9977E2DBE9FD6904FDEF4A2EE660825 /* Resources */, ); buildRules = ( ); @@ -11208,13 +11513,31 @@ productReference = 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */; productType = "com.apple.product-type.bundle"; }; + B017CC75E2704C686AA0A2203247D9C7 /* MqttCocoaAsyncSocket */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3D1CBD8549563FAC742CB31571F622FE /* Build configuration list for PBXNativeTarget "MqttCocoaAsyncSocket" */; + buildPhases = ( + 79CA09845E5444D46A42008314213DA0 /* Headers */, + 7E26ECFCDA20DC6B3FC07CDBEDF6A947 /* Sources */, + 5A1052A1D08809487D5D3AEF8E2C85A6 /* Frameworks */, + 0887CC9B9397F86E33A2ABE14BA4BCB6 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = MqttCocoaAsyncSocket; + productName = MqttCocoaAsyncSocket; + productReference = 08DE826BB58AC8456D39338C267DB337 /* MqttCocoaAsyncSocket */; + productType = "com.apple.product-type.framework"; + }; B247F77A0CD5E19C8187A9BA1EB58C09 /* IQKeyboardToolbar-IQKeyboardToolbar */ = { isa = PBXNativeTarget; - buildConfigurationList = 37D8640B118856AE776EA78AD4DAC492 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */; + buildConfigurationList = 8A8565B186B9103A7BC8FE64942C270E /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */; buildPhases = ( - E95AA2DA471BE0C97D4B9E100073684D /* Sources */, - 2B63BE43F73E8B74C6CCC14ED87B1CA6 /* Frameworks */, - EC406E27915FD3A58994BC8134D8E022 /* Resources */, + 575A5516E291354D4BDEC321451B2DF3 /* Sources */, + A10D2F79E7AE84861E35970014FF750E /* Frameworks */, + D1487D0AA735B6F409777D8C5BCBDD9D /* Resources */, ); buildRules = ( ); @@ -11227,11 +11550,11 @@ }; B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 15E1625229AEEF76B371C85A30BEC8D8 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */; + buildConfigurationList = 0B93C26B016DBDD8A7FA041E0E6D87CB /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */; buildPhases = ( - 4156DE582C2412C01D011A772DA02929 /* Sources */, - 8E714EDDA0F6731D47EF41DFD8F372CD /* Frameworks */, - DDF3690F444FABE35265342ECB139433 /* Resources */, + EA5A1E1084CCFC39C15254A90B1AE19A /* Sources */, + E386FCD9D8F479EEDED94B4214191574 /* Frameworks */, + E2AE0D864B9ED466159D8FD87FB07DA7 /* Resources */, ); buildRules = ( ); @@ -11244,11 +11567,11 @@ }; B32AF3F43989CBA171BB1FB3957A4509 /* MJExtension-MJExtension */ = { isa = PBXNativeTarget; - buildConfigurationList = CDD88F74A6576E75408DEB54D8367BA6 /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */; + buildConfigurationList = 0ABD335369805811737BE0F97C6C7353 /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */; buildPhases = ( - FBB63F3C895372F15B9D7DA98AD1BC8D /* Sources */, - 6C6E81B9C8466DCF26580F0595755D0B /* Frameworks */, - 73C89D1C9CF255EE8CE2D4284579C51E /* Resources */, + 097801BCCC68798C07B247CB7D9C8C10 /* Sources */, + EDF83DFA2B9A14CD4ED7411626774CF6 /* Frameworks */, + 78F5FCFA47AABD26EA3584AD03F86FB7 /* Resources */, ); buildRules = ( ); @@ -11289,12 +11612,12 @@ buildRules = ( ); dependencies = ( - F2523D133596D9DAA94F301030473634 /* PBXTargetDependency */, - 0C758B3319CE3765BD94EF42337CCC3F /* PBXTargetDependency */, - F6918A53726776461E823475A47C47EF /* PBXTargetDependency */, - 2A9641E11BC725AE467BFE3CBD3E55A2 /* PBXTargetDependency */, - FE5B9817129F124FE2216068BE379B31 /* PBXTargetDependency */, - CD6625D0A5E51DDBD5BE9B906CD190E3 /* PBXTargetDependency */, + 7DC915678E8254CF93E03735EE74B0A7 /* PBXTargetDependency */, + B178318E6B06FEBDFCA880490160D2DB /* PBXTargetDependency */, + FA78E89559F608171A318EA1A1A05625 /* PBXTargetDependency */, + 718FB82B61EAA6741EEF657ACE476A08 /* PBXTargetDependency */, + 03BE676D6E796F73D6FDE561982E015D /* PBXTargetDependency */, + 331EE3C0890333418E0AB093E5D012A1 /* PBXTargetDependency */, ); name = IQKeyboardManagerSwift; productName = IQKeyboardManagerSwift; @@ -11313,8 +11636,8 @@ buildRules = ( ); dependencies = ( - 69F32127477388DB1EF47C989653AA3C /* PBXTargetDependency */, - 6FDE263B4B3D335FF258B018B24FB7EF /* PBXTargetDependency */, + 2E65B9D035B07836C53FC44882FD5411 /* PBXTargetDependency */, + 2670CA7666FADB6C71B574E88FF46068 /* PBXTargetDependency */, ); name = YBImageBrowser; productName = YBImageBrowser; @@ -11323,11 +11646,11 @@ }; BF2A15FEC3F3424BBC4B9AD5F86F2D54 /* lottie-ios-LottiePrivacyInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 99544DFEA3ABAD73EE22C7B670A27277 /* Build configuration list for PBXNativeTarget "lottie-ios-LottiePrivacyInfo" */; + buildConfigurationList = A8D2F4A6CDB15363D2B7CD87F959C43E /* Build configuration list for PBXNativeTarget "lottie-ios-LottiePrivacyInfo" */; buildPhases = ( - D2DFF319A95580F59BC9410B687D2748 /* Sources */, - 7936B8B37C6C2E82AEC25493A2EAB735 /* Frameworks */, - CE0420E86FAC21EC82D24F8818797E90 /* Resources */, + 7D1E213D772FF9DBC51F426D48BF0C22 /* Sources */, + 967D01C15ADC84B0D6F6465C3150ACF1 /* Frameworks */, + B431ABB5D5BAE8BCCF5375BFBA981581 /* Resources */, ); buildRules = ( ); @@ -11350,7 +11673,7 @@ buildRules = ( ); dependencies = ( - 80A6E6B2BD507370373167F3DF66659C /* PBXTargetDependency */, + 6B7A1136FEC9630E5810811A03304F70 /* PBXTargetDependency */, ); name = MarqueeLabel; productName = MarqueeLabel; @@ -11369,7 +11692,7 @@ buildRules = ( ); dependencies = ( - 34D74EF0976DCD06A98A329EEB6A9A6B /* PBXTargetDependency */, + CB4D5BDDFF21ECC88677A198F7E338BD /* PBXTargetDependency */, ); name = SDCycleScrollView; productName = SDCycleScrollView; @@ -11378,11 +11701,11 @@ }; CBFB5A372F4DE9D4BC6B9ADA98B80BFE /* MarqueeLabel-MarqueeLabel */ = { isa = PBXNativeTarget; - buildConfigurationList = E98AA333BE2F80C5073C19F7D874B291 /* Build configuration list for PBXNativeTarget "MarqueeLabel-MarqueeLabel" */; + buildConfigurationList = 1A401D82B16E9AE11902CE16E77EE8CD /* Build configuration list for PBXNativeTarget "MarqueeLabel-MarqueeLabel" */; buildPhases = ( - 5657F5827C3348B57780F212BA7104ED /* Sources */, - C2C83C8CA83F939FDC972D46AD672DFA /* Frameworks */, - F0684009A025997176847D4F180AFBBE /* Resources */, + B1A34CED0B05549FB1A36F61C44D0DE5 /* Sources */, + 9F142B267B422862220164D4351D1977 /* Frameworks */, + D81B899AB5D5FDFD30FF35B92088DBE2 /* Resources */, ); buildRules = ( ); @@ -11423,7 +11746,7 @@ buildRules = ( ); dependencies = ( - DB812A3F914FF838A6360E92BE18ACF1 /* PBXTargetDependency */, + FBF93ED7FC482938418EE1D10B88E153 /* PBXTargetDependency */, ); name = SwiftyJSON; productName = SwiftyJSON; @@ -11432,11 +11755,11 @@ }; E68E71E462C154107C49C379E539826E /* ObjectMapper-Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = B2ABF0C77AFF3164F71BADF22DE56125 /* Build configuration list for PBXNativeTarget "ObjectMapper-Privacy" */; + buildConfigurationList = A2A7560779BF2CE98594D4DD95618156 /* Build configuration list for PBXNativeTarget "ObjectMapper-Privacy" */; buildPhases = ( - 50B57A4B4C432838C27154E4075204E2 /* Sources */, - 72DC59A6CF54BE63D611BEA35D572B2A /* Frameworks */, - C27265C131AF96E9E3C2901A4926EB72 /* Resources */, + D3B7F4CF2F6E65F3DE5121DE7D972D66 /* Sources */, + AFC8FAED3CBB80D1E3253859DF9AF754 /* Frameworks */, + C06A6D6B134EC6BC0C829D6C2B6AB5B7 /* Resources */, ); buildRules = ( ); @@ -11459,7 +11782,7 @@ buildRules = ( ); dependencies = ( - A4415C13DF30CDB026B7F465A25913D6 /* PBXTargetDependency */, + 02D15F927AE4B4488778259A1FDCF822 /* PBXTargetDependency */, ); name = Kingfisher; productName = Kingfisher; @@ -11478,7 +11801,7 @@ buildRules = ( ); dependencies = ( - B1771CC8AEC0A0F67E148386180E2090 /* PBXTargetDependency */, + 7CC9A74710C42D1501C895BAF55B9B55 /* PBXTargetDependency */, ); name = CocoaLumberjack; productName = CocoaLumberjack; @@ -11487,17 +11810,17 @@ }; EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */ = { isa = PBXNativeTarget; - buildConfigurationList = 07168E72BCBCF2C5EA9E6C96F7DEA930 /* Build configuration list for PBXNativeTarget "RxSwift" */; + buildConfigurationList = 53ADEEB74F5FB98F256688E4189ECC79 /* Build configuration list for PBXNativeTarget "RxSwift" */; buildPhases = ( - F3A536E36F6FF7344A815F868C2E74FF /* Headers */, - 50ABD95842350CD3501B3D3065FAED26 /* Sources */, - BD2E7A934A2FF328A64E6344985665A6 /* Frameworks */, - 25EA31F5EDF6C6DA50358EA938087BA1 /* Resources */, + AB88581FF933CF69BBB0E15137F88F7A /* Headers */, + 872A47048D204F3DC75A059AD43414CC /* Sources */, + 3C03A0F1C3858E353A966927052F1609 /* Frameworks */, + 672EF01293BF244D8B92AEB579B4680C /* Resources */, ); buildRules = ( ); dependencies = ( - 9F154867C1546E6B38EE53F105E0E6A4 /* PBXTargetDependency */, + 1539E005446B7DAA5069E44BDB998F19 /* PBXTargetDependency */, ); name = RxSwift; productName = RxSwift; @@ -11516,7 +11839,7 @@ buildRules = ( ); dependencies = ( - B2072E6A13996825B6F5921C0E227A76 /* PBXTargetDependency */, + 8C40FA741B59320725CF534BF3EBAE33 /* PBXTargetDependency */, ); name = Alamofire; productName = Alamofire; @@ -11535,8 +11858,8 @@ buildRules = ( ); dependencies = ( - 5D710C4ED1B517BEDDD1A633C1827954 /* PBXTargetDependency */, - DD21BD7E9672B4F13EF7DE2FFEA26DFB /* PBXTargetDependency */, + A814D6E3E166EE1D154579D9DB9CD4D8 /* PBXTargetDependency */, + 0E721B89BF12521E129E16FB49548BBA /* PBXTargetDependency */, ); name = RxSwiftExt; productName = RxSwiftExt; @@ -11545,11 +11868,11 @@ }; EEE261386011CDF271BE289F73FF5959 /* IQKeyboardCore-IQKeyboardCore */ = { isa = PBXNativeTarget; - buildConfigurationList = 8BECD56FE2C07A3980EF80DAF29BEDD9 /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */; + buildConfigurationList = B6E2A2C8667DB5ECDD64557EAEE2B908 /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */; buildPhases = ( - 07347DABC6C087FC78C6EA216F81E8EA /* Sources */, - F57A48E3CEA6A2A74CD89B2D260FAD89 /* Frameworks */, - EDB32818FC10E1AC64CBECAD2FB1BEC5 /* Resources */, + CD025D31F5EBDE4E708C3204A90F59B6 /* Sources */, + FCF72B5CA4B711A9EF957FF9913B2161 /* Frameworks */, + 1D43E155665E7CE8DE218A6323D494AC /* Resources */, ); buildRules = ( ); @@ -11562,18 +11885,18 @@ }; F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */ = { isa = PBXNativeTarget; - buildConfigurationList = CED9CFC3D76AAC6B7819937B55C8760C /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */; + buildConfigurationList = 193B5ADBE19033B315CCB5C55ABE0522 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */; buildPhases = ( - E554F405EEF5E215C189FCD81FD1336F /* Headers */, - 0A27C34AA951DA0FA805812E29F7017D /* Sources */, - 71AA829AB846AF235426263C08793A12 /* Frameworks */, - E67FAFF439A0CAB8E318F62FC87DB286 /* Resources */, + 0A1ADBD78E3F07C5417FE41171CD8FF6 /* Headers */, + 06B25A182DF89594FDC3926C80B381A8 /* Sources */, + B23C743B74BC309410049E6A67B6727B /* Frameworks */, + 9A3EA60CB43987637C055D11C587C53A /* Resources */, ); buildRules = ( ); dependencies = ( - 28BD5273C13642D7BA13101F0911C7E5 /* PBXTargetDependency */, - 48985134A9454E26DE54FC95B60DF4B6 /* PBXTargetDependency */, + C5286BCEE3FC137F2FA80EE171F418A3 /* PBXTargetDependency */, + 468FC4A3520CA783060276F1FA9E72D6 /* PBXTargetDependency */, ); name = IQKeyboardToolbar; productName = IQKeyboardToolbar; @@ -11592,7 +11915,7 @@ buildRules = ( ); dependencies = ( - C1934C77AE323069AA421850DE47831F /* PBXTargetDependency */, + 94C567E329025F741BC2E50B5EB8DD0F /* PBXTargetDependency */, ); name = IQKeyboardCore; productName = IQKeyboardCore; @@ -11619,7 +11942,7 @@ mainGroup = CF1408CF629C7361332E53B88F7BD30C; minimizedProjectReferenceProxies = 0; preferredProjectObjectVersion = 77; - productRefGroup = EFE5927F7E570D4A275ADA784B520553 /* Products */; + productRefGroup = F1F3AB582168068047CB22DFF189D8BC /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -11632,6 +11955,7 @@ 54F872FDE6669F86C58C8075211FE643 /* AMapSearch */, E95654B155D25890BE8E26081FCA8265 /* CocoaLumberjack */, 276021C4482165D46E0CBBEFB822FE95 /* CocoaLumberjack-CocoaLumberjackPrivacy */, + 4EB168A830EFA6136FA93357D1F1511A /* CocoaMQTT */, 212F79CE462FC723AF42979B57FBB8A6 /* Differentiator */, 997E783A70C18DC9BA830488608C03AA /* GTCommonSDK */, 17D542296AD0C26B1C5815268E5C6BF6 /* GYSDK */, @@ -11668,6 +11992,7 @@ 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */, B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */, 17F9141D333DA1A7BE5937F227221070 /* Moya */, + B017CC75E2704C686AA0A2203247D9C7 /* MqttCocoaAsyncSocket */, 162E649F50FEC62B61BDD87D1BD422B4 /* ObjectMapper */, E68E71E462C154107C49C379E539826E /* ObjectMapper-Privacy */, 0028E46539689892CC926BB8D811EF54 /* OpenIMSDK */, @@ -11704,19 +12029,34 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 04ADE83A29D4A315B8053EDDB2EE3ED3 /* Resources */ = { + 025054388155064A6AAAC9C02D172AE3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - F7ED5E8C81EAD309CD59C56C8D880D70 /* PrivacyInfo.xcprivacy in Resources */, + 24E37A83108B1C7DCCCEEF273881A6A5 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 09D727F15F09039C2251695BA61D1B38 /* Resources */ = { + 034D494659D3083A2B910182B7C4CC5A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5028A68DA5ED8F5524765AA3A07B4007 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 048341746DD7E8EE813D71F10918B271 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FEBD6D063AA753708127F5CA20880175 /* IQKeyboardReturnManager-IQKeyboardReturnManager in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0887CC9B9397F86E33A2ABE14BA4BCB6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - CFEC116AEDE187E92C82DDDB62782D15 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11735,6 +12075,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 15CEE2FE6FB1E7CB15E47DC66C1120D4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 32E39C6EB2A04EC7B64B5E22567CD4B2 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 17250F6B5CED28AD551BAE70B5F6AC83 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -11751,6 +12099,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 1D43E155665E7CE8DE218A6323D494AC /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 820C82AC96BB3513DB5BC2D00ABDB5D4 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1DEDF411E550D85A1218E1655456A9CD /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -11766,6 +12122,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 1FA8FA7F15BCC1A3F21958216CFFA096 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6C780F3D2186743F9015C2B1AA6ACD7D /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 208CA54F7A9B2296A366628AEDB45C82 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -11774,27 +12138,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 23C2EC80D38A7F93DDB7710AC2ECB3A0 /* Resources */ = { + 24B5E37AE776DE36B4BF7C13BF3E3A3A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 35AA2D02723EC5CB583C6CC4B077EDA8 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 25617855BF8FBC9CC08A0545E3DF12ED /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 017B571D84F5F8CE98B17E0221D123EC /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 25EA31F5EDF6C6DA50358EA938087BA1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9D02329C05D857C2BDD3089FB523862D /* RxSwift-RxSwift_Privacy in Resources */, + 634EDF12A3BC3BED298B2DC6E2A000D3 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11805,14 +12153,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2EA41950ED522603811A5832D4613E29 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EE2CDA0384DB3DCB746E7BD58B7DF517 /* IQTextView-IQTextView in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 30325A914D6527C8259F46363D6D7531 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -11821,14 +12161,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 33D6AC982E0314666BFDEAFAE9C482E6 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9FBC6A5DB0E8F77EC6EC2D6B98C81BD2 /* SDWebImage-SDWebImage in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 35D5CEF8B78A8BEEE66C16F2A6C3758E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -11836,6 +12168,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 37E2E612BC8369F3D0A183A3A7CB91F7 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 89CC589A21EE67EE5A904D350EA92A11 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 3AE15AB47E6AB840630160F62F907577 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -11844,11 +12184,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 43133C2CC5378A5FFDAFA8AC6FD32D21 /* Resources */ = { + 4A3538B2E3C9B71D22582C87C57E492B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - AAF1D044A1BFEB95FD91F7381DD2A5BA /* PrivacyInfo.xcprivacy in Resources */, + A3AE0AE632B34C3FED84760D5BD8502A /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11861,6 +12201,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4B7442CE4009F1C6B46EB1E0F2FECA1B /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ADEF5F16FEE9FCE6638ACC79A7ABF82A /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 4F08CE07F9035A8581CF32E4F0FE860C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -11876,14 +12224,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5B0176AE1F954EC48322EC9860C4E2AE /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - B53D9A285B3015EA413FA05765041026 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5F86C3D723237043C92A33E251A610E5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -11908,59 +12248,65 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6821795096DB743034896811810EF1F9 /* Resources */ = { + 672EF01293BF244D8B92AEB579B4680C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1C2F9A89151532ECE06B20206EEACCE5 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager in Resources */, + 957C254909D1EAC5C8A62D6AA468F6BA /* RxSwift-RxSwift_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 73A3F3E0D6A61129CCD3FAFB550211EA /* Resources */ = { + 6CFC083652B60F73E6AAEEDFBFCE3B47 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - BA2BF63F7311BB19D1584B948436162B /* IQTextInputViewNotification-IQTextInputViewNotification in Resources */, + F32563E5603EC6D414A5E77F4271074E /* IQKeyboardNotification-IQKeyboardNotification in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 73C89D1C9CF255EE8CE2D4284579C51E /* Resources */ = { + 6EAEA7B9CC2849523DAB27705D5AA08D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4638347B66B53464CBB12F41BE228CAD /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 76E0B413CC41F691A4ECFE72FB07F0F1 /* Resources */ = { + 72771E06402A203535CC6D24FF18A83C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 42F5E58DA58FC66B2E6048976760F1B4 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7ABA347695C011F034F6B84EDD41B548 /* Resources */ = { + 78F5FCFA47AABD26EA3584AD03F86FB7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 755D9CA16B51789C4BBEB377F7DE65FC /* PrivacyInfo.xcprivacy in Resources */, + A332C0B8334B1F42C06DA96434ADED1B /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 89AFF5D66BA54960CB1EA89A8ACFA33E /* Resources */ = { + 7944F12A776C87062880289B4AEF0345 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - D03BD90BE0856C6DAD452338935F1F39 /* IQKeyboardNotification-IQKeyboardNotification in Resources */, + DE61A14BAFA5A642937ED99AED8A3BF0 /* SDWebImage-SDWebImage in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8BA0C2630E6B153BC254A807D0295A6A /* Resources */ = { + 7E1420486D12C8D91F9F9E74C8E88A39 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 311B7A37EF82A4625087384B10A169D2 /* RxRelay-RxRelay_Privacy in Resources */, + C687C1E3C0B426A37D557A2C863E7EE9 /* RxRelay-RxRelay_Privacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97F1C6B10A94C792FC583039581CFEFB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0128B45833224DCB79FCE4EDBD501E43 /* IQTextInputViewNotification-IQTextInputViewNotification in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11972,10 +12318,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9AFD80F930BB91B2BACB91FBD00027E4 /* Resources */ = { + 9A3EA60CB43987637C055D11C587C53A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 0C5A1A53C0ED5FCC9083DF46369A0345 /* IQKeyboardToolbar-IQKeyboardToolbar in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9AB2255FB04B22BB592652DD75CA5531 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 55B11D2C4DDF75F774137344BF028AF6 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11986,6 +12341,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9DEC9B64BC463675671DFE0ED675F654 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DA2EA670260D4E9CCFC579A878E5B4ED /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A1E223F7D6E8144EF7EF5AA266EB8194 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -11993,26 +12356,57 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A23213350E6A48CA2BF78B674AD6BF82 /* Resources */ = { + A4A6D9B820D143969128BE3EA029773A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A8CC6628C022C383E8605C29ED144DB1 /* Resources */ = { + ABF2CC011CB4DC1485360C5CA8B27157 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 34A90FA56CA4751EE718D8FC7B800C52 /* PrivacyInfo.xcprivacy in Resources */, + 824D4C02186994BB3F19D1C2BB25BB8E /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C27265C131AF96E9E3C2901A4926EB72 /* Resources */ = { + AE203C28EFDBF9F11219F7DE18744178 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 64AF3888E1DB7049200A3A5C28A26D9D /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B431ABB5D5BAE8BCCF5375BFBA981581 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D7047855F58ADD6E380310E6715EE862 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B9977E2DBE9FD6904FDEF4A2EE660825 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4A91D925DDACC63C464346C6EB1CED3E /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BC38D500BCF8EA94CB65449B2D776BD7 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5CAB0AB09FE4A8EF175E154539E3CC36 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C06A6D6B134EC6BC0C829D6C2B6AB5B7 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B7CBF06317A4D75FAB6B9A0E9463E6A0 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12023,14 +12417,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C9D2BA17597BD9D10A8BACD6D530524E /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 77EC03B0F9D4FF3F96A18E8B1B6235FE /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; CA079CE9479E3B6703DB3A0AFBD88DBE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -12038,11 +12424,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CE0420E86FAC21EC82D24F8818797E90 /* Resources */ = { + CAAB5769287A1527C19DBC52617AB995 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - A0B9F8C32DCAE928C8485766B4CAB172 /* PrivacyInfo.xcprivacy in Resources */, + 39B43DD4DA5782166B4E6273C183E55A /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12054,27 +12440,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D4DE6C908D537B3C4D297D6CFEC155C6 /* Resources */ = { + D1487D0AA735B6F409777D8C5BCBDD9D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FEA10484BCDCE23F63CDABE169AC7398 /* PrivacyInfo.xcprivacy in Resources */, + D8FE4883BF58160CC625580FE1FF2D8B /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D5609EC3502F839C77C6DC1D58408E17 /* Resources */ = { + D81B899AB5D5FDFD30FF35B92088DBE2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 02F77CF19A41C0AB44D560F038B17E47 /* IQKeyboardReturnManager-IQKeyboardReturnManager in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D7646EAD557C397466E006267CDFCA14 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D2134585517FBCB5CD2463B4DBEE8E84 /* PrivacyInfo.xcprivacy in Resources */, + AB3D4041F79C0E504824AE124753F01D /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12085,14 +12463,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DB978B93646DEAB6DFF5ADC3AF6CB41B /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4AEB94C02388DC97E65AEAF58412F14B /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; DD391D2DE12A3727FCFFAF52F3E35F8C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -12100,19 +12470,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DDF3690F444FABE35265342ECB139433 /* Resources */ = { + E0124A1E59B0E67FB5A1D2F394D1A689 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 706FFD08EBEB41ECFBD99F46227A31B9 /* PrivacyInfo.xcprivacy in Resources */, + 3CA8AA8FFEC560A25DFD5EBFCF187AFC /* IQTextView-IQTextView in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E052CE5A875358208B4E3DFC8DE00B32 /* Resources */ = { + E242152B887656FEB7CE67250DBBDD53 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 75B018D32C8A344D1CFDE4B192378DC5 /* PrivacyInfo.xcprivacy in Resources */, + D1E29D4E3A8F4E6EA0802C90B0729BDE /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E2AE0D864B9ED466159D8FD87FB07DA7 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 40B6C52B85E307B53FF06DF1ECD6D046 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12123,18 +12501,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E67FAFF439A0CAB8E318F62FC87DB286 /* Resources */ = { + E571BE96E47797830317E0AB23389499 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 39CD61C38849FB1D75225ECB96384C43 /* IQKeyboardToolbar-IQKeyboardToolbar in Resources */, + 6B469D8584D94A1E7A2B749689A56555 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E9E84DCA31807AF25979678C55CAA0C0 /* Resources */ = { + E8EE26654911879E9E0B76323B6AD16F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 88F4CA6C1D8268726FB5EAFA1B8B60DB /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12146,22 +12525,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EBF88CC2A0107A48F104387FBED6454C /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5BFEA22DAE56385193B4231D5761611F /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EC406E27915FD3A58994BC8134D8E022 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8427A2B8905686251B6DEC1152C41087 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; ECD6B9A8E754DF142B323DF2D7E0D112 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -12169,22 +12532,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EDB32818FC10E1AC64CBECAD2FB1BEC5 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 76C8BE0DB8DE9BFD4D551465F246B2D5 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F0684009A025997176847D4F180AFBBE /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0A064677F67C9C59B3EC08EA2C6882C0 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F3CD92FF3F32F7654415A0EDC22AE220 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -12192,14 +12539,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F82883CC8E1C24098B8B224C4243A017 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F5695140D67045D5A1716FA7724E7A3F /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; FCBF93A965DD17FF24BCB8637B2F2407 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -12220,6 +12559,23 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ + 326D11B4BB33F302B3E3C1BBC9BB42AD /* [CP] Copy XCFrameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/OpenIMSDKCore/OpenIMSDKCore-xcframeworks-input-files.xcfilelist", + ); + name = "[CP] Copy XCFrameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/OpenIMSDKCore/OpenIMSDKCore-xcframeworks-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/OpenIMSDKCore/OpenIMSDKCore-xcframeworks.sh\"\n"; + showEnvVarsInLog = 0; + }; 6C1F0AE00B88ED4F09755948A825C8EB /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -12254,23 +12610,6 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/GYSDK/GYSDK-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 9C3AD94056D908812BA5E12CFF63EDC3 /* [CP] Copy XCFrameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/OpenIMSDKCore/OpenIMSDKCore-xcframeworks-input-files.xcfilelist", - ); - name = "[CP] Copy XCFrameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/OpenIMSDKCore/OpenIMSDKCore-xcframeworks-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/OpenIMSDKCore/OpenIMSDKCore-xcframeworks.sh\"\n"; - showEnvVarsInLog = 0; - }; BFD4675DECD846713F87D2380D482371 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -12308,6 +12647,19 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 01C24295C8287BE4F6E5F15479124477 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E31EEFA075313CAF17BE7EB83C92FA41 /* BehaviorRelay.swift in Sources */, + CB1D9D0547B7C269B858D5741FFA24B5 /* Observable+Bind.swift in Sources */, + 19093EF705B706BEFB97DE1C2BD8E609 /* PublishRelay.swift in Sources */, + BE587FAA51EAB21A65120F5FBB61AAB3 /* ReplayRelay.swift in Sources */, + F2BCFFCCFDC0882E51E5CD3B1FC700C6 /* RxRelay-dummy.m in Sources */, + 377C075A77ADE633702916D401435B7C /* Utils.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 03543E76C8CE678CE85149A3DB845E85 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -12328,10 +12680,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 07347DABC6C087FC78C6EA216F81E8EA /* Sources */ = { + 06B25A182DF89594FDC3926C80B381A8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 9735FA2F9E5D53A10450D1BAEFA7612F /* IQBarButtonItem.swift in Sources */, + 7B16DF8E517A9D80875DDD95B4F57C12 /* IQBarButtonItemConfiguration.swift in Sources */, + 5CF988F49F44624A4A8B02BF1CCE4BBF /* IQInvocation.swift in Sources */, + D232B04D611FA4C1975092C04E45C9D0 /* IQKeyboardToolbar.swift in Sources */, + 6D003B1C03E4B62C6AC86FB2BB8F725E /* IQKeyboardToolbar-dummy.m in Sources */, + 9720D8169C83739350D3580924FFCB3D /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */, + A3E8A074E30BA84E989760E577267356 /* IQPlaceholderable.swift in Sources */, + 35D4EE5441CE7FFC75C0138C0E6B5E81 /* IQTitleBarButtonItem.swift in Sources */, + 5D2516D112A1602C01C94A875FF3C165 /* UIView+IQKeyboardExtension.swift in Sources */, + 8668F10311E0363DC66344D807FE3A5F /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */, + 632D8A65110832A6FB8BAA12CBEDD566 /* UIView+IQKeyboardExtensionObjc.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12353,21 +12716,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0A27C34AA951DA0FA805812E29F7017D /* Sources */ = { + 097801BCCC68798C07B247CB7D9C8C10 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 09EACC9E3A742CD64040127B378ACB39 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9A748E06A1A0D4590C268AE3517D906F /* IQBarButtonItem.swift in Sources */, - 1DCE04A9FCE27FC61473B81D02AEAC8E /* IQBarButtonItemConfiguration.swift in Sources */, - CF1EC62E8A77D354F29EE22D25829C16 /* IQInvocation.swift in Sources */, - 126D18E956154F413FA6C9945824F505 /* IQKeyboardToolbar.swift in Sources */, - BA630891DEED7C86255D158198B277A0 /* IQKeyboardToolbar-dummy.m in Sources */, - 3E283486A950267772D597343238DC75 /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */, - 0E61B65A6B4B7D35361B09DD9328F462 /* IQPlaceholderable.swift in Sources */, - 58627A8298D25CD81FCCDEDC8D7773E5 /* IQTitleBarButtonItem.swift in Sources */, - C5F4341339351B5E870AECED2E537EE3 /* UIView+IQKeyboardExtension.swift in Sources */, - 1CD64DB96914999F5DB0A8E5156C82EB /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */, - A24744A0D592244A51AE4FD145482C24 /* UIView+IQKeyboardExtensionObjc.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12484,21 +12843,34 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0D1CF396363093333F5FEE0FC1D941D6 /* Sources */ = { + 1276B092A22EE1538E4B050B85645B70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0E510E418804381A0F002D582B2D688C /* Sources */ = { + 13FA7BFD74C2C193D076A6264259CE14 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 59D8740DE7EA85A7E5950D8A4B43AA74 /* Array+Sort.swift in Sources */, + 9010DB8F0F66A0EEB1A7DB5C96611654 /* IQDeepResponderContainerView.swift in Sources */, + 967D69215A506E8003D53AB825DBF8B1 /* IQKeyboardToolbarConfiguration.swift in Sources */, + 377DED16F7843193371F3FAAC29D5346 /* IQKeyboardToolbarConstants.swift in Sources */, + 21E2F85CE870CA57AF08B557717E2588 /* IQKeyboardToolbarManager.swift in Sources */, + B3563172CE8252B7C899749ADDFAEA75 /* IQKeyboardToolbarManager+Action.swift in Sources */, + 178566C64EBE62048DEC6A78AD16FA25 /* IQKeyboardToolbarManager+Debug.swift in Sources */, + F810AE3623A69FCCC158A5C1ACBF6439 /* IQKeyboardToolbarManager+Deprecated.swift in Sources */, + B79256A42976EC65C45648B7AE06478C /* IQKeyboardToolbarManager+Internal.swift in Sources */, + 3B14F5D1436DC56A3F2D4A4ACBEA8197 /* IQKeyboardToolbarManager+Toolbar.swift in Sources */, + 25CCA7DB92870A0E9B9DB81FE7CC635B /* IQKeyboardToolbarManager-dummy.m in Sources */, + EB61F13974AEAAE5ACB6CC669D8F6D2A /* UIView+Responders.swift in Sources */, + 64CC18C8B38278628CCA1B8D4E0631DE /* UIView+RespondersObjc.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 11A34DDE224D2836079EABADCD8A8E04 /* Sources */ = { + 16593F496A72F1F2DCBBDD63B5268EEC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -12534,13 +12906,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 25FB831060853C6D988172BD51F4B7DD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 278C7A12D835C4C502449CF69C17FAFD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -12604,6 +12969,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2941C4E22687863CE625E6A88386A22A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 29A404AEBCB50A3F5BB3DC929EC993B2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -12654,35 +13026,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 347E0C664DDF370093C3E30925757EC8 /* Sources */ = { + 3B52A5A8596F88A8BFD84799F2875071 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 39049C2CAC5FC1ABE0794D667C168BDF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 39067DE68C862D6B997E0441CCF512B0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 39C0DE2BF57DC4E328FDDA370CDB05D2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3D5797597F20D575447F0E4DBF2DEE3B /* Sources */ = { + 3E86D5855CF181CDB972E342F4E02FFE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -12764,14 +13115,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 413BD44DB0856D8E0358F350768D70B5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4156DE582C2412C01D011A772DA02929 /* Sources */ = { + 46B69E7E6B89A55EF747BFA0FC4F54E9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -12819,6 +13163,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4913C2F4121E1C16187D360E215881B2 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1ECC492499B186A4611E3D985575810D /* IQTextInputViewInfo.swift in Sources */, + FAF3BC700D71378A541CE1492F3EC355 /* IQTextInputViewNotification.swift in Sources */, + B714E9245E38008BAE86E8DCE9852153 /* IQTextInputViewNotification-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4C6D39C725B13E768A35C11599741CC9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DAE3C50192F194E9C9261FE8E2D6747B /* IQKeyboardReturnManager.swift in Sources */, + A105754189EF99CFFEDEA8CCBE60D0C9 /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */, + 4A63127B68DCC325FBEBB78896FAE6F9 /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */, + 5CBD3F3DBA3661CCDD103364E799A352 /* IQKeyboardReturnManager-dummy.m in Sources */, + 74304A8524CDF980583FB8550F47990C /* IQTextInputViewInfoModel.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 4E5AC6866184730E513746251F871B4D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -13106,193 +13472,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4F27EA5776A48D0363ACB688FFD4C68A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F3F1ABE78283E64572B46B6F2128961 /* IQTextInputViewInfo.swift in Sources */, - E56D42E6D9C9787C503C0D041B375E64 /* IQTextInputViewNotification.swift in Sources */, - 1F39EA6FC15C297E962E3F767D38B951 /* IQTextInputViewNotification-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 50ABD95842350CD3501B3D3065FAED26 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AA94FD545FBCB2D0659264C82CA6858B /* AddRef.swift in Sources */, - 9BA535D00043A9D52063EFEB813E6278 /* Amb.swift in Sources */, - 8D416D8997FCE1C4EAAD230D39B817D6 /* AnonymousDisposable.swift in Sources */, - CEE6D85668589F0B8602190856BE1C59 /* AnonymousObserver.swift in Sources */, - 60FF5C656C2BF52195021D00816891E1 /* AnyObserver.swift in Sources */, - CA535DB1DBA1F7EE58FEC1A282360FF8 /* AsMaybe.swift in Sources */, - 90A5D35C6A35FE8B6FB2FAFAB8B8AEC0 /* AsSingle.swift in Sources */, - FE49F3F733B669138D1CF38BCD45AD15 /* AsyncLock.swift in Sources */, - B66E00F5B93F21B87D00BBFFED5D1E14 /* AsyncSubject.swift in Sources */, - 9ED92DDFDED091E3FB77221273D5F4E3 /* AtomicInt.swift in Sources */, - D60D3D1BA7E494175E719D674E43B0AD /* Bag.swift in Sources */, - 7EBDC64932A33B97DDA070B75EB2B6CA /* Bag+Rx.swift in Sources */, - B563C32EF8CF73F290ED561473CC681B /* BehaviorSubject.swift in Sources */, - FF13DFF525578FD22F7F4A077888317D /* BinaryDisposable.swift in Sources */, - 887ADED16D6F8697D2F654DBD6A24604 /* Binder.swift in Sources */, - 0D416C0305A0EC46EA7B9D44984DD1C1 /* BooleanDisposable.swift in Sources */, - 7B5D343693DDF40635B24CC18C1C1DE7 /* Buffer.swift in Sources */, - 3BFCE80D67EC884DB79E823496585DE6 /* Cancelable.swift in Sources */, - 4B7CDFB801A015F02E417F172C231CE9 /* Catch.swift in Sources */, - 736ED5555F3EB058898EDDA945932D0A /* CombineLatest.swift in Sources */, - 6EDA5B695F14F2B532938BE2674D05E8 /* CombineLatest+arity.swift in Sources */, - B7B1143A40E02A017FC3A5337E196138 /* CombineLatest+Collection.swift in Sources */, - CA140EEDBA04CCD8B9024CEC07C84A37 /* CompactMap.swift in Sources */, - 60981496CF43E012B912C4B93587F430 /* Completable.swift in Sources */, - AA01A57B3D11D35C946824DC7E089F2F /* Completable+AndThen.swift in Sources */, - 7BC2B90C110F500D157D106CC41446A8 /* CompositeDisposable.swift in Sources */, - AB132905D478C48DEBA0FCB05051BCDB /* Concat.swift in Sources */, - 5E763B6068F37F4DB3580ECDF4389146 /* ConcurrentDispatchQueueScheduler.swift in Sources */, - CE60029474DA7D27FF1CA1EAD1548E47 /* ConcurrentMainScheduler.swift in Sources */, - 1C830DDC3D4ED10535E1D569D66A6CEC /* ConnectableObservableType.swift in Sources */, - AB4DDF5983551D7BAD74FE07187972F6 /* Create.swift in Sources */, - 6B2EE580E51F236995465C1FD8569D3B /* CurrentThreadScheduler.swift in Sources */, - 27485CB5DD472CBEDABEF78CF9DD36E3 /* Date+Dispatch.swift in Sources */, - F565B4504B8C8973E4601219F9ADF461 /* Debounce.swift in Sources */, - B67EF56AA99C48A55752847C721D65F1 /* Debug.swift in Sources */, - E8BD9A6BB79FF25464A9330F76C98A16 /* Decode.swift in Sources */, - CD137CB9D84195D6986D97B2534AE8FF /* DefaultIfEmpty.swift in Sources */, - 234F0B1EC64D7CDEB732BDA103C452DE /* Deferred.swift in Sources */, - DEC54B892123D7FF8A5149EB54FC4BC8 /* Delay.swift in Sources */, - 33D7D43D9779D06D5F55880A00A62E63 /* DelaySubscription.swift in Sources */, - F4F179A948F1A7BA84BD8ED92E695A1C /* Dematerialize.swift in Sources */, - F8307D435C630DB434B2E8A74111B948 /* DispatchQueue+Extensions.swift in Sources */, - 639D0DB05E52760FCACD626490DEEA46 /* DispatchQueueConfiguration.swift in Sources */, - 7A070D739AE17B0FC405F435CECE8D21 /* Disposable.swift in Sources */, - 3B45281BBD9C7D268CE36BC6684CE690 /* Disposables.swift in Sources */, - 984AE6A5A39C7F95738C1D95CCABB10B /* DisposeBag.swift in Sources */, - 923384554D67DB88905E486CC081620D /* DisposeBase.swift in Sources */, - 7DF2E0F22556196056EAAF14AB93CC8D /* DistinctUntilChanged.swift in Sources */, - 4E501359489F2069549B20BD94BFA61C /* Do.swift in Sources */, - BE166E4649CBB47AD13D7ECE120B756C /* ElementAt.swift in Sources */, - BCDC570FFC8ECF182211F38D61380307 /* Empty.swift in Sources */, - AA1847AA96F3BD93538769D1690A750C /* Enumerated.swift in Sources */, - 092C1D4CE48DA5E626971772CA2B63FA /* Error.swift in Sources */, - 466F34329180AB2DF5EFF9BCB5B918FE /* Errors.swift in Sources */, - F1305B8EDA84194160EE0DEF96C34D71 /* Event.swift in Sources */, - 1407DDEFD5573025A5DCF3952A155A14 /* Filter.swift in Sources */, - B25C3DEE88FEC6E44A1FEF8F655130A4 /* First.swift in Sources */, - B6C6293CADE3F065D6EFDBAFEDE7668B /* Generate.swift in Sources */, - 30B4C66BD3BF1A31240A34D540BB1362 /* GroupBy.swift in Sources */, - CCCF77F411C28C0C0D8B6624E4ED184B /* GroupedObservable.swift in Sources */, - A3B37F7F50CB1D300D0B4F6210406988 /* HistoricalScheduler.swift in Sources */, - 3A52295413184C31AEA430BE39BFC491 /* HistoricalSchedulerTimeConverter.swift in Sources */, - F8E8E69B9793E023EE993E71643F6071 /* ImmediateSchedulerType.swift in Sources */, - AE89340D37520E24ED75F2F2201263A4 /* Infallible.swift in Sources */, - 244C78EA225D2E2BD955913E5D38DBA5 /* Infallible+CombineLatest+arity.swift in Sources */, - 6DD7F06F6985BCC0F95AEA9472F1A304 /* Infallible+CombineLatest+Collection.swift in Sources */, - E533265B7ABFF5AB2789FC86D9D196FB /* Infallible+Concurrency.swift in Sources */, - 5063AA402AA20EC46563AE952E480024 /* Infallible+Create.swift in Sources */, - F6DF025C22FF018660D118246782C306 /* Infallible+Debug.swift in Sources */, - 07B21EEE77A36892011309491EB2EC0D /* Infallible+Operators.swift in Sources */, - EF9E5345DC68B0E0FC147DF15276541A /* Infallible+Zip+arity.swift in Sources */, - BEE2FE4E2322B71556DF0C94E641E84B /* InfiniteSequence.swift in Sources */, - 61FD73CF8706BCE3BA5A3A357A15C35A /* InvocableScheduledItem.swift in Sources */, - 373D6A9E56AA0F29E9366CBF901182BD /* InvocableType.swift in Sources */, - 192D402166F9E726D8BFFDAB9F7A1686 /* Just.swift in Sources */, - 40C349CDD3EC5451B78A19F15951D94B /* Lock.swift in Sources */, - EC36C29D705F45E956A16F0E3C8A0D2E /* LockOwnerType.swift in Sources */, - 03760AC656BC11C388DB4824EAF3EFF8 /* MainScheduler.swift in Sources */, - ECCA7267997F18C0714C7632CC54AA1B /* Map.swift in Sources */, - CC9889C11425435533883AC0C244153A /* Materialize.swift in Sources */, - 994DF47F20CED7B2C71E7F748972EC3C /* Maybe.swift in Sources */, - AAD885901A99D6AE01C8DBDB90C5C979 /* Merge.swift in Sources */, - D02739628E3C87FA50F6BC94BD08C6DD /* Multicast.swift in Sources */, - 5B9D821848443B273832F8F3FFFB6EF0 /* Never.swift in Sources */, - 84B31F08AD0AF1654F0FD7EB6D1E4F7A /* NopDisposable.swift in Sources */, - CB16D0B14DC2C1B1600F20B5AA3A7249 /* Observable.swift in Sources */, - B3EC3F7A87EF3C63DE72D179C82CBA3B /* Observable+Concurrency.swift in Sources */, - 08A74961FEEC9A18DF39B2D15B0FCA03 /* ObservableConvertibleType.swift in Sources */, - 66C2FC73A91E265FA5A09F2D0B99EAF0 /* ObservableConvertibleType+Infallible.swift in Sources */, - C06E2597B414ABD8F769C8BE7E132DF3 /* ObservableType.swift in Sources */, - 2865DC1A7B133D7BE1C40975DFFA1D9D /* ObservableType+Extensions.swift in Sources */, - 97BA4EACB3823937158991C170924719 /* ObservableType+PrimitiveSequence.swift in Sources */, - E526D55AE9365CCCFBBE86334C17765F /* ObserveOn.swift in Sources */, - B29AC86CA5B5F21AB3E41AA9B62E712D /* ObserverBase.swift in Sources */, - 48EF9CCCC09C2E3B18C2F501CEBD51CE /* ObserverType.swift in Sources */, - B81BDE79894EC150074DDE2B45B32093 /* OperationQueueScheduler.swift in Sources */, - 29BBECE17A90C0CE055D94D4C7DC96A1 /* Optional.swift in Sources */, - 06BF9E1DE98B5299648D75DE99246159 /* Platform.Darwin.swift in Sources */, - 5660010A63B9E5190FB3BA0723C83E79 /* Platform.Linux.swift in Sources */, - 3CBACCA82BA8E1759650E3B16B528644 /* PrimitiveSequence.swift in Sources */, - 1A98401B81923265F3F2F1533C629044 /* PrimitiveSequence+Concurrency.swift in Sources */, - 0A7047F9F316230DC3D91A5506FCC0CA /* PrimitiveSequence+Zip+arity.swift in Sources */, - 5690E7733755EF537CD50961C703850B /* PriorityQueue.swift in Sources */, - 1FAC5166DD3165E52DAACE50A194AE9E /* Producer.swift in Sources */, - 3CEE5E31CF080561F8A0089BBEABB799 /* PublishSubject.swift in Sources */, - 1CBC86CE3D92034C0EFCB7E717132C29 /* Queue.swift in Sources */, - 1F78DE9E7ACC9AC18383BDA3886A4320 /* Range.swift in Sources */, - A44ED4475C4343EE970814D8508A6490 /* Reactive.swift in Sources */, - 0543AA6007B40C505F972E8DFD40D358 /* RecursiveLock.swift in Sources */, - B048B31836F1E5A82AE520ADD74580AB /* RecursiveScheduler.swift in Sources */, - 3575A2E218096B1FD9A1B2B0C6DD40D6 /* Reduce.swift in Sources */, - D2D85A3965444DE82DFACDAF2DC42D19 /* RefCountDisposable.swift in Sources */, - BBBCA687743C57954AF34D4FA17B0CDD /* Repeat.swift in Sources */, - FB0003B2A4B996A99C9116360F2BEE27 /* ReplaySubject.swift in Sources */, - A75A9CEA5A4788D0651D7EF895679CFD /* RetryWhen.swift in Sources */, - 18B278264A1FE87940BBC5A97028513D /* Rx.swift in Sources */, - 58B0006E1FCE48DFC522984B42C5DCF4 /* RxMutableBox.swift in Sources */, - 3EE9B9682282E58E0A840A84AB68748A /* RxSwift-dummy.m in Sources */, - EB108AC1D4E177FFF0A53ED3DEA2E6C9 /* Sample.swift in Sources */, - F221720C4421A60C3DEF3A92BF089996 /* Scan.swift in Sources */, - 4196A92234E9891D925A38B979D302E2 /* ScheduledDisposable.swift in Sources */, - 7C25A19B6C5DFE20A5A04612709550F7 /* ScheduledItem.swift in Sources */, - 71B9937590A242996BBC55C011041FD7 /* ScheduledItemType.swift in Sources */, - 37C01DDF19DA22727830A62998953BBB /* SchedulerServices+Emulation.swift in Sources */, - A4D7ED63C57E58316780D9AC735C680F /* SchedulerType.swift in Sources */, - 6CB9E2AE85D2F366B426D4BE356944DA /* Sequence.swift in Sources */, - 53B548F8E57FD5BE02ED598FCA44BC30 /* SerialDispatchQueueScheduler.swift in Sources */, - 21F6EE314B4240BC580A3DC7A29F23DB /* SerialDisposable.swift in Sources */, - E54A7350798B1D45616E86D64DCAD262 /* ShareReplayScope.swift in Sources */, - 400A9256A6CFE77C0378869D44825DAD /* Single.swift in Sources */, - 80AF897681B86918BCC4B85FD2676530 /* SingleAssignmentDisposable.swift in Sources */, - FE26082B37D32FCCC7AF3B02DF050AE2 /* SingleAsync.swift in Sources */, - 38755BDFD20CBF8C82F5380B3FFA9249 /* Sink.swift in Sources */, - 2DEE9D67E280C52847E66A1B4431FED7 /* Skip.swift in Sources */, - BD0554EA3BE2DF1255C6EE1ABFE654CE /* SkipUntil.swift in Sources */, - ADD657BDD83FC569FE0749205901878B /* SkipWhile.swift in Sources */, - A4F402526B013CC1222E2324F7AB2DFB /* StartWith.swift in Sources */, - CA1CCD9DEB99136EDB8B3D33285BC802 /* SubjectType.swift in Sources */, - 31B55ABBC6F62FCE46A58D54F2298062 /* SubscribeOn.swift in Sources */, - CDD07E44801C6B18EC5FA656DE04091E /* SubscriptionDisposable.swift in Sources */, - 9E43D3C06CF64AEB62E7122847C15FAD /* SwiftSupport.swift in Sources */, - FD6A4D15488DF30A0CEA0373B9DE595A /* Switch.swift in Sources */, - F94434836BDCB67E50B82B9C0650D230 /* SwitchIfEmpty.swift in Sources */, - F652E53724373209F47D3B4A7D2A6556 /* SynchronizedDisposeType.swift in Sources */, - D75BC36D268EC4D6E1493FC5B6E5F329 /* SynchronizedOnType.swift in Sources */, - 89B8DCB992493D64C31D0F2319C85CF2 /* SynchronizedUnsubscribeType.swift in Sources */, - 5C8FCF7192997E76A80BE80032A6736D /* TailRecursiveSink.swift in Sources */, - 3046A808080A7F90F3D3629B3CDCDA32 /* Take.swift in Sources */, - 16193C8B78D3C682E0C526D1DB17AD35 /* TakeLast.swift in Sources */, - B863E4ECC1232754CF9ADC11898A8259 /* TakeWithPredicate.swift in Sources */, - 4830383EDD889CDDDC68FFC53004F690 /* Throttle.swift in Sources */, - 7E478F8BBF9619E0B9E7B6F12A292C27 /* Timeout.swift in Sources */, - DD907809DEEA2C3EAC6FA3F150AB9893 /* Timer.swift in Sources */, - 38C2517BC6611A88A77F119A3753513E /* ToArray.swift in Sources */, - 7A5F65ACADE9EDAD0E8D456AF59DB812 /* Using.swift in Sources */, - 4179AB2B4A01BF417368F2BBADAAB744 /* VirtualTimeConverterType.swift in Sources */, - 49197254BF19DFC61F1B0B0D870092F2 /* VirtualTimeScheduler.swift in Sources */, - DF4BD662CEA133642C134CD18C65CD4F /* Window.swift in Sources */, - 254CE2A3C57933C285803C1241806765 /* WithLatestFrom.swift in Sources */, - E00FCA3D1D8EB62A399FC73F0095E0E8 /* WithUnretained.swift in Sources */, - 9983957076323822F4C0A8EA4CF352DE /* Zip.swift in Sources */, - 4A48CC2202F5719ADA9F539879538771 /* Zip+arity.swift in Sources */, - 691D7ABB712F2F5760FE1544D911B304 /* Zip+Collection.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 50B57A4B4C432838C27154E4075204E2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 54A12BF6EE4CD8A352F6AFD2C2786339 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -13302,31 +13481,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5617F9353C3A30E22C044791BBAADAB3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 55A43F0D93A06F06A446F0053DCD085A /* Pods-QuickLocation-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5657F5827C3348B57780F212BA7104ED /* Sources */ = { + 575A5516E291354D4BDEC321451B2DF3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5D7BB7090ECA84FF50BF60E73FC9B09F /* Sources */ = { + 587DD1DB8F7D5493853619236C13DE5D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 457561605827D2143B4C09C6D6974542 /* BehaviorRelay.swift in Sources */, - A5FD5A91303A2FB61CC314DEBF3CB08A /* Observable+Bind.swift in Sources */, - 616EE17920C59DD34B65912B4763C7A1 /* PublishRelay.swift in Sources */, - E04CDA04CEF8860A01D1C3FA4D3B96DB /* ReplayRelay.swift in Sources */, - FF2F4C8A0736554E74D67A727B7D7671 /* RxRelay-dummy.m in Sources */, - 780F45F347C399D58601EF11FA024C98 /* Utils.swift in Sources */, + FA912288DF25A87FEE76249BA2035A07 /* YYAnimatedImageView.m in Sources */, + 6C2B82F5D82AF2E6A5AE58529158BB1C /* YYFrameImage.m in Sources */, + CB5CD16304F7DFDE9E0F86D62CD707F0 /* YYImage.m in Sources */, + 30C51CA989B9666063FE1095581E93DE /* YYImage-dummy.m in Sources */, + B5467510620EC8C411023B2C49B040BD /* YYImageCoder.m in Sources */, + 3072B174CD0EE983BFECE8586173F397 /* YYSpriteSheetImage.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13360,7 +13531,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6EB6B062252682B121E3120653AF2BC7 /* Sources */ = { + 70BE4224601F75D96D377EDDB8084DAF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 71692A15AD05B88CD11C28F6DA73CF9B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -13378,28 +13556,190 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 77B92F3E962AB128EA18C60F9CB941BA /* Sources */ = { + 7D1E213D772FF9DBC51F426D48BF0C22 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BE05FF3437D5037E064F74C06AF9299C /* IQKeyboardReturnManager.swift in Sources */, - 523705FBA900D0965981AD85D57B2858 /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */, - 39FBB955C79378BA3C17AF80374A019F /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */, - DB7A88426F3F939727266BFD3AC87283 /* IQKeyboardReturnManager-dummy.m in Sources */, - 8E563B48B53CF54E65371203515A0D66 /* IQTextInputViewInfoModel.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 81F03CCECDA1FC18435042180C600368 /* Sources */ = { + 7E26ECFCDA20DC6B3FC07CDBEDF6A947 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B933657988FFD0044335D648936B6B3E /* YYAnimatedImageView.m in Sources */, - B7C4190C4B24D435ACDFF3495EBA2DC6 /* YYFrameImage.m in Sources */, - 2C0F8A44FFB8F67FDAB18E7E90950EC1 /* YYImage.m in Sources */, - 6A5917F884AA23BE533264DC2B0DEB55 /* YYImage-dummy.m in Sources */, - B5A43FD19F22727998A5D4EC2D146DAE /* YYImageCoder.m in Sources */, - 4C59782D5A1EDFE15AB92763993FD942 /* YYSpriteSheetImage.m in Sources */, + 5E0A53FFAB0FDFB5668859F6A2819F5D /* MGCDAsyncSocket.m in Sources */, + 5C57EE908FCC18769EBAF8A902DB2AEE /* MGCDAsyncUdpSocket.m in Sources */, + 1844AC03F7E1C318AC87DC505B3BE062 /* MqttCocoaAsyncSocket-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 872A47048D204F3DC75A059AD43414CC /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 86942D1BF6EBC7C2BA9EFB492E6AB186 /* AddRef.swift in Sources */, + 36EE04E8AA35610C63F5EF4B37C78E82 /* Amb.swift in Sources */, + 419E5FDF85188A7D1F31AF680884A125 /* AnonymousDisposable.swift in Sources */, + AB9078825EF42F1CF8E1865144AB3C09 /* AnonymousObserver.swift in Sources */, + A9506074DCA6117AAC10CCF38810EE3A /* AnyObserver.swift in Sources */, + D1BAD9273AE3CBA8BE215DD234ED0641 /* AsMaybe.swift in Sources */, + 3184604BA228388F115333291336137C /* AsSingle.swift in Sources */, + 9B10D0EE1A1B362C382D7C32790D5F2C /* AsyncLock.swift in Sources */, + EE802C27C64F90E925967D78FF074AE4 /* AsyncSubject.swift in Sources */, + F829965604C3B309269C43945D01AE6F /* AtomicInt.swift in Sources */, + DF8AE419C1126BF0783268F549EEBF29 /* Bag.swift in Sources */, + BB6E8486F92FCD3E177730B8E01D0BDF /* Bag+Rx.swift in Sources */, + 2DD150D77A9745899543093C3896972D /* BehaviorSubject.swift in Sources */, + 2F23C06874D2AAB852A93809AB216A24 /* BinaryDisposable.swift in Sources */, + E24632DE716A10A6D99CFA1A4F3E2FE3 /* Binder.swift in Sources */, + B77BBF03AA212B2E36FF222796FD5A65 /* BooleanDisposable.swift in Sources */, + 1FB7FE3D859627710638E47EAC61C2DD /* Buffer.swift in Sources */, + 838063855EB99B02E184DC49A4D1A2DB /* Cancelable.swift in Sources */, + 5F7A8BF1C3C7E701CA9E83A6A749E804 /* Catch.swift in Sources */, + 64B7F47DDA02615D2E0C7A26DD6761C9 /* CombineLatest.swift in Sources */, + 8584F672BB094EC9E50AFB6E4C8A686C /* CombineLatest+arity.swift in Sources */, + D2F85BB681E8EF92A4CCB24E4DF6A99C /* CombineLatest+Collection.swift in Sources */, + CC705BAEC85C20B0CEA4A15B6BB39DFB /* CompactMap.swift in Sources */, + 0C35E7376EC7CB317E82802F199A52C8 /* Completable.swift in Sources */, + 9321C9FC6EF91BA1E6DF974D0D8838CA /* Completable+AndThen.swift in Sources */, + A0DC59D2A58D5BD6F3700FFE3FC295A6 /* CompositeDisposable.swift in Sources */, + C2FDEABCE0D089AF0E4EC0875D998E66 /* Concat.swift in Sources */, + 6E76E5E1CDE5A04EAEB9F75A173F24F9 /* ConcurrentDispatchQueueScheduler.swift in Sources */, + 80FF01F0BA48E8E5FAA6413ACEE166DD /* ConcurrentMainScheduler.swift in Sources */, + 5BBD386F448E2E822F0604BF7102FE17 /* ConnectableObservableType.swift in Sources */, + 04B759CD5C2C5F25319F9C5E8C2482F6 /* Create.swift in Sources */, + FB4D9D000306DEEF1D458A163B5F2158 /* CurrentThreadScheduler.swift in Sources */, + 86130A7651FCB9F51CA1A66E9DD48D34 /* Date+Dispatch.swift in Sources */, + 3F0A66D0F2A42BDE21605CE2F9A8145A /* Debounce.swift in Sources */, + 4F2C790A0B9ACC95B86C6639E6C5AF4E /* Debug.swift in Sources */, + D82846F53EF89ECC62238779ED046B72 /* Decode.swift in Sources */, + C9CE59309EABFDA10F864CDBB91465F1 /* DefaultIfEmpty.swift in Sources */, + 58F7ADFE261DB23CBC1E99AC29AB8A0A /* Deferred.swift in Sources */, + 3FB47B714578990577C9B1CC85DC0D0C /* Delay.swift in Sources */, + A256118BC48CDEE51725AE00BA7352ED /* DelaySubscription.swift in Sources */, + 91057BB30A6A21F670FACC5D492C2447 /* Dematerialize.swift in Sources */, + 25EBA3F34C0061382B844D4A9E3B464D /* DispatchQueue+Extensions.swift in Sources */, + 692B37D44CF7B495DD9E1FE3177692D3 /* DispatchQueueConfiguration.swift in Sources */, + C172FA436525F74E81209875947595E7 /* Disposable.swift in Sources */, + 56DFEB02ACCD64F2C2CFCC01747627D2 /* Disposables.swift in Sources */, + 996ACA07E398381E297FE2D20EBAEAE4 /* DisposeBag.swift in Sources */, + 37204DA94E4713CB9F6C97D3C684BEB3 /* DisposeBase.swift in Sources */, + 40CCAE7CC10932034F8BDBDB11A060B6 /* DistinctUntilChanged.swift in Sources */, + 825F44C02EEFC300A58BBDBD1B82A017 /* Do.swift in Sources */, + 88A6155330CCF69524EF9DDBD69E1B9A /* ElementAt.swift in Sources */, + 75A2501E025111DF48E6662F4C8163F7 /* Empty.swift in Sources */, + 5840C6FBAEEC15A7F3D89435C73AF6B7 /* Enumerated.swift in Sources */, + 0C1FEB6DDA1E3DCA294E91970EF70979 /* Error.swift in Sources */, + 942CE6472FD49042B9F22A946D86FF26 /* Errors.swift in Sources */, + 210D4C72506ACFDA3F5129966DA002BB /* Event.swift in Sources */, + A42B44517A3A60DA308BA03F12A2EA92 /* Filter.swift in Sources */, + 65B58399187958BF83B8D7AE27101FD2 /* First.swift in Sources */, + 7F053BC4BC544FBA247828C7DCD7D280 /* Generate.swift in Sources */, + DC88CAC3EBDC2E67DA5975EF610F3BB1 /* GroupBy.swift in Sources */, + 6B8B861CEB17FF5AFE9600DA45E45915 /* GroupedObservable.swift in Sources */, + 3642914BB58CFD81FBBF88BDA48A0170 /* HistoricalScheduler.swift in Sources */, + D78090BCD2C27C2F0755E5F2075AD714 /* HistoricalSchedulerTimeConverter.swift in Sources */, + 8A52D7C8D989FC845E323308C4A87D71 /* ImmediateSchedulerType.swift in Sources */, + 83B53ADB64DF7A2B6C7C51EDF92B44D7 /* Infallible.swift in Sources */, + 97D740C37BC4DFC9691E9C6EF64B89A1 /* Infallible+CombineLatest+arity.swift in Sources */, + 7DAFFE9CA919E4087289F8A68C971020 /* Infallible+CombineLatest+Collection.swift in Sources */, + E121B3FC7EB8A408935C0B5472538F7A /* Infallible+Concurrency.swift in Sources */, + B2840774DED49F3FA2E50D1F47964C60 /* Infallible+Create.swift in Sources */, + 0A2B07F68FFDEFF49FA6F165DF5B4123 /* Infallible+Debug.swift in Sources */, + 6925B90AA3C1D38A83202C2609F7C3F7 /* Infallible+Operators.swift in Sources */, + A3CF3A4EB88976FB0D5E989B4ED85C55 /* Infallible+Zip+arity.swift in Sources */, + 94193840525CD2BF5B5FE96B133D211A /* InfiniteSequence.swift in Sources */, + 9A4ED09FF5F6C42B302E97D7BFFB5541 /* InvocableScheduledItem.swift in Sources */, + 9EE5156B6860FA93358E2C0CD9990E43 /* InvocableType.swift in Sources */, + DFB334203FED63EDC52845F9A5914BB0 /* Just.swift in Sources */, + EAACC631D5814C48D008FBBD53E8D0DA /* Lock.swift in Sources */, + E6A94ADADA07E8F62C0671EDE148188D /* LockOwnerType.swift in Sources */, + DFE529F0C85C10EF361F62017D722E76 /* MainScheduler.swift in Sources */, + A72E718765315BFF3AF34D284006DE99 /* Map.swift in Sources */, + D13238323C808103383280B48D9FF833 /* Materialize.swift in Sources */, + 5D18F9474E82C79D5CB94852FD2F2ABA /* Maybe.swift in Sources */, + F3580439D38601B6DECF01C92685C9D0 /* Merge.swift in Sources */, + 76FB685C2887CB339EBE9C0A6E75120A /* Multicast.swift in Sources */, + 06B7908CB9299B647356E5A19711B03C /* Never.swift in Sources */, + 86DD4292A20CC25944BDB99A7FF0C10E /* NopDisposable.swift in Sources */, + DD95B3D71392B724B2ABC3911B276D8F /* Observable.swift in Sources */, + 4D0444BAE8369211DADB3376A38089CC /* Observable+Concurrency.swift in Sources */, + 1CC49A9BD8554882D499AFC657485A76 /* ObservableConvertibleType.swift in Sources */, + A875ACCA7ED41CD1D12921290A386F5C /* ObservableConvertibleType+Infallible.swift in Sources */, + AED546D422103E6E622C110FB58913B6 /* ObservableType.swift in Sources */, + 3160A07FF7E8C76646BBFF324589BF9A /* ObservableType+Extensions.swift in Sources */, + 419BEFA58C93F82128B3EC673B8B2808 /* ObservableType+PrimitiveSequence.swift in Sources */, + 72A04EB4528FFEE0D1E75AFFFB59159E /* ObserveOn.swift in Sources */, + B89593FC8F1FD6132EECE6FF20013CBD /* ObserverBase.swift in Sources */, + BF20215DA2E88848DEBB33D1A4CDBC32 /* ObserverType.swift in Sources */, + 1D4637E0811723E3A42D519DDFBC4ECE /* OperationQueueScheduler.swift in Sources */, + CEFB8766F48BC037AECEC6A62560BD29 /* Optional.swift in Sources */, + 82ABC39C71A5425186FD4FE82E721821 /* Platform.Darwin.swift in Sources */, + C2DDA326B57E522D0CDF88CE69827F18 /* Platform.Linux.swift in Sources */, + 4F43274487E91FBD7E03D86245E47A4E /* PrimitiveSequence.swift in Sources */, + BF60F24164C7F3F7FA05A86398D9D967 /* PrimitiveSequence+Concurrency.swift in Sources */, + 0C9FA288554B0A0C3CDAAC8DA720B362 /* PrimitiveSequence+Zip+arity.swift in Sources */, + 508EE05DC4635E416722BBFE86807E95 /* PriorityQueue.swift in Sources */, + 2EE30EFD051670E0930EEC564D982911 /* Producer.swift in Sources */, + 09896F9A54FE4E986FC9D2E62865266E /* PublishSubject.swift in Sources */, + B4DE36E030A0E5870E03A7BBD5B6701F /* Queue.swift in Sources */, + 74BAD1E9F4E576B92615C0600E2F851F /* Range.swift in Sources */, + 68F5FB238662CAE753DDBC9E7DA89855 /* Reactive.swift in Sources */, + 268008A236ED740E643732F35E784099 /* RecursiveLock.swift in Sources */, + 87E6581111DF30DAB6BE39E2C5B9A86E /* RecursiveScheduler.swift in Sources */, + 450C90D5EC2199F7C604D50B30FBFEF3 /* Reduce.swift in Sources */, + DDC0F60F4D6F186EF6DEA97F2B84107D /* RefCountDisposable.swift in Sources */, + A7B5DF43B0752729116087D9A68C052E /* Repeat.swift in Sources */, + E51A276849B087A22887CEF931F178C0 /* ReplaySubject.swift in Sources */, + FFEDCD03350E9C1FE968B273493B1375 /* RetryWhen.swift in Sources */, + D0FDD0434090177CD308ED76602AE455 /* Rx.swift in Sources */, + 9619919FD41DFBDB5760E158BAB8F295 /* RxMutableBox.swift in Sources */, + A60C37A57AF2C392F61D9CB30547C2C1 /* RxSwift-dummy.m in Sources */, + 4A5F51AA21766046600966A50BD6F533 /* Sample.swift in Sources */, + 632D509D4BB36A746609BBE86A643440 /* Scan.swift in Sources */, + 4FC8EEE68D5932ABDDFE2D0DCF8345CC /* ScheduledDisposable.swift in Sources */, + BD7649E3EC6317949AFC2234998F0F91 /* ScheduledItem.swift in Sources */, + 6D83B5DBF22DBDFCE140413476DAFA8A /* ScheduledItemType.swift in Sources */, + B1668CE388B75307E26FE3899736E5ED /* SchedulerServices+Emulation.swift in Sources */, + FC9A8A198E8D0DC593197CD949B7B722 /* SchedulerType.swift in Sources */, + 6628A73EB3F4DE1C02C8E057E9327BF0 /* Sequence.swift in Sources */, + 6795DC52B0A601D81E66EA32B743DFC4 /* SerialDispatchQueueScheduler.swift in Sources */, + 3E301C20B8B55E9D5F6300A134561BFF /* SerialDisposable.swift in Sources */, + D4F312B997FAF67C930BE4A29CF47CB7 /* ShareReplayScope.swift in Sources */, + 93AF8427CD5DBBE14C33946AB538F904 /* Single.swift in Sources */, + 738AEC4CC699BFBA787CFC9F4EC9B200 /* SingleAssignmentDisposable.swift in Sources */, + 8131DFF80EB0CFA6C572076DAB2F1473 /* SingleAsync.swift in Sources */, + 35A44C895BD9F20049CEA78E270DF27E /* Sink.swift in Sources */, + B7F113A612A1048CDC190D435D1F7CE1 /* Skip.swift in Sources */, + B924B23E166C657CD6799A9ED008E55D /* SkipUntil.swift in Sources */, + 1F3A35AA20200F882745D5FA8432730D /* SkipWhile.swift in Sources */, + 161AD6A1FD1567C9D48E62AB5A8BAB68 /* StartWith.swift in Sources */, + 6FD0DA95919ED8881B7F221D6A4D3B63 /* SubjectType.swift in Sources */, + 7446F81DD35C285BA22BC4DC085DF6AC /* SubscribeOn.swift in Sources */, + A7D3ED11692D0C8E94AB8FFC4EC4BDF3 /* SubscriptionDisposable.swift in Sources */, + 8F2FF92C2ACB7B2551DE8D9C8E26E204 /* SwiftSupport.swift in Sources */, + 32C22FD7A0748373999BFAC35C3AFC28 /* Switch.swift in Sources */, + 915C0D7BCA417AE073CCEC9CCB77A8BA /* SwitchIfEmpty.swift in Sources */, + 11046E796D234137C1BE618CD93B2C85 /* SynchronizedDisposeType.swift in Sources */, + 0E3CE3B0D20FE412F21CF712225E0259 /* SynchronizedOnType.swift in Sources */, + 08CA4F3040AC07A6F6E25FBF13A06EAD /* SynchronizedUnsubscribeType.swift in Sources */, + A20E40DEA40B323770F8419B508B828A /* TailRecursiveSink.swift in Sources */, + D97455C3D7C4CEDBE2EA90B79277BB72 /* Take.swift in Sources */, + C5E9BCA28405371331555210EB371571 /* TakeLast.swift in Sources */, + 19F02EEEEDC69DC212DE3BBE5B0FECA8 /* TakeWithPredicate.swift in Sources */, + 0A233373E480EC041044A3D3308E7203 /* Throttle.swift in Sources */, + DF2DA245F12E9DE9D36D5C96CBA0A0EC /* Timeout.swift in Sources */, + E0C9E5D8EE254CF424930A41843A57AD /* Timer.swift in Sources */, + 9AA1F63D85A53624D985D05569E80864 /* ToArray.swift in Sources */, + C00F636B88A0D45DDE34552361077A86 /* Using.swift in Sources */, + B52287026E457779C0D5D379252381D4 /* VirtualTimeConverterType.swift in Sources */, + B3D4D6744D0958B2ECA368B18B2DF24B /* VirtualTimeScheduler.swift in Sources */, + 083568CB5595DD405BCF2728104FB06F /* Window.swift in Sources */, + 45BA801435A315ACE712825F72606CAE /* WithLatestFrom.swift in Sources */, + F79A182CDB1C80A234555BE9A45C22E4 /* WithUnretained.swift in Sources */, + 0BA592B0168441965B0358B168955F32 /* Zip.swift in Sources */, + B79597B425FDD864097AB365CE8E43D8 /* Zip+arity.swift in Sources */, + 79DA3D113B320B60C456019C2270CFB3 /* Zip+Collection.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13418,6 +13758,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 894E07E0B8F5D85643A8FC94E64FE049 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9400B106AABA16ADA26500471725C19E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -13430,16 +13777,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A2F44179063046C06A348D012B5D9DBC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D904C2369FD78185284B5B4125D2CF71 /* IQKeyboardInfo.swift in Sources */, - 3104E8F987B0D3FDB1106E49ED803A03 /* IQKeyboardNotification.swift in Sources */, - 242F4F563272D34C38C98D5D4F9F92F8 /* IQKeyboardNotification-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; A43FC2C1BFDC0FE2957688B876B318DE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -13449,13 +13786,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A47F439B8D061FAF926B29A112E34AF6 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; A5AB37013DF74851F84970D0B8D3043D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -13474,7 +13804,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AAF72206400F9816CEECD411989FA0FF /* Sources */ = { + A8D891EB4676BA49A7DE130898522C2D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -13522,13 +13852,89 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BE584699783D4EFA62AAE2E14CF198D0 /* Sources */ = { + B1A34CED0B05549FB1A36F61C44D0DE5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; + B2A31197323F230D6200DFFF253D9F8F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E713EB139B0B6B2F9BB463A2E13B583F /* IQKeyboardInfo.swift in Sources */, + 20457FA9C1E51F32C3B2F8A5821B0ABB /* IQKeyboardNotification.swift in Sources */, + 16E02FAE9A06528993720ACF5F7680A8 /* IQKeyboardNotification-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BB2714530DE387EE457ABD49CD4A5789 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + F05192CEB06CD70D1D3E8ED9E4B7C15F /* CocoaMQTT.swift in Sources */, + 57AD313741969102750AB3CB3976BC97 /* CocoaMQTT-dummy.m in Sources */, + 01461285DFE546C71E99B49A3BF32601 /* CocoaMQTT5.swift in Sources */, + 3D80D0457EB3BF7D449CA995F30CF2CA /* CocoaMQTT5Message.swift in Sources */, + 7E105C0F1C97F0A9E8482988E078FDA9 /* CocoaMQTTDeliver.swift in Sources */, + 8690DEC4B00EC34DC177644594F02817 /* CocoaMQTTLogger.swift in Sources */, + 30617D7947DF3FBD9154F1CA87D3DBEE /* CocoaMQTTMessage.swift in Sources */, + 4501636244237C850616353EBD1C8189 /* CocoaMQTTProperty.swift in Sources */, + F5BCEAF07494B8EE4407A4048C70170B /* CocoaMQTTReader.swift in Sources */, + 7A271B71FDDDC1BC3FF970EDAD5E98C4 /* CocoaMQTTReasonCode.swift in Sources */, + 7CF2A972F2443BD1B774F8330E12FE50 /* CocoaMQTTSocket.swift in Sources */, + 8B194760C4583AB3D5E17DB95679E3F6 /* CocoaMQTTStorage.swift in Sources */, + 82DA7F3D5A287251DB25A4FC3F19FC93 /* CocoaMQTTTimer.swift in Sources */, + 909C544B79175483251BC46FB225BEBA /* CocoaMQTTTypes.swift in Sources */, + F2E5A6404AB84C1417F31C076A0EA8F6 /* ConcurrentAtomic.swift in Sources */, + AFCA288AE0DE819FE6CE288067C9A82A /* Frame.swift in Sources */, + 7D3F42BD41F124E613A70A09171C6DAF /* FrameAuth.swift in Sources */, + 9542BC97F490CB6D4671C68776DC2B9A /* FrameConnAck.swift in Sources */, + 43D84EBCE8220F637D8BE1C473BF9188 /* FrameConnect.swift in Sources */, + 7EAA83C312561AB4317FD6C58187AEFB /* FrameDisconnect.swift in Sources */, + 9A64AA527A1156361FEFF89E58AA8A43 /* FramePingReq.swift in Sources */, + 82DDB13ECAAF4BC08A115696162BED6A /* FramePingResp.swift in Sources */, + F39AB662CDC4C299D4B1737519E106C7 /* FramePubAck.swift in Sources */, + BA76235961947F402695F8A346265B6C /* FramePubComp.swift in Sources */, + D0D8EAFBEAEE4B82131FD5FB9AE6D236 /* FramePublish.swift in Sources */, + 0B0A3A1044D081A95821B26BF0C69B68 /* FramePubRec.swift in Sources */, + E2EA5D15C15D16580E4A7FCC41694567 /* FramePubRel.swift in Sources */, + F4A703B0312FA076FEFFA31444B8FEE6 /* FrameSubAck.swift in Sources */, + 4431DB7D2739D4D1701F63BA42F1ECC5 /* FrameSubscribe.swift in Sources */, + E82B4F97BB52300AF382AC4E2E2A3A1E /* FrameUnsubAck.swift in Sources */, + 5E558455B862C4CE21399D45C2CBC479 /* FrameUnsubscribe.swift in Sources */, + AF2ABE6FDD3F70320024969E414C97AD /* MqttAuthProperties.swift in Sources */, + 50E0B8B52F6C012C647A877DE161AD0B /* MqttConnectProperties.swift in Sources */, + 92F619B07D3D91F74CDA3CA4B000807C /* MqttDecodeConnAck.swift in Sources */, + 47F8811B5427A0E93A230232C573B68C /* MqttDecodePubAck.swift in Sources */, + 5E1CD661F9FC277B7E32DA348FE0DD1F /* MqttDecodePubComp.swift in Sources */, + 4063405C03CCB96E39645F8F991E75FA /* MqttDecodePublish.swift in Sources */, + 41EAB079E787B4FA6866FC48FC7D187B /* MqttDecodePubRec.swift in Sources */, + CF34C51C73AB57E0A296EB54D516C0E4 /* MqttDecodePubRel.swift in Sources */, + 4B1C0A08511CD18328B7AD065B6447F8 /* MqttDecodeSubAck.swift in Sources */, + 5C577E5C5D13313BF4E90DA27CCE1BFB /* MqttDecodeUnsubAck.swift in Sources */, + 9162EF894ECC79E2524927E8EDD3A5F6 /* MqttPublishProperties.swift in Sources */, + 8AE640439F0C94295E509ED320B648C0 /* MqttSubscription.swift in Sources */, + BB9663727F1154B67FE78531F9D27411 /* ThreadSafeDictionary.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BBAD2C14A04F3915F9568482BFC47E26 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BC407DD2244E3D84B04992F1E0D8BB1B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + EC0833ABBB33BA7F6160B0BF17F11097 /* Pods-QuickLocation-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; BF6F1816B0325207E7310ABC9FD05174 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -13541,96 +13947,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C27D4907B15A73D8EA10928092B172A8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9B81AAA7E1947A2A38DC7CDFD27B76D5 /* IQTextView.swift in Sources */, - 73ED4CAB43E4753F59CF2291BC5242A0 /* IQTextView+Placeholderable.swift in Sources */, - 19449EF5B493DC41104B6ED4B6DBB907 /* IQTextView-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C543215097EDF2FAA2CFBEC2ED4FF0A4 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 36F5B11E0F51C1CAEC8E3BF3BD1397F7 /* NSBezierPath+SDRoundedCorners.m in Sources */, - 3C0A41819F84BC2C7B8BB720B11299F7 /* NSButton+WebCache.m in Sources */, - AA28F4A2C9F5993AD2085D8F3D0A4366 /* NSData+ImageContentType.m in Sources */, - 11C45A1CC537C7E9935BA352E85D1FED /* NSImage+Compatibility.m in Sources */, - 1296188B598424BFCB3A8F6EAC649A86 /* SDAnimatedImage.m in Sources */, - AE745A25F12D4918404C5ECCE439FC2A /* SDAnimatedImagePlayer.m in Sources */, - 02F91E3C48D92BE962A7748A6788CD6D /* SDAnimatedImageRep.m in Sources */, - 717812EFCFB61B9D6A80AE866FECA714 /* SDAnimatedImageView.m in Sources */, - 6FB928F2C18CD7FE791401D03C22E042 /* SDAnimatedImageView+WebCache.m in Sources */, - A2144AB5DA94A4BDA2253B25CC069E3C /* SDAssociatedObject.m in Sources */, - 87BB8523D2E944F3AF973ADCF6AE6898 /* SDAsyncBlockOperation.m in Sources */, - 1F14E7B047EF0704D6AEC1C2DCF78B1C /* SDCallbackQueue.m in Sources */, - 784EC876ED7D0E61BA1D1D5B6FC080D3 /* SDDeviceHelper.m in Sources */, - 6B4F5C299432BC6D39F216FB1956F526 /* SDDiskCache.m in Sources */, - 9F8FD4529C610082745C8C7B1F1961F4 /* SDDisplayLink.m in Sources */, - 6B9ED16B62C85179D15C9568D602B72E /* SDFileAttributeHelper.m in Sources */, - 75531B73D5F39CB3C311AF4E73A2C893 /* SDGraphicsImageRenderer.m in Sources */, - 45A339515879815775B83A75319AB77B /* SDImageAPNGCoder.m in Sources */, - 0633DE475D1D557CF95B89721060EA76 /* SDImageAssetManager.m in Sources */, - 6376D1EF42AD00D03711B680B2986CEB /* SDImageAWebPCoder.m in Sources */, - DD57E9FEF4EC5F5CD871D642F1EEDDCF /* SDImageCache.m in Sources */, - 6FBC34FC7F89A9E1E79E967EE0633A31 /* SDImageCacheConfig.m in Sources */, - 2D3ADCFAF670D6C9816369F7ED3B7696 /* SDImageCacheDefine.m in Sources */, - C37E014356FAFD96EF5488586DBD6E11 /* SDImageCachesManager.m in Sources */, - B14EBD76B590189B2C83A6EF963D822A /* SDImageCachesManagerOperation.m in Sources */, - BA2133874033B6E2A7DB5F7900DBFC00 /* SDImageCoder.m in Sources */, - 9957F0F1B355B8E1F8FAA917159E9199 /* SDImageCoderHelper.m in Sources */, - 3D250F9BEE59C2068C1A82261A3F5BFD /* SDImageCodersManager.m in Sources */, - ED09C58E7663659728CE656A647A65E8 /* SDImageFrame.m in Sources */, - A57E2091853F8D22158738D995DE6946 /* SDImageFramePool.m in Sources */, - 8780C16C073E1E6CBC8FC372F0B224E8 /* SDImageGIFCoder.m in Sources */, - 954A8A86B59625A40BF76D00D8864C8F /* SDImageGraphics.m in Sources */, - 8A9497651A0DB613191F10C6FCDC5D0C /* SDImageHEICCoder.m in Sources */, - E5EF977D40793FCCFDDF4CDC7E2BB865 /* SDImageIOAnimatedCoder.m in Sources */, - 794F87F9E0A8E4DCCF52A73F1BC75428 /* SDImageIOCoder.m in Sources */, - 0ADC968298C0D9A1089DF880985DBBAD /* SDImageLoader.m in Sources */, - 8A779C3BCF19D53FEFC5BCD0C2EA0494 /* SDImageLoadersManager.m in Sources */, - B899D80B7E9444646D3EBF6B0084CBB1 /* SDImageTransformer.m in Sources */, - 3A75B3C179F71755659842A0DA8C538B /* SDInternalMacros.m in Sources */, - 6587CF9B280E8628F362B44853AE36CA /* SDMemoryCache.m in Sources */, - 66BAA48E3E4563168EAF3C8E48CDFE4B /* SDWeakProxy.m in Sources */, - 7139F90D349424DD12EE4D4374EBBC08 /* SDWebImage-dummy.m in Sources */, - 8274C142B267ED628A56BE49ABC1AB42 /* SDWebImageCacheKeyFilter.m in Sources */, - DF9B34E19C0F13BCFA58F0DBB348E008 /* SDWebImageCacheSerializer.m in Sources */, - 87A86EA4BAA4D59D66A45DF0E43392CD /* SDWebImageCompat.m in Sources */, - A0B03E2E8B1952B3B64E2B26970089BD /* SDWebImageDefine.m in Sources */, - 9C975B2F72D067FD855FC9874F45A40C /* SDWebImageDownloader.m in Sources */, - 021063C8698125D953F5706AABD452C2 /* SDWebImageDownloaderConfig.m in Sources */, - 815F81676EC04CD9DEB40AD4F7B019F6 /* SDWebImageDownloaderDecryptor.m in Sources */, - 4A1C800E8FC186756C783A3AF0CC2144 /* SDWebImageDownloaderOperation.m in Sources */, - 72B3AFC351B26D4D98EC25F8E5B789F9 /* SDWebImageDownloaderRequestModifier.m in Sources */, - C08BB02A69A559B80327D76DE7B45BA1 /* SDWebImageDownloaderResponseModifier.m in Sources */, - A8A6C9D9D8B65ECD3056C232B62D70D0 /* SDWebImageError.m in Sources */, - FD71872BD2972EF642FFF461F16B2BBD /* SDWebImageIndicator.m in Sources */, - 16CF11A7B684AFF2F7B389CF10EF0EDD /* SDWebImageManager.m in Sources */, - CBC092378ECE1466F7B48E7DA94E8F32 /* SDWebImageOperation.m in Sources */, - DA2766F1FE150D6B0E5FF6559675F9C1 /* SDWebImageOptionsProcessor.m in Sources */, - DBABCEDF64733C48553D3A417B869E4E /* SDWebImagePrefetcher.m in Sources */, - B325D41B7CB98EDA508C0F99AF0531E9 /* SDWebImageTransition.m in Sources */, - CEED6F206BAE30C78F98B47385609688 /* UIButton+WebCache.m in Sources */, - 5B3923C137072003EBEBE7E027F56CDF /* UIColor+SDHexString.m in Sources */, - 0AE6E0A416E18503E36FBDB73A7EB31F /* UIImage+ExtendedCacheData.m in Sources */, - BD867501B9A45D71635E695B52E57BC3 /* UIImage+ForceDecode.m in Sources */, - B27EB3E83EEF095CC2ADD635BFED1F2C /* UIImage+GIF.m in Sources */, - E9EF657E848E7B326050E0C9540BE483 /* UIImage+MemoryCacheCost.m in Sources */, - BE3D084BFA4E05F1BEB1E1B5264C965D /* UIImage+Metadata.m in Sources */, - CEE4E58F8C30B928A9CB1C045F169211 /* UIImage+MultiFormat.m in Sources */, - 010225CF66F664A19FA67E883D0A5BA6 /* UIImage+Transform.m in Sources */, - 3EF94128EE7E7397C5967A23C565ABD6 /* UIImageView+HighlightedWebCache.m in Sources */, - 0A58664142EA2685FD6FE2DF0AA0FBC6 /* UIImageView+WebCache.m in Sources */, - A1E29CD112385C90E29DDEC573E9CF44 /* UIView+WebCache.m in Sources */, - A58136C9566B2242204F3F8EA3CD8D48 /* UIView+WebCacheOperation.m in Sources */, - 150AE9D9823A639C27DC66D0421797FD /* UIView+WebCacheState.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; C5A04BFF58C046FE4DC97E201B78F311 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -13795,137 +14111,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C672A28881304CE3555816F1C4553B1E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 61A1702C9F4291517E87A0B355B4AD4E /* alpha_dec.c in Sources */, - 31C92344565509BFA8F64CCAF193C78F /* alpha_enc.c in Sources */, - 8ABE12CC6EECE1DD6B2F826F04FD4BD2 /* alpha_processing.c in Sources */, - 36DF23DE9EF12D0C9F3B4DA80D06AB42 /* alpha_processing_mips_dsp_r2.c in Sources */, - 5609ED912D598CD5AD61F2FE109423EE /* alpha_processing_neon.c in Sources */, - E23C5187D22F3D7207BF940BAE80EF33 /* alpha_processing_sse2.c in Sources */, - 045A49902242E7B3D70B9F988CA78AF5 /* alpha_processing_sse41.c in Sources */, - 54A157EFE2592F0C6D70550B88578C81 /* analysis_enc.c in Sources */, - 5093A747D64057EDB11E7C389C904A9C /* anim_decode.c in Sources */, - 89E36B8E42BD6542B8C8006612AB3163 /* anim_encode.c in Sources */, - 71394FEEC6AB26B0E6A4EF0A6ADC3EC4 /* backward_references_cost_enc.c in Sources */, - D5758BFED1514C39F76D3845AD320DC2 /* backward_references_enc.c in Sources */, - 301ED3D73C23F6A80BA38E30E05BAE44 /* bit_reader_utils.c in Sources */, - 34E9D5F556C832BE78D1074553F78F91 /* bit_writer_utils.c in Sources */, - 32AC044F812E57DA9C85C6E83D60EA1C /* buffer_dec.c in Sources */, - 0DE397C98C939B745F424A87A2B0F4C2 /* color_cache_utils.c in Sources */, - 2D3FA71FDBFCF6BDD341426D86C54F82 /* config_enc.c in Sources */, - A40C5F28F224D47644D6642B2515A011 /* cost.c in Sources */, - 6B1E9342D1D1B3FF6761973B54846C5D /* cost_enc.c in Sources */, - 8A8E0E33B81B3AB4930AABDED36097F8 /* cost_mips32.c in Sources */, - DC10982107A29E4A8626F5C720927380 /* cost_mips_dsp_r2.c in Sources */, - 8610B646ACB327434E1072AB24241FC7 /* cost_neon.c in Sources */, - C6E3DE7ABFB88E546E2A83435E48ED44 /* cost_sse2.c in Sources */, - 1C5DCB1C09DFE05047C4F73EA34A065D /* cpu.c in Sources */, - 66B954DE210240B6BEAE4194C864155E /* dec.c in Sources */, - 33F68809FB1FE1590E2414602781160A /* dec_clip_tables.c in Sources */, - D80112F19F528A1C41741B121ACB18C4 /* dec_mips32.c in Sources */, - 5423A68BE194FF4F88E1F3F8060741D1 /* dec_mips_dsp_r2.c in Sources */, - 2DE638E2260CE1DB06F76ECA93C24E0E /* dec_msa.c in Sources */, - DC016D326725C8F66C7F8382A0A65EE7 /* dec_neon.c in Sources */, - B3A873963105EEB40F98BD3F9F18FAC8 /* dec_sse2.c in Sources */, - 42C5AE0870E511B811C9B4DDE6899B66 /* dec_sse41.c in Sources */, - 7CD84F8DB695AC43A57E884C2171560B /* demux.c in Sources */, - 7F05B3C942C46A787CB0C2DE9AC12A80 /* enc.c in Sources */, - FA466A93791A0CD6AEC3AE1E9E570FD6 /* enc_mips32.c in Sources */, - 03DDE32C9E982AE87E8AA3D926BCEB35 /* enc_mips_dsp_r2.c in Sources */, - 6CEC610F6C21A3717EC2E0486100F20C /* enc_msa.c in Sources */, - 06CF4848159EBE88FF4132522F525057 /* enc_neon.c in Sources */, - D0382AAC74EAC957E55B1C0FAF9EC897 /* enc_sse2.c in Sources */, - 76D446B97B0D2FA97975C830469C615C /* enc_sse41.c in Sources */, - 0D2AE7D9CDDDBC4664A8A74CA2824FCA /* filter_enc.c in Sources */, - 85FE8E61C5EDD8A9B9DA98B8B4A9F208 /* filters.c in Sources */, - 269A492E07AD9684E6B11AAA03B97264 /* filters_mips_dsp_r2.c in Sources */, - ACD8044C76783EF19755EFC8E911FD55 /* filters_msa.c in Sources */, - E5B8C9B69A522F320113821E8981F74E /* filters_neon.c in Sources */, - B4EC613823F8FACC3A49812C18BC5AF4 /* filters_sse2.c in Sources */, - EC03F99E8ADF9C5EC34E14CA4F994B6F /* filters_utils.c in Sources */, - 31000B277CE79D21BA8C1ABA26659D9C /* frame_dec.c in Sources */, - 6CEB91B9D0F79F63B220B9363D72B03C /* frame_enc.c in Sources */, - B61DF7E3F4B364D1C76D967F71676C9C /* histogram_enc.c in Sources */, - 1D1144A29931237DA172952B098FA026 /* huffman_encode_utils.c in Sources */, - EDD523987A60EECB6464615EA4734277 /* huffman_utils.c in Sources */, - 372B028224B230942D573C6071980027 /* idec_dec.c in Sources */, - 209449480FF69F2FB4146CDA1765BAAB /* io_dec.c in Sources */, - FCDF1D9CD5C6902938D25B1E6FFF761C /* iterator_enc.c in Sources */, - BCAC5285AA980D6A1970FD5B675BE970 /* libwebp-dummy.m in Sources */, - BE36C6B3898E3E82A7881FC4DE33A115 /* lossless.c in Sources */, - 5C6BACB3E936ADB9BF7B694DE5F76B24 /* lossless_enc.c in Sources */, - DBAC6B1D8C54FB2B16D1EB2D41715F4F /* lossless_enc_mips32.c in Sources */, - 248FE8D6745BB73161E3D1118BB9CDF8 /* lossless_enc_mips_dsp_r2.c in Sources */, - DD1E5022EE05E040EF088DB41010E5E2 /* lossless_enc_msa.c in Sources */, - 6138260CB5AF95929889148DFC913A0F /* lossless_enc_neon.c in Sources */, - F9C42D93CBEBD19B0D1707ED6D81BF05 /* lossless_enc_sse2.c in Sources */, - 417F20E4B575F95AA4B991D2149C898E /* lossless_enc_sse41.c in Sources */, - 81FD0195DA3077411FCD0751E7CD5FE1 /* lossless_mips_dsp_r2.c in Sources */, - 2D58EA07BF9420CB519FB4C5C1C64E54 /* lossless_msa.c in Sources */, - D7AA816442FF639772077023CB7CB106 /* lossless_neon.c in Sources */, - 2217E80655E7B80BAAF4306735E008A0 /* lossless_sse2.c in Sources */, - 1F99468BBFBE7CE266CF259EA2A0B50A /* lossless_sse41.c in Sources */, - E42496F55B6B2C772D40F457B7C98154 /* muxedit.c in Sources */, - 9BE9ABF100051ABF1961958C54100327 /* muxinternal.c in Sources */, - 5C1D2B938DACC33D9AFE04B62FCC9EFE /* muxread.c in Sources */, - 54155DF312ABEA7136335F47C81CE938 /* near_lossless_enc.c in Sources */, - 43AC0C09E1209CBE32C28B827B21EB69 /* palette.c in Sources */, - 3E3DE0C3F11D105F010D3903964B8DC0 /* picture_csp_enc.c in Sources */, - 820CAA6F190BDC09EAA1C5F937A1A5EB /* picture_enc.c in Sources */, - 6CEB67FA720C11B6A3D90568A24E2CD8 /* picture_psnr_enc.c in Sources */, - FED25CF5DD8551A499C04624ABF5E7F7 /* picture_rescale_enc.c in Sources */, - D9623705421AB179348D0B44B85D8CF5 /* picture_tools_enc.c in Sources */, - FC644FFD4CEFABD31D114D385B3FDD19 /* predictor_enc.c in Sources */, - 8B16CD2D6E27FEE950C96E3DFD04DB54 /* quant_dec.c in Sources */, - 81480680EC2AD2EFB65E4B65D0AD3CE2 /* quant_enc.c in Sources */, - 76BF116C44CC99B086526ED8A19F48F5 /* quant_levels_dec_utils.c in Sources */, - 794C6C6B3223E089FE0D3C21D1F9F0A8 /* quant_levels_utils.c in Sources */, - A81A06306F6CB52B6454B87AD1389688 /* random_utils.c in Sources */, - B3055D5399B97852355F98821ADDBC5E /* rescaler.c in Sources */, - A88BBC15BE4C225B31AEE17F4D953A2F /* rescaler_mips32.c in Sources */, - 59A7B942A600A7BC1ED704F858270E2F /* rescaler_mips_dsp_r2.c in Sources */, - 213346E0F366A1B688A63C84AC78E925 /* rescaler_msa.c in Sources */, - 3636DAB7FF443D6A94EEFF759FD706C4 /* rescaler_neon.c in Sources */, - 9D10B4077239CD4A98091985A4A3F523 /* rescaler_sse2.c in Sources */, - 3CCE07EC3D0DC9B618367ACA004958BC /* rescaler_utils.c in Sources */, - 06A37E1EACF17C6B94837E61D623B2DB /* sharpyuv.c in Sources */, - B4AF2DB1C39D8E8AD3A28DF1EB48D43B /* sharpyuv_cpu.c in Sources */, - EF04A170A4D1D4E6CEC857B6D8043644 /* sharpyuv_csp.c in Sources */, - 60E8E419DD6F0CA6D556F6B9FE7B128C /* sharpyuv_dsp.c in Sources */, - 97A13C75DA2BCECA29B0E7F6BA8EEC4C /* sharpyuv_gamma.c in Sources */, - DA43427CB705255E964D1E41B7CB9665 /* sharpyuv_neon.c in Sources */, - 5EEAC6A66FA0E6B5830DAA93471DA9FD /* sharpyuv_sse2.c in Sources */, - 0DB7EBD9B5E8EDE55DC6565BEFB2501C /* ssim.c in Sources */, - 2AD120375AFF9ADE8702C3BFD80BDB5B /* ssim_sse2.c in Sources */, - 791636D3DCF9FF81AD061E5CF5D6F051 /* syntax_enc.c in Sources */, - C22DBBD7FBFD295C00185B5F614B74B7 /* thread_utils.c in Sources */, - 3EC7C17C01B39C6915B3939EDACEA8F8 /* token_enc.c in Sources */, - D437CCD86DC6E52502FB1EAA60B58991 /* tree_dec.c in Sources */, - 4BBC8BF43CF7B6DB8BECF2B367BB751E /* tree_enc.c in Sources */, - 9A994727773B0B2ECF0BF43B89ECA9D6 /* upsampling.c in Sources */, - 2B319E44D7ADECC5928D4059D35090FA /* upsampling_mips_dsp_r2.c in Sources */, - 0B3286E093C11F29E2781EB2C89E9145 /* upsampling_msa.c in Sources */, - B8C2356F35304D8A9AB06A3AADA00C4E /* upsampling_neon.c in Sources */, - 366BD3046AE8E0558AF52F571AD039FA /* upsampling_sse2.c in Sources */, - 517A42EBA8C2D887F183A5BA5088B836 /* upsampling_sse41.c in Sources */, - 71CB3CA886AA53B7F5E81581D5E519D1 /* utils.c in Sources */, - 21FF1ECA305411EED75B074549EDCECF /* vp8_dec.c in Sources */, - 8DE0169623626B1E8E25C98D15189E42 /* vp8l_dec.c in Sources */, - 5FE376C5CEBC1C40441E38EA1EE6BF02 /* vp8l_enc.c in Sources */, - 52EC86E627940D5740209212FFEB6958 /* webp_dec.c in Sources */, - 61015DC99221A23D700A04291DBA6B67 /* webp_enc.c in Sources */, - CA4CC5E18364E775EE169E4EE7A86FE7 /* yuv.c in Sources */, - 66FC880217F38970CC056F79129A7727 /* yuv_mips32.c in Sources */, - 5D07708EC42D549847583DED8030CED9 /* yuv_mips_dsp_r2.c in Sources */, - 88849EA98966A576058B9C1A27442A84 /* yuv_neon.c in Sources */, - 7F5C48C2188D40013C6138EF2F912F57 /* yuv_sse2.c in Sources */, - 0CFF7D4D0E7F1D23CE8D0B8059428B78 /* yuv_sse41.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; C6A558DD358D0A9D37BE505AF4786771 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -13966,17 +14151,238 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CA6DBC72AA33333BCAC9445A32BD908F /* Sources */ = { + C858D393F19697D85A403464DDAF1E07 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BFD45DCF81CA6FAE63F89D08066830EC /* IQTextView.swift in Sources */, + A36C66423C63347C362000CFA6B39ADD /* IQTextView+Placeholderable.swift in Sources */, + D10EDF998CDA6852F82760E28E8F091A /* IQTextView-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CD025D31F5EBDE4E708C3204A90F59B6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D2DFF319A95580F59BC9410B687D2748 /* Sources */ = { + D2DA36F1282A4EEF40487329493B3581 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 17963E14ADC36534628E33A2E456A9FD /* alpha_dec.c in Sources */, + C03633BC24D5BADF7D8EEB3ACE631666 /* alpha_enc.c in Sources */, + DBC215E63518692C01829C43DE30730B /* alpha_processing.c in Sources */, + 4D80E60A335E390E7E06406B289B1507 /* alpha_processing_mips_dsp_r2.c in Sources */, + 221C2C5A677210D28C7092AB45DAFBAD /* alpha_processing_neon.c in Sources */, + 413FB3DBEC191BD8FD034D6B619ABA78 /* alpha_processing_sse2.c in Sources */, + 1E1DDB49C9A4045FB76C69930DBA2F1E /* alpha_processing_sse41.c in Sources */, + 940622D3F968C7D89CD39D1E8AE97373 /* analysis_enc.c in Sources */, + F8DBD575BC5B5A87EEF5F7A4E79EC285 /* anim_decode.c in Sources */, + 49D0AB841BE753EFD2A840C4C54F4756 /* anim_encode.c in Sources */, + 780BC2D085C2534DADCEA83A9E68790C /* backward_references_cost_enc.c in Sources */, + 6BA0AD20FBC3135653D0191F4CF3CBCF /* backward_references_enc.c in Sources */, + CBC2A9E2E812EE14E54C09D33409F5E2 /* bit_reader_utils.c in Sources */, + AD7FBFF5398724D66EF831648087F043 /* bit_writer_utils.c in Sources */, + C14E0151206B52F3D0D9F7812847F16A /* buffer_dec.c in Sources */, + A5F0350C5D35B1A7A3685A17C4971080 /* color_cache_utils.c in Sources */, + 28E2D1FFBAEC6CFB57D72F44CBBA018C /* config_enc.c in Sources */, + 7558BB04C3278ECFE185A5E982CEBEA9 /* cost.c in Sources */, + 03C5BCAD51533102DFD2357DBE9A9A1C /* cost_enc.c in Sources */, + 2D9874572CEDB7AACBA158CB64EF379C /* cost_mips32.c in Sources */, + A39976E89E1F055CF12BC8BD0A16F9E7 /* cost_mips_dsp_r2.c in Sources */, + 76CE298CA63BD9C98E75949D0B77F12E /* cost_neon.c in Sources */, + 50B43CA000068D1E1BC08EF96A23E0F5 /* cost_sse2.c in Sources */, + 32F42F432E1925E1EE9F1DF10E230B05 /* cpu.c in Sources */, + D8C5939E07C5F477891D6DB0FF2016EF /* dec.c in Sources */, + 2749B0C5BDC4FE8527CA5A1EEE444749 /* dec_clip_tables.c in Sources */, + BDFBD6034EE2B4CBF1161BB7C5E9E6B2 /* dec_mips32.c in Sources */, + 36CDE98915D684098B3B7013BAA91590 /* dec_mips_dsp_r2.c in Sources */, + 1DB1ACD53F7A32A602A8883C88B141AE /* dec_msa.c in Sources */, + E620832870D38BCB4241125AC2500F7D /* dec_neon.c in Sources */, + B105F27A3EC15746DDE121AC8A9A57F5 /* dec_sse2.c in Sources */, + 6944CE1C5E07D8DACCDC8DFEA4934AC7 /* dec_sse41.c in Sources */, + 101EE02DF118858FADA52364B1419E72 /* demux.c in Sources */, + 30FD62F4759445BDDE759B1102FEA7A2 /* enc.c in Sources */, + 80F9FB96B47328A2F7369446F6355C11 /* enc_mips32.c in Sources */, + 4C0B9A1CB2C59D19BA619458188DB556 /* enc_mips_dsp_r2.c in Sources */, + 0EAEB1E9D38A99A316467CE6F913218D /* enc_msa.c in Sources */, + 663698A6CE77790999079FA690A29902 /* enc_neon.c in Sources */, + 6AD5356A624519885BAED049B683EFDA /* enc_sse2.c in Sources */, + 5B8E6B2A79FB2854979D399D9748A48E /* enc_sse41.c in Sources */, + 763E4D8F18AA1796E333DC9678D424AE /* filter_enc.c in Sources */, + 3ABD92A85AD10EF57D39FF5A6D2764B4 /* filters.c in Sources */, + 07052A43F310EE6CDC0302D69EA29A28 /* filters_mips_dsp_r2.c in Sources */, + BAAAEEF4190DC0417746E6F71736409A /* filters_msa.c in Sources */, + 2CC24AE55F29AEF0890A4258AE601A88 /* filters_neon.c in Sources */, + 8585AF6DFD194A19DFDC5DA017C404C6 /* filters_sse2.c in Sources */, + E39D20554396F3279704BFC67A045D86 /* filters_utils.c in Sources */, + 8C64A7C9603A2B05E32A7C417F5D9CEA /* frame_dec.c in Sources */, + DB9FAD58D5D5101F31C30C8373E21F2E /* frame_enc.c in Sources */, + 2EEA29F33BBE2927BD5730625105C993 /* histogram_enc.c in Sources */, + 4C2FF50CEFF8089782BF69B0201BA4A1 /* huffman_encode_utils.c in Sources */, + E52156D72B247DB3D747B122553BFB69 /* huffman_utils.c in Sources */, + 932BC8C27900D27C048A5635E7231CA3 /* idec_dec.c in Sources */, + 6FC8633F5F4D6B865FB5C871A83185B2 /* io_dec.c in Sources */, + 5209C1A3570588A7B77161FA9EA55C02 /* iterator_enc.c in Sources */, + DC173178DA7CC9561947B30F462745C4 /* libwebp-dummy.m in Sources */, + 863E7306199CE0AEF211451199BB3C75 /* lossless.c in Sources */, + C49CBA7D57BFBE1D3297A18813D1067C /* lossless_enc.c in Sources */, + 0769FBA2E0CC84A1B08F7B9F716361F9 /* lossless_enc_mips32.c in Sources */, + 920C1A9E23C3CE15BF44203272B96908 /* lossless_enc_mips_dsp_r2.c in Sources */, + 64E1CC958AA43AC1F27EB7AC00496239 /* lossless_enc_msa.c in Sources */, + D5DBCB44CC01B3265CB5691D80FB1CE2 /* lossless_enc_neon.c in Sources */, + 366784118C275CC1C4321EA25C25E756 /* lossless_enc_sse2.c in Sources */, + 90DFC2E073F83E7EE947EFCCB868B573 /* lossless_enc_sse41.c in Sources */, + A403C1C5410219C8C51B2C2F7EAC7FD8 /* lossless_mips_dsp_r2.c in Sources */, + 2C96A318BE047B6E68309B615CB5B8FB /* lossless_msa.c in Sources */, + B1DEBD8F6B20A33C8CA774C87DCFA050 /* lossless_neon.c in Sources */, + 0763E96624CE87A93B0FEAE0087698C2 /* lossless_sse2.c in Sources */, + 49C64C6D505629CD6B37FA8D5F68CDA1 /* lossless_sse41.c in Sources */, + 3128BD706592ABF336A95E04E8262330 /* muxedit.c in Sources */, + 24FA5CC8250E9A64219FA2F3201539A5 /* muxinternal.c in Sources */, + 2BE4EE63CF1855AE9F3E6F93F06119CF /* muxread.c in Sources */, + 72A25A5054A18E2686A42633ECCA296B /* near_lossless_enc.c in Sources */, + F9A4C2F20661D4648A77FE2017B331AC /* palette.c in Sources */, + 49CF13727C6680117794AE1A86BFAF0F /* picture_csp_enc.c in Sources */, + 12BAC0D88E72578D863B0CCFE7D8DE98 /* picture_enc.c in Sources */, + 87560A1A80987B82CE618F24090C35C4 /* picture_psnr_enc.c in Sources */, + 61E2F6FE736F568F36926985FE3C7A80 /* picture_rescale_enc.c in Sources */, + D5D2B4102317BFE08EDDC3EA2E5C187F /* picture_tools_enc.c in Sources */, + 6F9D0DA8753977B211234613C24F41D1 /* predictor_enc.c in Sources */, + C00938977A12337E087F0515C3F95647 /* quant_dec.c in Sources */, + 3A5CFD6DFC22343E29E2ABECFC1C3701 /* quant_enc.c in Sources */, + 278DFD4F490310BC9B416EC7C28254AF /* quant_levels_dec_utils.c in Sources */, + 51549AB4DCEAACB95CD86750694E1D87 /* quant_levels_utils.c in Sources */, + 25E001DB4C1AF58D359B83CB604EC927 /* random_utils.c in Sources */, + 9E436802F5A5E80EEABE067709B78441 /* rescaler.c in Sources */, + 8FBBE87E9886B5BE2B5B44D08812B43A /* rescaler_mips32.c in Sources */, + 6989DB840B86F4E1507C836814F8A35F /* rescaler_mips_dsp_r2.c in Sources */, + 4901D71B1E8609E9BF02617F741F6512 /* rescaler_msa.c in Sources */, + 72F46AF65F99A2D2D1D4040A6A7480D7 /* rescaler_neon.c in Sources */, + 1ACCB8C5C27C1444D4F45DBC081965F6 /* rescaler_sse2.c in Sources */, + 7A6CA3F362C73E128D9A1227F9B73A38 /* rescaler_utils.c in Sources */, + F4603A718448B8BED2AAE202277C275D /* sharpyuv.c in Sources */, + 5DCFDCA51964B19641B53CDEEA1496D5 /* sharpyuv_cpu.c in Sources */, + 1C7FE625D2FEBBE2F565CB6459BDB0AB /* sharpyuv_csp.c in Sources */, + 8659421801012A5C8BCC0C73F8FF7334 /* sharpyuv_dsp.c in Sources */, + AD12190855956D547F04D5CAC6F6F1FD /* sharpyuv_gamma.c in Sources */, + F6841A1B6D6884FF2D41FFDBD7703ADF /* sharpyuv_neon.c in Sources */, + DE3C8D3A427873A89B34556C4A2A0729 /* sharpyuv_sse2.c in Sources */, + DC9E902FCFE39F70AEBDCE8442F7CB4E /* ssim.c in Sources */, + 834807B583F5FE3035045614D90674A0 /* ssim_sse2.c in Sources */, + B0418EE57851D799582EC87D566AB8CE /* syntax_enc.c in Sources */, + C9B40ABBE5B695C9F9CCEC8658B796BC /* thread_utils.c in Sources */, + 03E4969A888B2C0C264DE71ADAB66527 /* token_enc.c in Sources */, + C565A821906F24C86701339A18D69D7B /* tree_dec.c in Sources */, + F9AA73F3AE4A7D5CAC163509F5AE5363 /* tree_enc.c in Sources */, + 0A274738A00EB1D66898D470DDBFD136 /* upsampling.c in Sources */, + BC0830F2A2C68B289F2B438F1E3A9FA9 /* upsampling_mips_dsp_r2.c in Sources */, + 33EDF0B768037D79D2D812243EAEB5C9 /* upsampling_msa.c in Sources */, + B8F36C55BE219F6B7E9960D5580C72B6 /* upsampling_neon.c in Sources */, + E9470E64737A023126AFD77E10DE3E41 /* upsampling_sse2.c in Sources */, + 10D3D2FE2F2333DF1C45411E7620D35E /* upsampling_sse41.c in Sources */, + 22E8465DC034A34C40E02C7B3E38AF50 /* utils.c in Sources */, + 1B1B3DD8D52AFFEF0497E8558A52209E /* vp8_dec.c in Sources */, + 8330FD20F044A6BD4EE38D8E791E4FEB /* vp8l_dec.c in Sources */, + 02C66795522176B28B835F653FC4A868 /* vp8l_enc.c in Sources */, + 26871F8BD6198C4D087B2EE2E8A20EBD /* webp_dec.c in Sources */, + 8F77F520107C9BE9E88265F2B4B3D1D4 /* webp_enc.c in Sources */, + 130A51F65E41782E0D2C44FAD405C472 /* yuv.c in Sources */, + 87EEDE0EC414BCF701CDCF1963EA053C /* yuv_mips32.c in Sources */, + DAB03D435BA487BD030524A9F9312864 /* yuv_mips_dsp_r2.c in Sources */, + C11C67B63B259776A719E711DC1735E1 /* yuv_neon.c in Sources */, + CBAA7237BD9FD30B79F84F6F0F29634C /* yuv_sse2.c in Sources */, + 907545A1764CE1C7724399E65237DC20 /* yuv_sse41.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D3B7F4CF2F6E65F3DE5121DE7D972D66 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D567B5EB900BCD8C3D681FD57ED56BE9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C0763E17DFCC612339CA455AAAB24188 /* NSBezierPath+SDRoundedCorners.m in Sources */, + A8DE63C8D7C4A284E843DE63FED30A6C /* NSButton+WebCache.m in Sources */, + 8307028B55BA31EE09799F208F709156 /* NSData+ImageContentType.m in Sources */, + 28A85A89E4CC5CF4E4CE71FC660E4730 /* NSImage+Compatibility.m in Sources */, + 0ECDCFA9D12BBA0A59E8236199F7DC44 /* SDAnimatedImage.m in Sources */, + B164FC4CCE6C47414B566E8CC277DE69 /* SDAnimatedImagePlayer.m in Sources */, + 271276372725504F72DF758F8FF03934 /* SDAnimatedImageRep.m in Sources */, + 7B262866D0FAFCAD2B5470D3A35748B2 /* SDAnimatedImageView.m in Sources */, + B6B29C558DA1B544550B5C1985FBA705 /* SDAnimatedImageView+WebCache.m in Sources */, + CEA2225A7837701061A40BBCB37BA5C3 /* SDAssociatedObject.m in Sources */, + 7C1B11171AC88076494FF044DB0D4BAF /* SDAsyncBlockOperation.m in Sources */, + B0D8D212F563CF188A5C51F99359E31A /* SDCallbackQueue.m in Sources */, + 189966E79B3BFB2BD1E49CC56F03DCC0 /* SDDeviceHelper.m in Sources */, + DDAB12CDEEF1489E148C427B847F103A /* SDDiskCache.m in Sources */, + 4FD35E0DC4C9F53BE89F91977C085562 /* SDDisplayLink.m in Sources */, + 9BA717307CD936629FAE4A1515CCF862 /* SDFileAttributeHelper.m in Sources */, + 52634197F97213E2DD98538DCD8BC6D4 /* SDGraphicsImageRenderer.m in Sources */, + 37208D2FEBA0C1A0A2CFF4918326F4F9 /* SDImageAPNGCoder.m in Sources */, + 3D752C60755FCF890E8579C4FAEBB6B5 /* SDImageAssetManager.m in Sources */, + 746AE37FC215D00A060089B21B1D22D5 /* SDImageAWebPCoder.m in Sources */, + 71029A5C5D8B9D12FBCF8461459E95D1 /* SDImageCache.m in Sources */, + 62DFFFA4BDE24874632B3B498C6BE2C7 /* SDImageCacheConfig.m in Sources */, + 45C8C8F139BB9A4A0A45FC6C333FCCBD /* SDImageCacheDefine.m in Sources */, + DD086708752F472B0AB078F335BC4F69 /* SDImageCachesManager.m in Sources */, + C2369277810812BDB6306E99925587AE /* SDImageCachesManagerOperation.m in Sources */, + ACF245BEE605783DBA0E666FED8DBE65 /* SDImageCoder.m in Sources */, + A43B51A077E9450423F6E23E3E3A656F /* SDImageCoderHelper.m in Sources */, + AD94DCBF00976709889890A22F960062 /* SDImageCodersManager.m in Sources */, + 23B8C15ECD59DB68A10AEE5BC18A66FA /* SDImageFrame.m in Sources */, + 8FD8500C56E59D86AA72FC774FB3F2A1 /* SDImageFramePool.m in Sources */, + 6F6C920A3E7AEF236B703D2FBA728320 /* SDImageGIFCoder.m in Sources */, + 6201F1CC44EDDCF8F148A9C7B4781C34 /* SDImageGraphics.m in Sources */, + 80F2DB3E5E7E2694D29F0576A8CAD40F /* SDImageHEICCoder.m in Sources */, + 84D497365935DAADC3FA742E390E3EA2 /* SDImageIOAnimatedCoder.m in Sources */, + 1484DE903206BF8D6B6900A0F8A71692 /* SDImageIOCoder.m in Sources */, + ACC5A64D2C9E36024DB07378F7118FB8 /* SDImageLoader.m in Sources */, + 9A079D75446EE8455C3496BCCB758DBC /* SDImageLoadersManager.m in Sources */, + 369320288CC80D26C93803B808FCB61C /* SDImageTransformer.m in Sources */, + C9262973FC4CB1CCC42F745E6778DE4C /* SDInternalMacros.m in Sources */, + 928FCF60E3649C39E281C1DD526CEF07 /* SDMemoryCache.m in Sources */, + 9703F00AD9B433ECD5A6290032A2C05E /* SDWeakProxy.m in Sources */, + B7CD4F8DF0A1CCC8E238605BC22C053E /* SDWebImage-dummy.m in Sources */, + 91D68DE854B45FB77508E2782F9D36F6 /* SDWebImageCacheKeyFilter.m in Sources */, + 1E9951B4A9662CD4C746E3EECF40E635 /* SDWebImageCacheSerializer.m in Sources */, + 2EA5C7350AC28ECBF0BF9640F1AE0F96 /* SDWebImageCompat.m in Sources */, + CA1E0D21860CFD2872029D5CF4E6DF29 /* SDWebImageDefine.m in Sources */, + 4808B2B2052822D84C77C8A62699622F /* SDWebImageDownloader.m in Sources */, + 200355A1D6B2618C8BB30BFA6973FE01 /* SDWebImageDownloaderConfig.m in Sources */, + 27A478FEE0C7EF6A9FE97D7F76571E6F /* SDWebImageDownloaderDecryptor.m in Sources */, + 7876A95068846D36B8F1BD14365B69F0 /* SDWebImageDownloaderOperation.m in Sources */, + 12DF3001E99174FC92085BE6467517B8 /* SDWebImageDownloaderRequestModifier.m in Sources */, + CF69896B8FC7C21E638CD5D730F91543 /* SDWebImageDownloaderResponseModifier.m in Sources */, + 03C5C53DBB1C0342175A24247C8718FB /* SDWebImageError.m in Sources */, + 79B1C51D421DBBC538D8F2644E89C570 /* SDWebImageIndicator.m in Sources */, + 26C23B7B2314ADFC8B910E21F066D80A /* SDWebImageManager.m in Sources */, + 7B6BD3EA8747935609B6204913A6F0A1 /* SDWebImageOperation.m in Sources */, + 2799155AAA7AC8118EC37F5E30D89B6B /* SDWebImageOptionsProcessor.m in Sources */, + 8C7BD9F3D0BD5668940D9E18FA9AEABD /* SDWebImagePrefetcher.m in Sources */, + 89082AF17AF5C1B80EC64F39D659DAC2 /* SDWebImageTransition.m in Sources */, + 9FCBEBABD3BEC78A8C6C2016750AF263 /* UIButton+WebCache.m in Sources */, + 4213B9A582A396D7E3E1EEEA57FE200A /* UIColor+SDHexString.m in Sources */, + 615435C7081677EE9C7B30E52B6FE1C9 /* UIImage+ExtendedCacheData.m in Sources */, + 9B5FB4D7BDEE150249FC25BAD02E4673 /* UIImage+ForceDecode.m in Sources */, + F0411B25B1DBAF9E1D5F5442D6A98F20 /* UIImage+GIF.m in Sources */, + 80A92B7601FF8D498B9A6C7824BB59F4 /* UIImage+MemoryCacheCost.m in Sources */, + 99F98734F451C3423D3CFE18BA45F389 /* UIImage+Metadata.m in Sources */, + 25A38F09D2BE68763FEEFD4C71B99257 /* UIImage+MultiFormat.m in Sources */, + 53BA20933A3747C025F10B4C51EED188 /* UIImage+Transform.m in Sources */, + 6F42B4D96019FC7A8EDE1197A01E9488 /* UIImageView+HighlightedWebCache.m in Sources */, + 3AB4C6AB558F8622F11B8D3F24909492 /* UIImageView+WebCache.m in Sources */, + 7D17155B34A28B6119D81475F1E57324 /* UIView+WebCache.m in Sources */, + AE0B3DCEC831425C787D002509B4C8F1 /* UIView+WebCacheOperation.m in Sources */, + AA916DADA92B6BF9B60F104C7C77518E /* UIView+WebCacheState.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14049,6 +14455,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DFC181D4377A1BAD6585D3C9978A2C3D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; E01EA717D0A0AF8E12D145A5F2252FD2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14128,30 +14541,24 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E95AA2DA471BE0C97D4B9E100073684D /* Sources */ = { + E873BFFDF3BD266B69A127FD928FE93D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EAE616CE827CD647AF659A0331E9E818 /* Sources */ = { + EA5A1E1084CCFC39C15254A90B1AE19A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EB1788181A2BB691931C15EE395D5DAD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 825237AF1EFB2268D5416A7AD88E01ED /* Array+Sort.swift in Sources */, - 2484ADD920601725235FE16E245C687C /* IQDeepResponderContainerView.swift in Sources */, - 511743EA21722DCB02BC11F82698A057 /* IQKeyboardToolbarConfiguration.swift in Sources */, - B26E12AF738E9902EC107EF28E667940 /* IQKeyboardToolbarConstants.swift in Sources */, - 19ECC094BE1E1C01F0BEFEEDC266A38E /* IQKeyboardToolbarManager.swift in Sources */, - D2CAB6C0EDD7A68CE6C7926A1B665726 /* IQKeyboardToolbarManager+Action.swift in Sources */, - CFBA04B4F951AC600813F7C6735C1A4D /* IQKeyboardToolbarManager+Debug.swift in Sources */, - E34C329C1184FB2A2327D471B5ED48E2 /* IQKeyboardToolbarManager+Deprecated.swift in Sources */, - 24FBD47B712E095533043716EC91A2A6 /* IQKeyboardToolbarManager+Internal.swift in Sources */, - 12FD280D22C0437C026AE1532F1C1E9C /* IQKeyboardToolbarManager+Toolbar.swift in Sources */, - 4FA185AE9B8476AA7B79DA5AAC419A91 /* IQKeyboardToolbarManager-dummy.m in Sources */, - 9543FC7093A9F1F3E2A1E438DD179C13 /* UIView+Responders.swift in Sources */, - 27A5B531FBB9758A4C8EBD45F7D46B34 /* UIView+RespondersObjc.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14166,6 +14573,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F71B644154811CF94B90B2EF77E8653B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; F7560DB6A2B6BB388140846E54CE6F5C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -14260,671 +14674,675 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FBB63F3C895372F15B9D7DA98AD1BC8D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FF8726859A2FDCDAA260B4B9716AE1A2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0423424C517A6FF31FBC7257498A4912 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ZXSDK; - target = 8194323886ECAF7E912EFDAFC84017AA /* ZXSDK */; - targetProxy = 89B91581100671498BD94B302D6F17C9 /* PBXContainerItemProxy */; - }; - 06EDD5B89C3D0C2108751E14413DA766 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = 25E379AE25F5D44AF3A160CFBCEC6DE4 /* PBXContainerItemProxy */; - }; - 0A270D927D85F31292A0BA59517E8649 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RxRelay-RxRelay_Privacy"; - target = 39101A2B1096DFB129FCDE5490875054 /* RxRelay-RxRelay_Privacy */; - targetProxy = FE6ED4719C4114B1B47F408C5C504BE3 /* PBXContainerItemProxy */; - }; - 0C758B3319CE3765BD94EF42337CCC3F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardNotification; - target = A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */; - targetProxy = 06463C8289753D95DDDF907052B88759 /* PBXContainerItemProxy */; - }; - 0E0E74C2D4426EA2441F10A0A60BF5C9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = OpenIMSDK; - target = 0028E46539689892CC926BB8D811EF54 /* OpenIMSDK */; - targetProxy = 1FF5B535B3940EB099FBFFE6BAC72168 /* PBXContainerItemProxy */; - }; - 16E79159685C75B532CEF6D862DAABC8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SnapKit-SnapKit_Privacy"; - target = 8A8DB685241263AFDF5E6B20FE67B93A /* SnapKit-SnapKit_Privacy */; - targetProxy = 5FEA73E15104EF1E4A1B9DD6C99111EB /* PBXContainerItemProxy */; - }; - 1A6D8A996B55A6BB9FB4E590163AD294 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQKeyboardNotification-IQKeyboardNotification"; - target = 2B8FF445A5162845FAB9EC00FC92B694 /* IQKeyboardNotification-IQKeyboardNotification */; - targetProxy = E17026AEBA27086027457B5ADEDB753F /* PBXContainerItemProxy */; - }; - 1E34ADB9A2FEDE5D364BB05A2BB68BFB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "lottie-ios-LottiePrivacyInfo"; - target = BF2A15FEC3F3424BBC4B9AD5F86F2D54 /* lottie-ios-LottiePrivacyInfo */; - targetProxy = A59AD2460664BADA968DD6E7065D2D3F /* PBXContainerItemProxy */; - }; - 1F6B9529EA8851EFFFDF3AE7A59897C1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = OpenIMSDKCore; - target = 0E87F100EFC3B44F5BB5AF12375D07F1 /* OpenIMSDKCore */; - targetProxy = 44977C8C515E8BC32C6EBEB2C8BD7D12 /* PBXContainerItemProxy */; - }; - 229DF5CC4CE2B68D7FC375271C40DD18 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 89E0D584BA990913567091EC515D197E /* PBXContainerItemProxy */; - }; - 24BD652E0B8C2522FEC261C98350926B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SnapKit; - target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; - targetProxy = 6417F0F16845441ED9CAAE8D86804FFA /* PBXContainerItemProxy */; - }; - 24F5C489A5CAB8B16DED42BA2A359BCD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJExtension; - target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; - targetProxy = 244DDC304A1C3FE446ABB68C2F8E47AE /* PBXContainerItemProxy */; - }; - 2793407C6B54BE79E0F479BDFFE4F0D8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 8E91AD5D12BB7EC4472712E9D734717E /* PBXContainerItemProxy */; - }; - 27F0CDE14281B8CB610803FBB1B167D7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GYSDK; - target = 17D542296AD0C26B1C5815268E5C6BF6 /* GYSDK */; - targetProxy = 6095D2B81CA66FE208380E49962E701B /* PBXContainerItemProxy */; - }; - 28BD5273C13642D7BA13101F0911C7E5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = CE99528F856F7EFF6543E5AF17875326 /* PBXContainerItemProxy */; - }; - 29E3F9DFCC9FBE2FAE76790C4ECAED2C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardReturnManager; - target = 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */; - targetProxy = 87FC6AABDB23D7FF2726CC40BAF15109 /* PBXContainerItemProxy */; - }; - 2A9641E11BC725AE467BFE3CBD3E55A2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardToolbarManager; - target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; - targetProxy = B81587444BF1FD0218E2208B3678FFB2 /* PBXContainerItemProxy */; - }; - 2B851C01CA72080372960C311BC1C3A1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQTextInputViewNotification-IQTextInputViewNotification"; - target = 4502C7427440BEB17A50C0BF6E638A85 /* IQTextInputViewNotification-IQTextInputViewNotification */; - targetProxy = BD8798429F2E1015908BBBE5513B1DEE /* PBXContainerItemProxy */; - }; - 2E4D8563217D17E396DC1DC6DD804833 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = 137C56D61C9FFBF4B78C31122C39A264 /* PBXContainerItemProxy */; - }; - 34D74EF0976DCD06A98A329EEB6A9A6B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = BB06943732499A1F6F6BAAE1D30483CD /* PBXContainerItemProxy */; - }; - 3807AD07A236EA168BF6A364ED07C782 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQTextView; - target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; - targetProxy = 8234E433BA1E308467D0C0BB4CCD7092 /* PBXContainerItemProxy */; - }; - 3A9372AAC6B93BA7412E41FFFFBC65D1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxCocoa; - target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; - targetProxy = 617BD99068746066474E219AB7DCDDD2 /* PBXContainerItemProxy */; - }; - 418A5F7852FD349835E60C16DD507C67 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJRefresh; - target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; - targetProxy = 2CB1EE1F7FF3714527E0172E800FE0AB /* PBXContainerItemProxy */; - }; - 4563B0373B6E25797E0E63BA07DB9A12 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Differentiator; - target = 212F79CE462FC723AF42979B57FBB8A6 /* Differentiator */; - targetProxy = 6698AE69906FE54347F76FE5A09F9744 /* PBXContainerItemProxy */; - }; - 474BA1D6BA459E5E6306C93E0E31A41A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AlipaySDK-iOS"; - target = 4847ACB1E2799345AA74D9E317048D58 /* AlipaySDK-iOS */; - targetProxy = 58A3D1F04069798EE10AA0BD302A0D43 /* PBXContainerItemProxy */; - }; - 48985134A9454E26DE54FC95B60DF4B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQKeyboardToolbar-IQKeyboardToolbar"; - target = B247F77A0CD5E19C8187A9BA1EB58C09 /* IQKeyboardToolbar-IQKeyboardToolbar */; - targetProxy = F90FA9F5EC9C9EDE48802C2296620F70 /* PBXContainerItemProxy */; - }; - 4B58B6D9FD62717F08C97DC2873BCB87 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YBImageBrowser; - target = B97FC50FB8C4390DDCCA281E85E7AD84 /* YBImageBrowser */; - targetProxy = CE8BC8063D05ECAF125BF3FBADDD4219 /* PBXContainerItemProxy */; - }; - 4DF6DC90A69ABF06C5FE87ADFB9F481D /* PBXTargetDependency */ = { + 00A1072D085D33FF9E229983C05DBFD6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RxCocoa-RxCocoa_Privacy"; target = 5C92E047D2B317BFB31393F449A9EA0D /* RxCocoa-RxCocoa_Privacy */; - targetProxy = 23490CF8E52973EEBB2545881DA768EF /* PBXContainerItemProxy */; + targetProxy = 72C08720005281AE6206FAB73EFB2553 /* PBXContainerItemProxy */; }; - 52D2E18D5980B4CAEB5BC8A9694601EE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxDataSources; - target = 401909D4FB2014BF539896BF0CCA48C2 /* RxDataSources */; - targetProxy = 3B0B8661A87BC63E7130D76B921302DF /* PBXContainerItemProxy */; - }; - 5422A638FC545C95EBA20704B1FCD8E4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = DDD515447CCA93F806AAAE776727CC46 /* PBXContainerItemProxy */; - }; - 57D0AB67F94696CE24C38704A19E8ACE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SDWebImage-SDWebImage"; - target = 94CFBA7D633ECA58DF85C327B035E6A3 /* SDWebImage-SDWebImage */; - targetProxy = E68089470167F492A81316D2665D6A42 /* PBXContainerItemProxy */; - }; - 589545B23EBD0FAC78937DBAE7B1A19A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardToolbar; - target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; - targetProxy = 4E799023B611D10F37D971171776FAF3 /* PBXContainerItemProxy */; - }; - 5D710C4ED1B517BEDDD1A633C1827954 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxCocoa; - target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; - targetProxy = 351468779D2EAAD8A4E07915599C7551 /* PBXContainerItemProxy */; - }; - 5F02745808F174D51E57F01436ABB372 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardNotification; - target = A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */; - targetProxy = 7779A1506585323E855CF257360A560F /* PBXContainerItemProxy */; - }; - 5F38C0ED219C3396D3234A7027D1D999 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AMapFoundation; - target = 39082CE2CA8065D786A75F5C09CFF2C0 /* AMapFoundation */; - targetProxy = EB7827ABAFB11B2C1C8ABA73D74FFDD6 /* PBXContainerItemProxy */; - }; - 61E289E0A9065296349039D1D6E9F9BA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaLumberjack; - target = E95654B155D25890BE8E26081FCA8265 /* CocoaLumberjack */; - targetProxy = BEBCCE129C3FAE08885BCFD5BD9205E0 /* PBXContainerItemProxy */; - }; - 63FBBF33E794DF4852E334EC554EF841 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KingfisherWebP; - target = 0D78006448081C29492BCBD9AE8ECC81 /* KingfisherWebP */; - targetProxy = E3612B3DD75B152847A2E4700FC7886B /* PBXContainerItemProxy */; - }; - 689454A68DEC3ACBD89C2AF2BDF7E4FF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardToolbar; - target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; - targetProxy = 6E073E598E3EA99076172DA844BD3E66 /* PBXContainerItemProxy */; - }; - 6917B6E71FCEC314AB67E58C93947011 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftKeychainWrapper; - target = CF903DF43E111410ECA0C288D36FA21A /* SwiftKeychainWrapper */; - targetProxy = E4DEA0D02B5FB226C50215DE5EEE890E /* PBXContainerItemProxy */; - }; - 6995BCBDB8E4C3A8A27B6C53031785EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AMapSearch; - target = 54F872FDE6669F86C58C8075211FE643 /* AMapSearch */; - targetProxy = DA23849F151292CAC144283C9731C6BC /* PBXContainerItemProxy */; - }; - 69F32127477388DB1EF47C989653AA3C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = F55BBABB60E6185DE4DEF49F651C0513 /* PBXContainerItemProxy */; - }; - 6A65BC82B097A262E0ECC8104999C714 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Popover; - target = 89ADB0D61D0BE9648E9853F5F8BDA717 /* Popover */; - targetProxy = F22C0B0D2654CE7D60475F4A0F317A4C /* PBXContainerItemProxy */; - }; - 6E2911D5C5E2792E0D3E97DAF942B8ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "lottie-ios"; - target = 0B967D7F8561D42493EE289EC8D450D1 /* lottie-ios */; - targetProxy = 251185EBB34BA6D4BE416746A7A9B737 /* PBXContainerItemProxy */; - }; - 6FDE263B4B3D335FF258B018B24FB7EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YYImage; - target = 822E44240F2922DAB12018A6B649BD19 /* YYImage */; - targetProxy = 8F8EA086D17C871ECB9F011BB4399293 /* PBXContainerItemProxy */; - }; - 714C6A6DE5889D6FEF0C0D3F6B46824A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardToolbarManager; - target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; - targetProxy = 83502488CB49241E8DF30052D6327C6E /* PBXContainerItemProxy */; - }; - 7223D67E1534958016F47E100734166E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "MJRefresh-MJRefresh.Privacy"; - target = B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */; - targetProxy = 44F685DF3ECED9770EBF196548A52EFF /* PBXContainerItemProxy */; - }; - 75D1C2E049377428E0F5BAD89A42CDAC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQTextInputViewNotification; - target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; - targetProxy = 3A542A89DBC278D6D53B97A0397FA913 /* PBXContainerItemProxy */; - }; - 776ED604F2D6B820B3270532E2127EA8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ObjectMapper; - target = 162E649F50FEC62B61BDD87D1BD422B4 /* ObjectMapper */; - targetProxy = E631D3C6283AF585E5A7E923F001EC85 /* PBXContainerItemProxy */; - }; - 809C6BB1B364064A1EB1A7BC9739B2D1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = 4010404738D37E89EA60E90F78D27031 /* PBXContainerItemProxy */; - }; - 80A6E6B2BD507370373167F3DF66659C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "MarqueeLabel-MarqueeLabel"; - target = CBFB5A372F4DE9D4BC6B9ADA98B80BFE /* MarqueeLabel-MarqueeLabel */; - targetProxy = B4BDFA40DE5E6036BBECD2EB7B66B29E /* PBXContainerItemProxy */; - }; - 84497B27C720F031D3E7C120FA160FB6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AMapFoundation; - target = 39082CE2CA8065D786A75F5C09CFF2C0 /* AMapFoundation */; - targetProxy = 5E8B6A6FEC9A5EACF8141B1EA858ACC8 /* PBXContainerItemProxy */; - }; - 8602DE5A03B3206977FCE64395F9BC6F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDCycleScrollView; - target = CBED833AAD6266F3AEFE9BE31C68E094 /* SDCycleScrollView */; - targetProxy = BDE639580A000A2BFE14DF3515BE586D /* PBXContainerItemProxy */; - }; - 8C9B20CA05D6610DBC8634EA66CA201D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = 550F076493239FB30A4EE33B88AF9F5F /* PBXContainerItemProxy */; - }; - 8F28C015BFED2FBC5A4F2EE229EE4298 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftyUserDefaults; - target = A049F3164EBC335A7982A4E1FB3A5EAA /* SwiftyUserDefaults */; - targetProxy = 2CAEE310D3B97BAA4B4540B2F5BCD32E /* PBXContainerItemProxy */; - }; - 925E49A503DD65CF0410C5E0C24E16F9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SGQRCode; - target = 2035A387A5D5D85BEF7F693731454A3D /* SGQRCode */; - targetProxy = 957B3DDF554B4518F813C6CAC2B8A130 /* PBXContainerItemProxy */; - }; - 93ABE1C778AFF8E2A9551EF47F2263AD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "ObjectMapper-Privacy"; - target = E68E71E462C154107C49C379E539826E /* ObjectMapper-Privacy */; - targetProxy = 5AE3B621B1CA9B1AA9EF9401040C162D /* PBXContainerItemProxy */; - }; - 9C63E297360D2C008DB2A7A057984497 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = OpenIMSDKCore; - target = 0E87F100EFC3B44F5BB5AF12375D07F1 /* OpenIMSDKCore */; - targetProxy = 6A5E8AD821DE5186B7E4B0DB322E54FC /* PBXContainerItemProxy */; - }; - 9F154867C1546E6B38EE53F105E0E6A4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RxSwift-RxSwift_Privacy"; - target = 11779BD43CF8155A53E2C00B1566A19F /* RxSwift-RxSwift_Privacy */; - targetProxy = AA24B487121696F2E622121056444F4D /* PBXContainerItemProxy */; - }; - A4415C13DF30CDB026B7F465A25913D6 /* PBXTargetDependency */ = { + 02D15F927AE4B4488778259A1FDCF822 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Kingfisher-Kingfisher"; target = 9828BBC09E9FB1238624113D7456E59E /* Kingfisher-Kingfisher */; - targetProxy = 291AB26A08BE59A9CF84C48A9280A9D1 /* PBXContainerItemProxy */; + targetProxy = 1D943D61C4FC1EFCE5755ABD4F4D2B05 /* PBXContainerItemProxy */; }; - A64B4139FBE40A8C7EDA0251EF0F4859 /* PBXTargetDependency */ = { + 02DCF412CCF54ABF196C58318A06952F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YYImage; - target = 822E44240F2922DAB12018A6B649BD19 /* YYImage */; - targetProxy = F733C729C72BE1DCD0D28268F2F49834 /* PBXContainerItemProxy */; + name = "AlipaySDK-iOS"; + target = 4847ACB1E2799345AA74D9E317048D58 /* AlipaySDK-iOS */; + targetProxy = 711580CB1E485FAD6858FE8BDFBCF41A /* PBXContainerItemProxy */; }; - A7251C0B1CD15B90F362B6371D9ABEB2 /* PBXTargetDependency */ = { + 03BE676D6E796F73D6FDE561982E015D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = AMap3DMap; - target = 3957A4F8F4B8823C2472883F7D067592 /* AMap3DMap */; - targetProxy = DB6D8BDA071E9775836E8BBCAE676643 /* PBXContainerItemProxy */; + name = IQTextInputViewNotification; + target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; + targetProxy = D5FB8EBC028DC94ABD37F92E03BF65B7 /* PBXContainerItemProxy */; }; - AB2ECBAF111733CC1E8352C2268369B9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = HXPHPicker; - target = 6968C202A297A606D5EACC3679AAA627 /* HXPHPicker */; - targetProxy = 21B48BBB7EABFF2A496C879EB5D4C009 /* PBXContainerItemProxy */; - }; - AEF4127D51E2B1A6B9A82E278A399887 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kingfisher; - target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = 9EA5F55EAE063424752D3D0C69BAE494 /* PBXContainerItemProxy */; - }; - B1771CC8AEC0A0F67E148386180E2090 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "CocoaLumberjack-CocoaLumberjackPrivacy"; - target = 276021C4482165D46E0CBBEFB822FE95 /* CocoaLumberjack-CocoaLumberjackPrivacy */; - targetProxy = A68E61F850DBF2CE19F5C798AC2C4E9B /* PBXContainerItemProxy */; - }; - B2072E6A13996825B6F5921C0E227A76 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Alamofire-Alamofire"; - target = 976126A1CE06DC6E162563800E1BDF14 /* Alamofire-Alamofire */; - targetProxy = 1D808FF63478B530FFE6E3EEFF043D66 /* PBXContainerItemProxy */; - }; - B8757CEC296AE79AAE009388BE836685 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MarqueeLabel; - target = C23DB88E45B0ED14F0C8827BE9C46C95 /* MarqueeLabel */; - targetProxy = 94827A004FD74C9C3120375525F6B18F /* PBXContainerItemProxy */; - }; - BBCAD01738D428E18C51619FEB646864 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Moya; - target = 17F9141D333DA1A7BE5937F227221070 /* Moya */; - targetProxy = C4416B962E9529F40E5126CF117DFB3C /* PBXContainerItemProxy */; - }; - BC0D789B7BCA7AB5F8580B8AF266CA7D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "WechatOpenSDK-XCFramework"; - target = 7F18C31A804695333763EEC303E265D7 /* WechatOpenSDK-XCFramework */; - targetProxy = 7CA119DA3BAABAD24A6F78C73396D36D /* PBXContainerItemProxy */; - }; - BF6E306977B6E64CFC3ADC3266986004 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 3828D56BFE94CBD1850681EFA642F14A /* PBXContainerItemProxy */; - }; - C1934C77AE323069AA421850DE47831F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQKeyboardCore-IQKeyboardCore"; - target = EEE261386011CDF271BE289F73FF5959 /* IQKeyboardCore-IQKeyboardCore */; - targetProxy = 1CB9B8C07A8A9891C031B68836854138 /* PBXContainerItemProxy */; - }; - C2B537A7B0121571C7968255381B9EAC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AMapFoundation; - target = 39082CE2CA8065D786A75F5C09CFF2C0 /* AMapFoundation */; - targetProxy = 09F00EF127F628393D4A26B1A7AB21A7 /* PBXContainerItemProxy */; - }; - CA923E8E6E0A16A454FA2C47B6696544 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = 01A6350127486356A1C2E85210A9D9F7 /* PBXContainerItemProxy */; - }; - CD6625D0A5E51DDBD5BE9B906CD190E3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQTextView; - target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; - targetProxy = E30502CDF95F0580DCCB4E0728339B4C /* PBXContainerItemProxy */; - }; - CF114D96576327C59773C0EC9865FFF2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AMapFoundation; - target = 39082CE2CA8065D786A75F5C09CFF2C0 /* AMapFoundation */; - targetProxy = 346A27623BAC9A07E38D677AA3C8EAB8 /* PBXContainerItemProxy */; - }; - CF7AA26E6D68D6289431F15F070521F4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxRelay; - target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; - targetProxy = CAEFA3ED1143385F67434B9DA8870286 /* PBXContainerItemProxy */; - }; - D991E1747DECD8EF3091A3C02FF0BD58 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = FBFD31B834AB5C365995BB83B4E10112 /* PBXContainerItemProxy */; - }; - DAB0B58F0B3BED768A9B0F0BB1868BB9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GTCommonSDK; - target = 997E783A70C18DC9BA830488608C03AA /* GTCommonSDK */; - targetProxy = 1C8EE194FACDF5C3033FD7F2B2AFE0E3 /* PBXContainerItemProxy */; - }; - DB3FA8A17D62B44653577F81BBC78D4F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftDate; - target = 6038CE6006EFBE9D905454CF01909C42 /* SwiftDate */; - targetProxy = 4D5B7CBCEA667224D25C228EAFC38883 /* PBXContainerItemProxy */; - }; - DB546251EA6DB2A51377E50F06779EA6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Masonry; - target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; - targetProxy = EAB48EE6968E065C1D9DB63BA488C24C /* PBXContainerItemProxy */; - }; - DB812A3F914FF838A6360E92BE18ACF1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SwiftyJSON-SwiftyJSON"; - target = 677650A76A720691B88A6959EFED6418 /* SwiftyJSON-SwiftyJSON */; - targetProxy = 5AB7291B64E5815D31A12FF8566204DC /* PBXContainerItemProxy */; - }; - DD21BD7E9672B4F13EF7DE2FFEA26DFB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = B705FB637F1BBFCB6579C23344956B53 /* PBXContainerItemProxy */; - }; - DF0192CB058D6E4DAA11A8136A3002F4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftyJSON; - target = D118A6A04828FD3CDA8640CD2B6796D2 /* SwiftyJSON */; - targetProxy = A920C06099E87CF8D916443CD9A164EC /* PBXContainerItemProxy */; - }; - DF953A6B0F070C79FFDEB6B95072FB36 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJExtension; - target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; - targetProxy = E2AEEDC1607FF9458AA1B4DB2E2A76EF /* PBXContainerItemProxy */; - }; - E31B8ADFB939C29A420C91B025937B5A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; - target = 7C5613175BBC4BF67E36DB4FBEBC01D0 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */; - targetProxy = 65E50FFCCC371775D923800BABEFB3B2 /* PBXContainerItemProxy */; - }; - E3BA0C8E703DE59FB19C26D247A970A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQKeyboardReturnManager-IQKeyboardReturnManager"; - target = 88810798DA63A2F6611B0970EA276DEC /* IQKeyboardReturnManager-IQKeyboardReturnManager */; - targetProxy = 619CEF8B1A643617590B0E88D79290B1 /* PBXContainerItemProxy */; - }; - E641EE970C8C6EC0575D11D9128B2887 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = B7B9C134FCD75F5BB59532E17B97C8CE /* PBXContainerItemProxy */; - }; - E76212A3A2D1721BA51C1D262DF271D4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kingfisher; - target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = 4052A9D51559EEE02D2F445E659D02B7 /* PBXContainerItemProxy */; - }; - E9A3E7D15D6686E38B55421279DE4D16 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxCocoa; - target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; - targetProxy = E068344C6A7510CD60EE8C7E17238229 /* PBXContainerItemProxy */; - }; - EA400D6D6B28C34C0608A602D119CB89 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardManagerSwift; - target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; - targetProxy = 4F55F321DF9C2250018DD25606C55A69 /* PBXContainerItemProxy */; - }; - EA90E841FE1B83FD460BE5DF34C8A3B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "MBProgressHUD-MBProgressHUD"; - target = 3AE57FC4CF27B0BC540B3112353377BF /* MBProgressHUD-MBProgressHUD */; - targetProxy = 938DDA32C97451586FE0A98AD9C856EA /* PBXContainerItemProxy */; - }; - EB3A666E9AC00B8B6AE940FA6874A778 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxRelay; - target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; - targetProxy = A6E4A18D00B0A670BC012935EDC0AA0D /* PBXContainerItemProxy */; - }; - EDAC16EE2188486D189990FA13B3456D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = 2736CAD34BEA107334B3081DDB656F20 /* PBXContainerItemProxy */; - }; - EE3D14813A7F1781B2A0689D95DF691E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MBProgressHUD; - target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; - targetProxy = D4FE30F91F5C24105C61589F44DF5C43 /* PBXContainerItemProxy */; - }; - EEDC1E39AB51D6AAC6540D06A24AB984 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = URLNavigator; - target = 3AEB4A97CEAE5A782BA5E5D6A468A913 /* URLNavigator */; - targetProxy = 2AC7556419A170F98BBE91C1B4CEDCB9 /* PBXContainerItemProxy */; - }; - F12D1B019C7180F20A92D3C2AAF995CD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ZXSDK; - target = 8194323886ECAF7E912EFDAFC84017AA /* ZXSDK */; - targetProxy = 9AB9C38E4DCCA37D29EC24EF2947CAE5 /* PBXContainerItemProxy */; - }; - F2523D133596D9DAA94F301030473634 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; - target = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */; - targetProxy = E9CC07909D25C012E9D227D1C083DA10 /* PBXContainerItemProxy */; - }; - F3FD20E5A63C1BFA024C5E8E681CD267 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQTextView-IQTextView"; - target = A6602BCAA6F4F932A586C41D0B7E019C /* IQTextView-IQTextView */; - targetProxy = EE474117261DF6BD7D27B58EF759E9F9 /* PBXContainerItemProxy */; - }; - F6918A53726776461E823475A47C47EF /* PBXTargetDependency */ = { + 053F080C03AA720B6C921F0EA8B4B378 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = IQKeyboardReturnManager; target = 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */; - targetProxy = 0B8DB26A8EDC383CE89F82E2A73C1EA5 /* PBXContainerItemProxy */; + targetProxy = 9C23B6E671F3DDEF29CFD700ABB0A4F6 /* PBXContainerItemProxy */; }; - F921C1A1EF134BAC85F4DF9606458914 /* PBXTargetDependency */ = { + 05931D2B26F77153CB3201A4A1B1FB10 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Moya; + target = 17F9141D333DA1A7BE5937F227221070 /* Moya */; + targetProxy = 61510A589B2AA984E10206B244AA35EC /* PBXContainerItemProxy */; + }; + 061A0A7A6AC73DE97E2687A75901F5C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GTCommonSDK; target = 997E783A70C18DC9BA830488608C03AA /* GTCommonSDK */; - targetProxy = 758012FD9D7EB54361C1B62A5B44C08B /* PBXContainerItemProxy */; + targetProxy = C4FF52F7A63CA146057AFEE8061A121E /* PBXContainerItemProxy */; }; - F98B4F6C1E5D43B2281CD4D147C752A5 /* PBXTargetDependency */ = { + 06B6359C2148234D64D3CF1461F00BDA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Differentiator; - target = 212F79CE462FC723AF42979B57FBB8A6 /* Differentiator */; - targetProxy = 22335D1F8C7B94C537A5259BA4C371FC /* PBXContainerItemProxy */; + name = "IQKeyboardReturnManager-IQKeyboardReturnManager"; + target = 88810798DA63A2F6611B0970EA276DEC /* IQKeyboardReturnManager-IQKeyboardReturnManager */; + targetProxy = 0B078191623EB8D1BFC714D4938E6AA7 /* PBXContainerItemProxy */; }; - F9E3CB353BAFA9E9E26238DB24750CB9 /* PBXTargetDependency */ = { + 06CC905783430DCBA4B28924A156B219 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbar; - target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; - targetProxy = CDCD2167117F43C93949FA68B3A394FB /* PBXContainerItemProxy */; + name = HXPHPicker; + target = 6968C202A297A606D5EACC3679AAA627 /* HXPHPicker */; + targetProxy = 6A522AD144F85728A937B841E4219A34 /* PBXContainerItemProxy */; }; - FAB28E7185E42F14BA8E7C81771E7BF9 /* PBXTargetDependency */ = { + 08CB616BE7CC88F7F2A67328CB21EF5E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RxSwiftExt; - target = ED7124602AA1B5C6A257912C7E8B793B /* RxSwiftExt */; - targetProxy = 8421B4F40D1102DFCA7ABB75FA1D0379 /* PBXContainerItemProxy */; + name = SwiftKeychainWrapper; + target = CF903DF43E111410ECA0C288D36FA21A /* SwiftKeychainWrapper */; + targetProxy = 82CF266E41767644FD6FDD6305E18060 /* PBXContainerItemProxy */; }; - FC8EF6355BA5F6C6FD2BD0348C24DE14 /* PBXTargetDependency */ = { + 09E258F4CBA9A48361CE274E9A3B7F86 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = OpenIMSDK; + target = 0028E46539689892CC926BB8D811EF54 /* OpenIMSDK */; + targetProxy = 9038E5B5FF55EF8D78069E4E04B077A6 /* PBXContainerItemProxy */; + }; + 0E721B89BF12521E129E16FB49548BBA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = B9C34D13AE158515EE54C897C01D3B2C /* PBXContainerItemProxy */; + }; + 119FBF0B2F7BE1CE61569418C63670C8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardToolbarManager; + target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; + targetProxy = D191F8298F89E8435A773EB0C46B6730 /* PBXContainerItemProxy */; + }; + 11C9AC3D696902A308FAC527831E4214 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MqttCocoaAsyncSocket; + target = B017CC75E2704C686AA0A2203247D9C7 /* MqttCocoaAsyncSocket */; + targetProxy = C008E60717A970F94F53D475F54BF551 /* PBXContainerItemProxy */; + }; + 13814B5F73D6A9D057A4645F22952380 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "lottie-ios"; + target = 0B967D7F8561D42493EE289EC8D450D1 /* lottie-ios */; + targetProxy = BCC1D546C11697A4C2AAFDC6C624F200 /* PBXContainerItemProxy */; + }; + 14566B4B65F642562FC97EA6C971D955 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ZXSDK; + target = 8194323886ECAF7E912EFDAFC84017AA /* ZXSDK */; + targetProxy = 9933D71F465BD1267CBE04881A644883 /* PBXContainerItemProxy */; + }; + 14C2A59A23B990EC78D9686BFD09C2E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GYSDK; + target = 17D542296AD0C26B1C5815268E5C6BF6 /* GYSDK */; + targetProxy = A19C5EB2E87A2319EA469F7A6939880F /* PBXContainerItemProxy */; + }; + 1539E005446B7DAA5069E44BDB998F19 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RxSwift-RxSwift_Privacy"; + target = 11779BD43CF8155A53E2C00B1566A19F /* RxSwift-RxSwift_Privacy */; + targetProxy = 08CE2068C3A88451E5040A623F2EF8C9 /* PBXContainerItemProxy */; + }; + 16D37F6F9C0102A83E71C6BE6B84C6CA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "MBProgressHUD-MBProgressHUD"; + target = 3AE57FC4CF27B0BC540B3112353377BF /* MBProgressHUD-MBProgressHUD */; + targetProxy = F6973D2F8D6374A9876A0669AC83E21E /* PBXContainerItemProxy */; + }; + 1C4F4702C94163ACD0D7378F24244C9E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDCycleScrollView; + target = CBED833AAD6266F3AEFE9BE31C68E094 /* SDCycleScrollView */; + targetProxy = B87128D8A77E84948FCE5153887EC567 /* PBXContainerItemProxy */; + }; + 21281E0511BBBAA3B120421BDA31D470 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SnapKit-SnapKit_Privacy"; + target = 8A8DB685241263AFDF5E6B20FE67B93A /* SnapKit-SnapKit_Privacy */; + targetProxy = 92A582F518E854FD733F266C5D4796E6 /* PBXContainerItemProxy */; + }; + 22FD2D9961CFCF2D03384022B321BE58 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; + target = 7C5613175BBC4BF67E36DB4FBEBC01D0 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */; + targetProxy = E0964E76E3BFDF3A8D89CD0F00020918 /* PBXContainerItemProxy */; + }; + 23950B2FE9701D22FAB1B2F3CEAD4003 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; + targetProxy = 5C18B6A1EEDBA0732591A28ECE5A889F /* PBXContainerItemProxy */; + }; + 2442F750D27033389D5ADDB48BD56A14 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = B22045B680BC1B899817EED88D8D5A1D /* PBXContainerItemProxy */; + }; + 24ACCCFD5AC8526CB6FEEC407A94E172 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftyUserDefaults; + target = A049F3164EBC335A7982A4E1FB3A5EAA /* SwiftyUserDefaults */; + targetProxy = A835495F4170F147B9897D5BF2C7A8EC /* PBXContainerItemProxy */; + }; + 2670CA7666FADB6C71B574E88FF46068 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YYImage; + target = 822E44240F2922DAB12018A6B649BD19 /* YYImage */; + targetProxy = A5E788E6C131456A7332F4B7A799752D /* PBXContainerItemProxy */; + }; + 2C4C823F501A47C36E0AABE5C9C2EFE6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = A6527E49C34B922D5300F4DEA05B1C95 /* PBXContainerItemProxy */; + }; + 2D1FFB6A11AC395B33C7986274813725 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ObjectMapper; + target = 162E649F50FEC62B61BDD87D1BD422B4 /* ObjectMapper */; + targetProxy = 48694D4FD0821ECF2A72A26E45A5707E /* PBXContainerItemProxy */; + }; + 2E65B9D035B07836C53FC44882FD5411 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 7802C1334D1A4C1553F5AB6E79180E1B /* PBXContainerItemProxy */; + }; + 317B2AF08FF5FC2546411F885D9E4AA3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = URLNavigator; + target = 3AEB4A97CEAE5A782BA5E5D6A468A913 /* URLNavigator */; + targetProxy = 5BA101BE17462FBE5638E6027D59942A /* PBXContainerItemProxy */; + }; + 331EE3C0890333418E0AB093E5D012A1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQTextView; + target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; + targetProxy = 8875DBA31FC4A29EB1EBAF05D113AC5F /* PBXContainerItemProxy */; + }; + 3D7C07273E2759A8305988ECF754865E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQTextInputViewNotification; + target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; + targetProxy = 68BF8CBF31EE5DFCFD3D38F3CCECF281 /* PBXContainerItemProxy */; + }; + 3DA49EDBDF22679824B4053DEDE74E38 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Popover; + target = 89ADB0D61D0BE9648E9853F5F8BDA717 /* Popover */; + targetProxy = C6CC084AA4C491E404AEF31A9604EE5A /* PBXContainerItemProxy */; + }; + 3DCF89CB2DF6A9464255DB3BC9FBC079 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = OpenIMSDKCore; + target = 0E87F100EFC3B44F5BB5AF12375D07F1 /* OpenIMSDKCore */; + targetProxy = 56EDFF18E6A7EF62F9778F9D339BA6EF /* PBXContainerItemProxy */; + }; + 3DF275744C0F1F92E2A45684C525CD7B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Masonry; + target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; + targetProxy = 82061C8B1C74993546EF1E76F7EE7AAA /* PBXContainerItemProxy */; + }; + 41378EFE1B6698D2B8BDE3375AA5BCBC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxDataSources; + target = 401909D4FB2014BF539896BF0CCA48C2 /* RxDataSources */; + targetProxy = 3F5CC1B761456481613F5968A6E2F9B0 /* PBXContainerItemProxy */; + }; + 41F47FE08C927557348C692B5934F3A4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AMapFoundation; + target = 39082CE2CA8065D786A75F5C09CFF2C0 /* AMapFoundation */; + targetProxy = 9DBD8D57BD934FE628357F1657ACBC0D /* PBXContainerItemProxy */; + }; + 44DDEE64FB3449B2B3E6F53316008432 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GTCommonSDK; + target = 997E783A70C18DC9BA830488608C03AA /* GTCommonSDK */; + targetProxy = FC1664C68B15803EBB10BBA3FAA914B8 /* PBXContainerItemProxy */; + }; + 468FC4A3520CA783060276F1FA9E72D6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardToolbar-IQKeyboardToolbar"; + target = B247F77A0CD5E19C8187A9BA1EB58C09 /* IQKeyboardToolbar-IQKeyboardToolbar */; + targetProxy = 6651E6377E743CA4FD3A4E95EFF1CD92 /* PBXContainerItemProxy */; + }; + 4A9B378EC57730012AB00FFA7E1BA3CD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = AMapLocation; target = 971676D1C9A11C105647D995975ACE4F /* AMapLocation */; - targetProxy = 687188A6DD7DBEBCC96D7A5F07767DE7 /* PBXContainerItemProxy */; + targetProxy = BE315323C4C47FF428043111D60EAAD8 /* PBXContainerItemProxy */; }; - FD2A66E21108EDDB256389A4711EB95B /* PBXTargetDependency */ = { + 4CAC7E59316C2FDE7A939824D0EDD010 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "MJRefresh-MJRefresh.Privacy"; + target = B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */; + targetProxy = 1672C6BBECCECC637563353E01C11192 /* PBXContainerItemProxy */; + }; + 4E7D8402DD5720638C3D65337010A923 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SnapKit; + target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; + targetProxy = 900A11A7156655DEE3677C298CD2C432 /* PBXContainerItemProxy */; + }; + 4F160F00FC669AB62227CBF1A69D8CC4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = 0414BDF22C6CC276280BDBA72B08F65C /* PBXContainerItemProxy */; + }; + 5212F0408404D38D8B1703FBFF1A0195 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Differentiator; + target = 212F79CE462FC723AF42979B57FBB8A6 /* Differentiator */; + targetProxy = EACB696E9FAB7D18440A6DD836076FFD /* PBXContainerItemProxy */; + }; + 5321810D064BBAE1E9CDBF73A2AAE428 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Kingfisher; + target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; + targetProxy = 962A816AFE6552938E803DAC24B893E7 /* PBXContainerItemProxy */; + }; + 55DF357831ED9BC1DB0033056C869B0F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "MJExtension-MJExtension"; target = B32AF3F43989CBA171BB1FB3957A4509 /* MJExtension-MJExtension */; - targetProxy = 2990B8F4BC142DDF29DD421FC13B3B30 /* PBXContainerItemProxy */; + targetProxy = 9E43213877E86A150CB3395AB1BD2520 /* PBXContainerItemProxy */; }; - FE5B9817129F124FE2216068BE379B31 /* PBXTargetDependency */ = { + 565F3DFF9BA679342F9043CC623DC846 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQTextInputViewNotification; - target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; - targetProxy = D51DDF55D7D77DC559217AD87DCCF030 /* PBXContainerItemProxy */; + name = RxCocoa; + target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; + targetProxy = F56741E388B39D1A5A64905DF9B7D036 /* PBXContainerItemProxy */; }; - FF0B57E9EB26306BBB98E52B91423F15 /* PBXTargetDependency */ = { + 5EAFBF615DAF48A2F3E28F72217759F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQTextInputViewNotification; - target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; - targetProxy = 2DE397E5C1AB94922E974FED0D5E7E32 /* PBXContainerItemProxy */; + name = IQKeyboardNotification; + target = A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */; + targetProxy = C157198BB10755114C07BB7406C647DD /* PBXContainerItemProxy */; }; - FF66E54E7CF9D1BB190AF4ADC129371C /* PBXTargetDependency */ = { + 623EADCF50D7FB34CDAA0B88F5DFBF97 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = DCD38EE22CEFFDC077E0BBA299A4D094 /* PBXContainerItemProxy */; + }; + 6461C8BD9A5F27DC75A5E6BA7AAA64E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MBProgressHUD; + target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; + targetProxy = 5F59C655DBC3973217A9541C1C6FA78F /* PBXContainerItemProxy */; + }; + 67D619A424F2BC1B051F9CAB4BFA9804 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AMap3DMap; + target = 3957A4F8F4B8823C2472883F7D067592 /* AMap3DMap */; + targetProxy = 11D34C1D6EF7623D84CC8128C18D304B /* PBXContainerItemProxy */; + }; + 69B99208E6BA6AD0321E7F37C298C0F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = TagListView; target = B43A58FC22C898DE29F6E12FE9636507 /* TagListView */; - targetProxy = AD8A31902E3ABC2E470660E5AD02AA2B /* PBXContainerItemProxy */; + targetProxy = 005562AA15FFEA41AE71867F25E6C812 /* PBXContainerItemProxy */; + }; + 6B7A1136FEC9630E5810811A03304F70 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "MarqueeLabel-MarqueeLabel"; + target = CBFB5A372F4DE9D4BC6B9ADA98B80BFE /* MarqueeLabel-MarqueeLabel */; + targetProxy = D70CABEAD978481AC5C27E1BD3FB2251 /* PBXContainerItemProxy */; + }; + 6D9C59384F3559350AFE1FDB2CA37BE0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "lottie-ios-LottiePrivacyInfo"; + target = BF2A15FEC3F3424BBC4B9AD5F86F2D54 /* lottie-ios-LottiePrivacyInfo */; + targetProxy = 361A745847E7D60EBF467B63CB36731F /* PBXContainerItemProxy */; + }; + 718FB82B61EAA6741EEF657ACE476A08 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardToolbarManager; + target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; + targetProxy = 26CC8E64F4AD955ED447FD144ECF5694 /* PBXContainerItemProxy */; + }; + 71CEE74B9E1954F63D1CA59CF9FF432F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJExtension; + target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; + targetProxy = 661F360A55C36C733C8034D2EE462790 /* PBXContainerItemProxy */; + }; + 731036B6B7F1CCD04A28C88363BE792B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ObjectMapper-Privacy"; + target = E68E71E462C154107C49C379E539826E /* ObjectMapper-Privacy */; + targetProxy = 46247FCF2DAB5659B51A80E78B6C0ED6 /* PBXContainerItemProxy */; + }; + 7733274C6E0C595785A2E7696BD16672 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RxRelay-RxRelay_Privacy"; + target = 39101A2B1096DFB129FCDE5490875054 /* RxRelay-RxRelay_Privacy */; + targetProxy = 27D15A52F64802032F0130937948DD51 /* PBXContainerItemProxy */; + }; + 7CC9A74710C42D1501C895BAF55B9B55 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "CocoaLumberjack-CocoaLumberjackPrivacy"; + target = 276021C4482165D46E0CBBEFB822FE95 /* CocoaLumberjack-CocoaLumberjackPrivacy */; + targetProxy = D9CAB0682DC824983DD8C8336131DB73 /* PBXContainerItemProxy */; + }; + 7DC915678E8254CF93E03735EE74B0A7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; + target = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */; + targetProxy = 7DA7C2D6F3BF93B0840403916210054F /* PBXContainerItemProxy */; + }; + 81D0C1CE48C78D8960A21CC9B8BB66E2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AMapSearch; + target = 54F872FDE6669F86C58C8075211FE643 /* AMapSearch */; + targetProxy = 4CC59E2DAB42F874FD77E5D348407F1E /* PBXContainerItemProxy */; + }; + 844EE58D8052C7FA612D8983BB848A7A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaLumberjack; + target = E95654B155D25890BE8E26081FCA8265 /* CocoaLumberjack */; + targetProxy = 5CC296B0634082698430B8F8EF10B236 /* PBXContainerItemProxy */; + }; + 87B3CF7A6AEA4860A117BE6197DF4608 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KingfisherWebP; + target = 0D78006448081C29492BCBD9AE8ECC81 /* KingfisherWebP */; + targetProxy = AAEAC1CB022C91946977932E2F36F554 /* PBXContainerItemProxy */; + }; + 8874094E975774071CC66CE460F5C6FE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQTextInputViewNotification-IQTextInputViewNotification"; + target = 4502C7427440BEB17A50C0BF6E638A85 /* IQTextInputViewNotification-IQTextInputViewNotification */; + targetProxy = FE7DB9C7D653C78FFFFC8152E5AD0095 /* PBXContainerItemProxy */; + }; + 89D1D0D1D4489194150C65BB3B0729E3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Kingfisher; + target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; + targetProxy = F693C01CC808015A7A5BAD5468236061 /* PBXContainerItemProxy */; + }; + 8C40FA741B59320725CF534BF3EBAE33 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Alamofire-Alamofire"; + target = 976126A1CE06DC6E162563800E1BDF14 /* Alamofire-Alamofire */; + targetProxy = B0ACD0077EA75FA016730C75D87D54A7 /* PBXContainerItemProxy */; + }; + 8D0DABD68F75AE005635BE2D6B73E6E5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardToolbar; + target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; + targetProxy = CF1FD6D0A950736411D40E1771B30E1D /* PBXContainerItemProxy */; + }; + 8D7361C4F6FE5F91025E75836705AA22 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQTextView; + target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; + targetProxy = 2DCE738315013DB5A0C9984AD87F34DC /* PBXContainerItemProxy */; + }; + 8ECC0F686D557BA3FD2C4823EECDC82D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardManagerSwift; + target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; + targetProxy = B94D53E29BDC4FE85F14286CAC4E28A0 /* PBXContainerItemProxy */; + }; + 8FC66720C41E4AE84F637B0A2DD14EE2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftDate; + target = 6038CE6006EFBE9D905454CF01909C42 /* SwiftDate */; + targetProxy = F3D1B8851F2A07DDC598C1CFC751EAFD /* PBXContainerItemProxy */; + }; + 94C567E329025F741BC2E50B5EB8DD0F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardCore-IQKeyboardCore"; + target = EEE261386011CDF271BE289F73FF5959 /* IQKeyboardCore-IQKeyboardCore */; + targetProxy = 49A6EB9F227A89D488C8435C6E92C190 /* PBXContainerItemProxy */; + }; + 97F5677077D12F150E9E2A81F9C5C267 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJExtension; + target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; + targetProxy = E90ECBB4688323A3CEF17EA6815410D3 /* PBXContainerItemProxy */; + }; + 9943B828208CC1B8924821C99D81BA93 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardCore; + target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; + targetProxy = 15248462A6902916CD93734DD2D1B4D0 /* PBXContainerItemProxy */; + }; + 9A16765A9DC1FB99C242C68E7264FACC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQTextView-IQTextView"; + target = A6602BCAA6F4F932A586C41D0B7E019C /* IQTextView-IQTextView */; + targetProxy = E8AA5482A19C7D587D709CC72C114919 /* PBXContainerItemProxy */; + }; + 9AB57BB286C6B3B66A9922B2D4690340 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardCore; + target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; + targetProxy = 42A5711AAE77808CC59250A7D42C86EF /* PBXContainerItemProxy */; + }; + 9C5610B5C59B89EEAA95B61A07D4619C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SDWebImage-SDWebImage"; + target = 94CFBA7D633ECA58DF85C327B035E6A3 /* SDWebImage-SDWebImage */; + targetProxy = 30D675D8FB292BC97790B551F7391FFC /* PBXContainerItemProxy */; + }; + 9CFE6EF2F769A079911AA46CAD3E782D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = 1F0037CA940608843934DB210530C610 /* PBXContainerItemProxy */; + }; + 9E397E80B5B748D13CF4BCD1E4A99E2E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardNotification-IQKeyboardNotification"; + target = 2B8FF445A5162845FAB9EC00FC92B694 /* IQKeyboardNotification-IQKeyboardNotification */; + targetProxy = 71DD00F116BAD0DFAC8EC511E3906D67 /* PBXContainerItemProxy */; + }; + 9F38598720ADB94FCD5D729271A29639 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = D4D375C3A48E507FEB7E84DDB2092278 /* PBXContainerItemProxy */; + }; + 9FA9141BF656042985FBEE89022581C7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Differentiator; + target = 212F79CE462FC723AF42979B57FBB8A6 /* Differentiator */; + targetProxy = 73DCD6E414CE9A83C0943483E2B19CD7 /* PBXContainerItemProxy */; + }; + A08C5B30F2EC99B5093898EB8BA4F890 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AMapFoundation; + target = 39082CE2CA8065D786A75F5C09CFF2C0 /* AMapFoundation */; + targetProxy = 0E3A7827B06EC0665DD6957B0DAA7415 /* PBXContainerItemProxy */; + }; + A0B59B7EED6E088DDE107DE1E609B795 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; + targetProxy = 130043C378BF97EED251A863945441F0 /* PBXContainerItemProxy */; + }; + A814D6E3E166EE1D154579D9DB9CD4D8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxCocoa; + target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; + targetProxy = 53F50A050E96C7626FC86FF54C0E6588 /* PBXContainerItemProxy */; + }; + A8988DDA2B032FA533D262B179690162 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 23D42DCB8C00CDFBB554522E6BD15F65 /* PBXContainerItemProxy */; + }; + A9BE54AB584D7D98F5ED5E3B41EE4578 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SGQRCode; + target = 2035A387A5D5D85BEF7F693731454A3D /* SGQRCode */; + targetProxy = C47774166C67169A42A6BDE42E4F049B /* PBXContainerItemProxy */; + }; + ABACB0A175D8B505AFEA6FAA85221E85 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardToolbar; + target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; + targetProxy = EA60B9C6187F2AE83386DE333F9F4763 /* PBXContainerItemProxy */; + }; + B12B4CF458578356E489F06F6219F4B5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxCocoa; + target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; + targetProxy = E4D2BF6E5E676CBDFA10D95310C021CD /* PBXContainerItemProxy */; + }; + B178318E6B06FEBDFCA880490160D2DB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardNotification; + target = A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */; + targetProxy = 036E821D970EBBF9BDD56CF7C69E06B5 /* PBXContainerItemProxy */; + }; + B30A38F1D067613698D0ECBFF82F45EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 94CE7B4000DBC5A962E3F64FFC67AF62 /* PBXContainerItemProxy */; + }; + B3E194739BBE5563CEADD1783522BA9F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftyJSON; + target = D118A6A04828FD3CDA8640CD2B6796D2 /* SwiftyJSON */; + targetProxy = 45B26FD291F5F9D8340966591898C70A /* PBXContainerItemProxy */; + }; + BC0345E0443F779BCAA4606B48AFDE3A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJRefresh; + target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; + targetProxy = 21C92A000FA0417BEFCB4DCF5D5AD45C /* PBXContainerItemProxy */; + }; + C23A0C6F18CC3C8FB09F11EB7C356E83 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = 65F950B2E8361CFF33A4B14607334F20 /* PBXContainerItemProxy */; + }; + C2C1B24DD139892A57A460B78898AAA1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MarqueeLabel; + target = C23DB88E45B0ED14F0C8827BE9C46C95 /* MarqueeLabel */; + targetProxy = 011809F5F4008DF209C1D8504B7C00E8 /* PBXContainerItemProxy */; + }; + C43B7F857249763D7A59CDE2501B860E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YYImage; + target = 822E44240F2922DAB12018A6B649BD19 /* YYImage */; + targetProxy = 4344B82D636C96D4013D67AEE644BA36 /* PBXContainerItemProxy */; + }; + C5286BCEE3FC137F2FA80EE171F418A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardCore; + target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; + targetProxy = 738F3545E5329F8B74DF73017F82102E /* PBXContainerItemProxy */; + }; + C91890FA12733C2B65D6C2A630A8E11B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaMQTT; + target = 4EB168A830EFA6136FA93357D1F1511A /* CocoaMQTT */; + targetProxy = 907A43C2D2CE2FF7D4D7A74C0B13DB98 /* PBXContainerItemProxy */; + }; + C9790921DBE75E75BD1923A5433D496E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = OpenIMSDKCore; + target = 0E87F100EFC3B44F5BB5AF12375D07F1 /* OpenIMSDKCore */; + targetProxy = AA502341AA438B814AFF656BD10B937C /* PBXContainerItemProxy */; + }; + CAFDA423A8120F3A8DD11D314C11111B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MqttCocoaAsyncSocket; + target = B017CC75E2704C686AA0A2203247D9C7 /* MqttCocoaAsyncSocket */; + targetProxy = 3515FA4C9101336553D8B459366C326A /* PBXContainerItemProxy */; + }; + CB4D5BDDFF21ECC88677A198F7E338BD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 496A278884CB9032040FEBB54F58C207 /* PBXContainerItemProxy */; + }; + D5651A70BE15EFB4982444B5B2512219 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardCore; + target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; + targetProxy = 72793BEC4391CB8366125C3553B258DD /* PBXContainerItemProxy */; + }; + D759FA7EE75F394744201482262719BF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQTextInputViewNotification; + target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; + targetProxy = C58769B388904CFBBFB74603F94C50D6 /* PBXContainerItemProxy */; + }; + DAAD65E821D02F91D43F7A3A62CBBDA8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardToolbar; + target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; + targetProxy = F10E34D9493224FFE4398C2892A264D0 /* PBXContainerItemProxy */; + }; + DB107D7CB98F06D8F8316BDF80F19D13 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ZXSDK; + target = 8194323886ECAF7E912EFDAFC84017AA /* ZXSDK */; + targetProxy = 784AB6009C802DCDB077C8FDAE12A645 /* PBXContainerItemProxy */; + }; + DBC24143E98243D4AF1EA5BC398DF911 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AMapFoundation; + target = 39082CE2CA8065D786A75F5C09CFF2C0 /* AMapFoundation */; + targetProxy = 8537939584ADB402914C80BECBFCF361 /* PBXContainerItemProxy */; + }; + E3A3706048E530DEB7C582F6A987E2A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "WechatOpenSDK-XCFramework"; + target = 7F18C31A804695333763EEC303E265D7 /* WechatOpenSDK-XCFramework */; + targetProxy = E5D1EB384DCAB100A17AB2E792EA5EC1 /* PBXContainerItemProxy */; + }; + EF8A7784AE5CDC5DA53D690528846AB3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwiftExt; + target = ED7124602AA1B5C6A257912C7E8B793B /* RxSwiftExt */; + targetProxy = EC205F05694C8C333E9828545B2065F9 /* PBXContainerItemProxy */; + }; + F76072662756082232E539FB6FAD05B2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YBImageBrowser; + target = B97FC50FB8C4390DDCCA281E85E7AD84 /* YBImageBrowser */; + targetProxy = BA14FB92C8EA947503B64896940026ED /* PBXContainerItemProxy */; + }; + FA78E89559F608171A318EA1A1A05625 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardReturnManager; + target = 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */; + targetProxy = 75A41B01F44388B65DAFE9642A27098F /* PBXContainerItemProxy */; + }; + FBF93ED7FC482938418EE1D10B88E153 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SwiftyJSON-SwiftyJSON"; + target = 677650A76A720691B88A6959EFED6418 /* SwiftyJSON-SwiftyJSON */; + targetProxy = 21670DA1EB50FE0700045C6DEA84AB9D /* PBXContainerItemProxy */; + }; + FFFBFAB00B10E1ABC9ED8CA155436E90 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AMapFoundation; + target = 39082CE2CA8065D786A75F5C09CFF2C0 /* AMapFoundation */; + targetProxy = 0A6EBF5BEBE66C578BD712891C566CDC /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 0259195A9ED2EA2EDBA91ED0B1CFBF4F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B538CBD104D8A06AE7A78D4BE98E50CE /* RxDataSources.debug.xcconfig */; + baseConfigurationReference = 3F309E5C6296297419BFF8A326FBA8A3 /* RxDataSources.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -14960,26 +15378,9 @@ }; name = Debug; }; - 04862C6DDEB1DBE6E659E6DE452581DA /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9748FAB56C967BFAED8A26117036C999 /* Alamofire.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Alamofire"; - IBSC_MODULE = Alamofire; - INFOPLIST_FILE = "Target Support Files/Alamofire/ResourceBundle-Alamofire-Alamofire-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = Alamofire; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 05AA25BEF94A87270AEE68A471C8491D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3D0DB1CEB05AC969288DEAFEB20F65F0 /* Differentiator.release.xcconfig */; + baseConfigurationReference = 800097F58750AAC2B2BAF8E599AD7AEF /* Differentiator.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -15016,48 +15417,26 @@ }; name = Release; }; - 06A67DDE254165BED63DA36AEAFFE8D7 /* Release */ = { + 068E4D7E4CEF96207225A020C2F8CE51 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C96FCAF290E620B33506E5F6F3F26719 /* IQKeyboardToolbarManager.release.xcconfig */; + baseConfigurationReference = 00BB87520D0D647F6D66C9FD25D56504 /* Alamofire.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Alamofire"; + IBSC_MODULE = Alamofire; + INFOPLIST_FILE = "Target Support Files/Alamofire/ResourceBundle-Alamofire-Alamofire-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; - PRODUCT_NAME = IQKeyboardToolbarManager; + PRODUCT_NAME = Alamofire; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; 0779CF714FDBEBB29636BEE5A0EEF5BB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EEA2A47DAF2DB781EBC24E6A1DCA2E5 /* RxSwiftExt.release.xcconfig */; + baseConfigurationReference = 6C658557DD91AA8F899ABACC31226433 /* RxSwiftExt.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15095,26 +15474,9 @@ }; name = Release; }; - 07D16CB0F4294FC16734A6A541737458 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1DF1E44CD5D56F8194F2390A6116F36D /* IQKeyboardToolbar.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbar"; - IBSC_MODULE = IQKeyboardToolbar; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardToolbar; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 080BAA837FD872F18107ACAD4D5020BC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 496745A7F3A4397C33365DC9AA2BBD27 /* MBProgressHUD.debug.xcconfig */; + baseConfigurationReference = 727C62357BCC8E0AE55A67EC6658490C /* MBProgressHUD.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -15152,7 +15514,7 @@ }; 081567CE9CD56A99A66C0B763397A722 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC18C5356E15BE7E1C0CC9337F251372 /* GTCommonSDK.release.xcconfig */; + baseConfigurationReference = FB1D9DAF235C3360A49CB31CD5D21E03 /* GTCommonSDK.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -15168,16 +15530,50 @@ }; name = Release; }; - 09B0AAEEB5F8A95CA14A95B878C2039C /* Release */ = { + 08CB6A29392D1DB1390D381263484F6B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C6EED8EF1941D023328AEA4B21A95EFF /* IQTextInputViewNotification.release.xcconfig */; + baseConfigurationReference = BBEF8ABEDA5FDBA01511762EB65DD72A /* IQKeyboardNotification.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; - IBSC_MODULE = IQTextInputViewNotification; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; + IBSC_MODULE = IQKeyboardNotification; + INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQTextInputViewNotification; + PRODUCT_NAME = IQKeyboardNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 0EA508C10E9E9E4E556F0C47AEBB0C30 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5A225B67BF641EECDAE555557900F543 /* lottie-ios.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/lottie-ios"; + IBSC_MODULE = Lottie; + INFOPLIST_FILE = "Target Support Files/lottie-ios/ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = LottiePrivacyInfo; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 0EA7D0F9F65C2572386B5E34ED5777CA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8960813343F218D2D666299190D67ABE /* Alamofire.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Alamofire"; + IBSC_MODULE = Alamofire; + INFOPLIST_FILE = "Target Support Files/Alamofire/ResourceBundle-Alamofire-Alamofire-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = Alamofire; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -15187,7 +15583,7 @@ }; 101B3D52ED918FA7FBD09B130F1DB33E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 629DDBA66E3F48E13DC130A55605CE82 /* SwiftDate.debug.xcconfig */; + baseConfigurationReference = A4A7F2883A127431D6E6E825F82B1CD1 /* SwiftDate.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15224,9 +15620,65 @@ }; name = Debug; }; - 11BE2D37CE049B8C641F8B18B95A1ABD /* Release */ = { + 1179A28E43BB9B438110C899C37B5D94 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3315C38767856D68C851A907CE93A414 /* SDWebImage.release.xcconfig */; + baseConfigurationReference = CEC0082E625A68C67E6A1ECF039B0BC7 /* SDWebImage.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/SDWebImage/SDWebImage-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; + PRODUCT_MODULE_NAME = SDWebImage; + PRODUCT_NAME = SDWebImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 14A867063205257815333F3D89A4B3C5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D862C584B59F742B093BA15B55C64CC9 /* IQKeyboardToolbarManager.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; + IBSC_MODULE = IQKeyboardToolbarManager; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = IQKeyboardToolbarManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 1608EEC2C7E087E8B7B6FDFEF9ED137C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CEC0082E625A68C67E6A1ECF039B0BC7 /* SDWebImage.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; @@ -15241,65 +15693,26 @@ }; name = Release; }; - 162279A834B2284AE37128B0B344550E /* Release */ = { + 163BF315B16D37D0C70C0F744F2CAFB8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB451DC015F96BFF40FAA681B9B222BD /* IQKeyboardReturnManager.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardReturnManager; - PRODUCT_NAME = IQKeyboardReturnManager; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 1640536A0FD7A1E7E82E45CC51E13F0B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3BBC561B29ED22D84456A56B25487B1A /* Kingfisher.release.xcconfig */; + baseConfigurationReference = 869253C90A9E318D5E478170C21006FD /* MarqueeLabel.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; - IBSC_MODULE = Kingfisher; - INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MarqueeLabel"; + IBSC_MODULE = MarqueeLabel; + INFOPLIST_FILE = "Target Support Files/MarqueeLabel/ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = Kingfisher; + PRODUCT_NAME = MarqueeLabel; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; 164D234316F4A7814C5F4348E0FD7C5B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E926FA11E8BA74B1F4F9474810B87590 /* SwiftKeychainWrapper.debug.xcconfig */; + baseConfigurationReference = 6AAD72F6BD76C26A980E1477F50D4DD7 /* SwiftKeychainWrapper.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -15335,9 +15748,47 @@ }; name = Debug; }; + 169F21279F180E2A07A411F02696F82A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E283C787829B0255F3EA02250F65433D /* SDWebImage.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/SDWebImage/SDWebImage-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; + PRODUCT_MODULE_NAME = SDWebImage; + PRODUCT_NAME = SDWebImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 19A83CC9ED1763FF5485101E1BD21401 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9F8AF2C5A4BBDB77E38E045AFFEBF172 /* SGQRCode.debug.xcconfig */; + baseConfigurationReference = 29B8A8985447E4E7823241EE353B3F48 /* SGQRCode.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15374,26 +15825,9 @@ }; name = Debug; }; - 19DBA2A5D1BC527D42DCC1626816CBB9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 70EB9DECE01FBEF4BE7887739229CDA6 /* lottie-ios.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/lottie-ios"; - IBSC_MODULE = Lottie; - INFOPLIST_FILE = "Target Support Files/lottie-ios/ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = LottiePrivacyInfo; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 1D468000FB63B323BE02836990068238 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2678FFFB05AC0FF8ABF1EAE1D51210C5 /* Masonry.debug.xcconfig */; + baseConfigurationReference = E078D2663D3DCEFA605A0BE7820890AE /* Masonry.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -15429,33 +15863,71 @@ }; name = Debug; }; - 214849C89594A3C114CACD9239506EA6 /* Release */ = { + 207ABC32DFA61C507FB16A0E7CD7C97D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E614EC925D6A4CB0BB4E4E4562902436 /* Alamofire.release.xcconfig */; + baseConfigurationReference = 5B1A0130105B98916AF1D590086BFD66 /* RxCocoa.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Alamofire"; - IBSC_MODULE = Alamofire; - INFOPLIST_FILE = "Target Support Files/Alamofire/ResourceBundle-Alamofire-Alamofire-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxCocoa"; + IBSC_MODULE = RxCocoa; + INFOPLIST_FILE = "Target Support Files/RxCocoa/ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = Alamofire; + PRODUCT_NAME = RxCocoa_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 233CC82B062F1562E9165A8F3FF47364 /* Debug */ = { + 2110B06D88DAC0C70648E521C78C23AC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D42F775E38DE1A545F3B25BD8738ACF2 /* Kingfisher.debug.xcconfig */; + baseConfigurationReference = D862C584B59F742B093BA15B55C64CC9 /* IQKeyboardToolbarManager.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; + PRODUCT_NAME = IQKeyboardToolbarManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 2125CB4316E177383D6E7F156052BC3F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C8009C99851F258D3BAC40E139579AC5 /* ObjectMapper.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; - IBSC_MODULE = Kingfisher; - INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ObjectMapper"; + IBSC_MODULE = ObjectMapper; + INFOPLIST_FILE = "Target Support Files/ObjectMapper/ResourceBundle-Privacy-ObjectMapper-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = Kingfisher; + PRODUCT_NAME = Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -15465,7 +15937,7 @@ }; 24EDD58212F39DF8D43AE9891146ED7C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5875DE076530A11A7D58B4A3F7C35B1C /* KingfisherWebP.release.xcconfig */; + baseConfigurationReference = A7D52DBF5B8B5DD78B762AC31DF025DE /* KingfisherWebP.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15503,9 +15975,9 @@ }; name = Release; }; - 2573257C59315F1456D64B36074E05B0 /* Debug */ = { + 2C18334EE317EA80E052CDF4C96A3A3C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B02664CA4AF3A20B2AD925D0A1FED67D /* IQKeyboardToolbarManager.debug.xcconfig */; + baseConfigurationReference = B7C11EDE3B450C9942C6603E24661EF0 /* IQKeyboardReturnManager.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15517,9 +15989,9 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -15527,40 +15999,24 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; - PRODUCT_NAME = IQKeyboardToolbarManager; + MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardReturnManager; + PRODUCT_NAME = IQKeyboardReturnManager; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; - }; - 28B38B940367D9C192340E058448FB3B /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 496745A7F3A4397C33365DC9AA2BBD27 /* MBProgressHUD.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MBProgressHUD"; - IBSC_MODULE = MBProgressHUD; - INFOPLIST_FILE = "Target Support Files/MBProgressHUD/ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = MBProgressHUD; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; + name = Release; }; 2C4EBC8097D4D07427A18EC0F79738BE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AAD0FAC7FA408BC1FCB711EFCEDAB743 /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = 01A603880B3B6DF6C5D80FA552A3A479 /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15597,64 +16053,9 @@ }; name = Release; }; - 2E15E851224480AAE008F54711E316EF /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7FAA15A80E3EE70FB8617B72A76C5C99 /* MJRefresh.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; - IBSC_MODULE = MJRefresh; - INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = MJRefresh.Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 2E64763DEE2C464FC49626D13A3CE7C9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 69987DF0C0EF80F634B3BFF7171C82B1 /* RxRelay.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/RxRelay/RxRelay-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/RxRelay/RxRelay.modulemap"; - PRODUCT_MODULE_NAME = RxRelay; - PRODUCT_NAME = RxRelay; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 2E6B23AFDDDAB6AE4D391C43AD91B5EA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F326E73494C37B436B25DC1DD104CFE /* URLNavigator.release.xcconfig */; + baseConfigurationReference = 58C7B6E7A775424F09E7E14CA00C5CA6 /* URLNavigator.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15694,7 +16095,7 @@ }; 2E93AC333ABBA1ED27D1FF26FE6E4F6E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BDB33574F45BE6091CBD60487B6B9FAC /* lottie-ios.debug.xcconfig */; + baseConfigurationReference = CE9FDBE3DB1A26028345DD54F26D62B7 /* lottie-ios.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15731,43 +16132,26 @@ }; name = Debug; }; - 30F809E0AB8CF55C9380CE9450CCF8E0 /* Debug */ = { + 312BA732DBE2EB1E28A5F40D8ACF82AF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0FEC85C5E00BEEAFA0B609E7B5609E94 /* SnapKit.debug.xcconfig */; + baseConfigurationReference = CAB2565A0DA889576964CD69CC948242 /* MJRefresh.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit"; - IBSC_MODULE = SnapKit; - INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; + IBSC_MODULE = MJRefresh; + INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = SnapKit_Privacy; + PRODUCT_NAME = MJRefresh.Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; - }; - 315B1E191A5B9806F4332E808628D960 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 74ED30CF01D00C8356D9811523C8FB36 /* RxCocoa.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxCocoa"; - IBSC_MODULE = RxCocoa; - INFOPLIST_FILE = "Target Support Files/RxCocoa/ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = RxCocoa_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; + name = Release; }; 329FEDFC707F60DAC36FBAA2F41CC040 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 10B1ACF2AADB5AD04163F4674BFE07A0 /* SwiftyUserDefaults.release.xcconfig */; + baseConfigurationReference = A66FBF950048189A9BC5A7C43078F25B /* SwiftyUserDefaults.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -15806,7 +16190,7 @@ }; 32A11DC5E061152FA9D378AF2B9BB4F2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F5B82BDBCAA41F24AD4A6F7D6617A30 /* ObjectMapper.debug.xcconfig */; + baseConfigurationReference = C8009C99851F258D3BAC40E139579AC5 /* ObjectMapper.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15843,9 +16227,64 @@ }; name = Debug; }; + 32CEFCC3790E3E81EE0F8C44E82B42F1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 284AC5B340F1DF3743C872CE02EE8A20 /* IQKeyboardToolbarManager.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; + IBSC_MODULE = IQKeyboardToolbarManager; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = IQKeyboardToolbarManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 34A74B2C3C8703EB4F1D11F2E1926310 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 847E7B1F0A19709036E3E46F2089857E /* libwebp.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/libwebp/libwebp-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/libwebp/libwebp.modulemap"; + PRODUCT_MODULE_NAME = libwebp; + PRODUCT_NAME = libwebp; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 35348094A047FBB7741B5FCEBF66111A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D8D4E72FFA61743609A51FAE174F8833 /* URLNavigator.debug.xcconfig */; + baseConfigurationReference = F78CF62F0674BF90E70B2ECA05043B8B /* URLNavigator.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15882,9 +16321,48 @@ }; name = Debug; }; + 36D2AB518180F0D393D5C7822646DD1F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 284AC5B340F1DF3743C872CE02EE8A20 /* IQKeyboardToolbarManager.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; + PRODUCT_NAME = IQKeyboardToolbarManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 37C8EBB55E5BA72D4F22D6797A7BFACD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BFA6FD03C778C0B691600FE0A831EB76 /* ObjectMapper.release.xcconfig */; + baseConfigurationReference = 2911308F19328BC6C09F92A3C6D1A163 /* ObjectMapper.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15922,26 +16400,9 @@ }; name = Release; }; - 385DE5C80E9D907A92232745810D2AAA /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 46A9779C47951687DB62763E0DD55E55 /* IQKeyboardReturnManager.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; - IBSC_MODULE = IQKeyboardReturnManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardReturnManager; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 3980B62C537F5E72BAB9273C95C66F1A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3AC0F3EEDD22751DD4EF0DA40250DC07 /* AMapLocation.release.xcconfig */; + baseConfigurationReference = F9A39A1F349D79A7CA652C614515AFCB /* AMapLocation.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -15957,26 +16418,9 @@ }; name = Release; }; - 3986E01AC7956DBC6D561019D3EE24C2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AAD0FAC7FA408BC1FCB711EFCEDAB743 /* IQKeyboardManagerSwift.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; - IBSC_MODULE = IQKeyboardManagerSwift; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardManagerSwift; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 39FEA6E129AEF8E6B57327F300DE025A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 94801563DB532EDC0D80A3BCEE705193 /* IQKeyboardCore.release.xcconfig */; + baseConfigurationReference = F17AA9FF2A03983AFAF7969998113A73 /* IQKeyboardCore.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16013,9 +16457,103 @@ }; name = Release; }; + 3AB760C353A7AF961E99E05A4B294013 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 72A1EAF3B2B93A6D388301B986ACB69E /* YYImage.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/YYImage/YYImage-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/YYImage/YYImage-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/YYImage/YYImage.modulemap"; + PRODUCT_MODULE_NAME = YYImage; + PRODUCT_NAME = YYImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 3C25716485DA53A7DFB2DFD43F025056 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D5B31C16DC507AA7342155F0550B0D79 /* IQTextInputViewNotification.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; + PRODUCT_MODULE_NAME = IQTextInputViewNotification; + PRODUCT_NAME = IQTextInputViewNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 3D7C9FAAE1A93D59246A1D7E4E252870 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D5B31C16DC507AA7342155F0550B0D79 /* IQTextInputViewNotification.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; + IBSC_MODULE = IQTextInputViewNotification; + INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = IQTextInputViewNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; 3E3EC90A196DC40DF90841C016DA9EB1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1858DBC20C1ACE16F5BE62DD4C23AEDF /* MarqueeLabel.debug.xcconfig */; + baseConfigurationReference = 869253C90A9E318D5E478170C21006FD /* MarqueeLabel.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16052,26 +16590,9 @@ }; name = Debug; }; - 426F1E0BB41D46C7D52CE07BCCF8E3F8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 238EA027049C445CADBCD723D15850C9 /* SDWebImage.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; - IBSC_MODULE = SDWebImage; - INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = SDWebImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 43E6F219681645AA6A1DC48E87B56284 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9748FAB56C967BFAED8A26117036C999 /* Alamofire.debug.xcconfig */; + baseConfigurationReference = 00BB87520D0D647F6D66C9FD25D56504 /* Alamofire.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16108,48 +16629,9 @@ }; name = Debug; }; - 43FD5D6C22D4BB488E106147A7F97B78 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CE5309C36CA7E076181ADB8990797A85 /* libwebp.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/libwebp/libwebp-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/libwebp/libwebp.modulemap"; - PRODUCT_MODULE_NAME = libwebp; - PRODUCT_NAME = libwebp; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; 4471C5CF3BAE41FA52EBBF2DB4B57FA9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 97D599D0C0EA915D51D3C2779E4B546F /* HXPHPicker.debug.xcconfig */; + baseConfigurationReference = CE33785CC080AE402A8C5B0628D044B2 /* HXPHPicker.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16185,26 +16667,9 @@ }; name = Debug; }; - 45F6DD108D2E5E84D61EAEA6C39166AD /* Debug */ = { + 45FC8E4AF4CFA39EE8BFF6D0A14A1D31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1FE7CCD2DB56740DB6C59A573D8DFB63 /* AMapFoundation.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 4742912452B70CF0E05A564BD6766C01 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 80B6A76BDBFB76C791769481A45315DB /* RxRelay.release.xcconfig */; + baseConfigurationReference = 914F74DC9A660B3CCD6B5049FA3E857E /* RxRelay.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -16235,15 +16700,14 @@ SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; 480C539404A8567B4A00BCFB955B970C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DFB7C4372393229F1688792BAC624F6 /* SGQRCode.release.xcconfig */; + baseConfigurationReference = 8F6C4B32F8545FD29CC3B33741AFBEDF /* SGQRCode.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16281,26 +16745,26 @@ }; name = Release; }; - 4A679B0433574F23A8277663F294A909 /* Debug */ = { + 4A285D494837C06E255BBE70ED66648C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93608F9DC483D379F667A4F03EDE2D96 /* IQTextInputViewNotification.debug.xcconfig */; + baseConfigurationReference = 1FBA36361856104A4D031F00072469BF /* Kingfisher.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; - IBSC_MODULE = IQTextInputViewNotification; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; + IBSC_MODULE = Kingfisher; + INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQTextInputViewNotification; + PRODUCT_NAME = Kingfisher; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; 4C6450248165267FCCE1E931FDCC492D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E614EC925D6A4CB0BB4E4E4562902436 /* Alamofire.release.xcconfig */; + baseConfigurationReference = 8960813343F218D2D666299190D67ABE /* Alamofire.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16338,43 +16802,48 @@ }; name = Release; }; - 4C850EC2A3B94F224FE99530B047865F /* Release */ = { + 4CC9BB483A0351F09BE9ED5B967E87D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB451DC015F96BFF40FAA681B9B222BD /* IQKeyboardReturnManager.release.xcconfig */; + baseConfigurationReference = 4DDFE96FD63E4568E70A89429B350567 /* RxSwift.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; - IBSC_MODULE = IQKeyboardReturnManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/RxSwift/RxSwift-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardReturnManager; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/RxSwift/RxSwift.modulemap"; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = RxSwift; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 4E27E0C7121FC48A6C0712354A8461D4 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 69987DF0C0EF80F634B3BFF7171C82B1 /* RxRelay.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxRelay"; - IBSC_MODULE = RxRelay; - INFOPLIST_FILE = "Target Support Files/RxRelay/ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = RxRelay_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 4E3C211534863595B5F43E8250BB4DB1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7FAA15A80E3EE70FB8617B72A76C5C99 /* MJRefresh.debug.xcconfig */; + baseConfigurationReference = B8EC604002D3AACC61D5BDBC802F50D0 /* MJRefresh.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16411,9 +16880,26 @@ }; name = Debug; }; - 5642F5C47DFFC3FD95EEAE52C70C8743 /* Release */ = { + 4FCA227431618AF78B9838E5A1120031 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4ED0F1D4E099A8871122580C0CEA500F /* IQKeyboardNotification.release.xcconfig */; + baseConfigurationReference = 1716B1D0D70C770AC24EDDD4C69E194B /* CocoaLumberjack.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CocoaLumberjack"; + IBSC_MODULE = CocoaLumberjack; + INFOPLIST_FILE = "Target Support Files/CocoaLumberjack/ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = CocoaLumberjackPrivacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 5109DABC9EA627490A85B60812376098 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1E34C4B78DD7F2261388D210C5CADD36 /* IQKeyboardNotification.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16452,7 +16938,7 @@ }; 567843E538D89FD3E56499956151F1FA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 74ED30CF01D00C8356D9811523C8FB36 /* RxCocoa.debug.xcconfig */; + baseConfigurationReference = 5B1A0130105B98916AF1D590086BFD66 /* RxCocoa.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -16488,26 +16974,9 @@ }; name = Debug; }; - 57696C1751BC0BBEDFCF721979E6D5C4 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E1061F2B93315280A5B73A81ADDA30B9 /* MBProgressHUD.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MBProgressHUD"; - IBSC_MODULE = MBProgressHUD; - INFOPLIST_FILE = "Target Support Files/MBProgressHUD/ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = MBProgressHUD; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 58BE242C8F2D2BF295A24115C68B8172 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BFBF528C9DC2F22EF9166D52B4955E30 /* OpenIMSDK.release.xcconfig */; + baseConfigurationReference = F1F80ED426C3EB59947DD048D46A342F /* OpenIMSDK.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16545,9 +17014,48 @@ }; name = Release; }; + 5A0F8F0796E3B83B4A2407828E09FD7D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1572295F624626F7E6A25BFFD705DE16 /* CocoaMQTT.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/CocoaMQTT/CocoaMQTT-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CocoaMQTT/CocoaMQTT-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/CocoaMQTT/CocoaMQTT.modulemap"; + PRODUCT_MODULE_NAME = CocoaMQTT; + PRODUCT_NAME = CocoaMQTT; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 5DBE9EF228C40F654C1E76D495DC629F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6E2849379444297D6642C171B517AA2 /* CocoaLumberjack.release.xcconfig */; + baseConfigurationReference = 4471EC3FFF68A5CB2C39BF14527FC3D8 /* CocoaLumberjack.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16585,26 +17093,9 @@ }; name = Release; }; - 5E36512210BA8DEE48D4EF1CCBB389A1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E6E2849379444297D6642C171B517AA2 /* CocoaLumberjack.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CocoaLumberjack"; - IBSC_MODULE = CocoaLumberjack; - INFOPLIST_FILE = "Target Support Files/CocoaLumberjack/ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = CocoaLumberjackPrivacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 5E6A79DFB247787BD2BD0ADEBB2CD4F7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A85F7BFA6933B34EAFBDDE988DB2A8A9 /* AMap3DMap.release.xcconfig */; + baseConfigurationReference = E078D46C2A601050DB01A977C864B192 /* AMap3DMap.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -16620,9 +17111,9 @@ }; name = Release; }; - 5FBDCA0668558656B9DAB57C304EC2EA /* Release */ = { + 60CF78555282CDF26258274D2DA579E8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0719BA04D2F1F80681741FC01F6CCDDC /* IQTextView.release.xcconfig */; + baseConfigurationReference = FDAE672DFD3D8A61B0D211BD81FAAE76 /* IQKeyboardToolbar.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16634,9 +17125,9 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextView/IQTextView-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextView/IQTextView-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -16644,9 +17135,64 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/IQTextView/IQTextView.modulemap"; - PRODUCT_MODULE_NAME = IQTextView; - PRODUCT_NAME = IQTextView; + MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardToolbar; + PRODUCT_NAME = IQKeyboardToolbar; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 60E214194E44DC9876A98E4B45B6E9E6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 727C62357BCC8E0AE55A67EC6658490C /* MBProgressHUD.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MBProgressHUD"; + IBSC_MODULE = MBProgressHUD; + INFOPLIST_FILE = "Target Support Files/MBProgressHUD/ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = MBProgressHUD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 629CB06A036D875A195343EB063B4D8C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 846EDE56DA946ACF6FAB843EB29A21BA /* IQKeyboardToolbar.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardToolbar; + PRODUCT_NAME = IQKeyboardToolbar; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -16661,7 +17207,7 @@ }; 634D2F7349EEE1DFE79655E476A25FC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 62068575E84E562D2715857256F195F2 /* RxSwiftExt.debug.xcconfig */; + baseConfigurationReference = F5FD142CF1042BDEAD5F794A402A036B /* RxSwiftExt.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16698,9 +17244,26 @@ }; name = Debug; }; + 63A932FA60972BE65F60E95EE7DB97E9 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B8DB1EBE506F258F6871BF5B3853F937 /* Kingfisher.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; + IBSC_MODULE = Kingfisher; + INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = Kingfisher; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; 64A7FDB5B4F348E1DF4AE672EAC026DD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 615A1FD3776094E854318EE01C75786B /* CocoaLumberjack.debug.xcconfig */; + baseConfigurationReference = 1716B1D0D70C770AC24EDDD4C69E194B /* CocoaLumberjack.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16737,47 +17300,9 @@ }; name = Debug; }; - 669911B4A20163DB1D61CDBA5C0E3F15 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A9EC385B4E999D9713BD79006E2B9E7C /* IQTextView.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextView/IQTextView-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextView/IQTextView-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/IQTextView/IQTextView.modulemap"; - PRODUCT_MODULE_NAME = IQTextView; - PRODUCT_NAME = IQTextView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 68F5B3954D22C3AE996F089D0ACE587F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 708DBDCABBB77C6D70637B96FB6FC314 /* GTCommonSDK.debug.xcconfig */; + baseConfigurationReference = 1DFBCAA5D961010443EE4E8BF7F440E3 /* GTCommonSDK.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -16792,47 +17317,9 @@ }; name = Debug; }; - 6B4E69E0158F76E542450D99714FAB44 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 238EA027049C445CADBCD723D15850C9 /* SDWebImage.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/SDWebImage/SDWebImage-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; - PRODUCT_MODULE_NAME = SDWebImage; - PRODUCT_NAME = SDWebImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 6BC304EFEB640C20681110D070308640 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 74CF6920D0B4CFAC98C5DBF9737EA29D /* Differentiator.debug.xcconfig */; + baseConfigurationReference = A26A017981C2551A9932A411A10D8C13 /* Differentiator.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -16868,27 +17355,26 @@ }; name = Debug; }; - 6D1573F3B7CC7DE605B6D0DC7BC202B0 /* Release */ = { + 6D6B94B1C6C8342A6240971EDC7F4F03 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C37BD2829041D89916A260C97F51808 /* AMapFoundation.release.xcconfig */; + baseConfigurationReference = BDF903CC6F915E514FBF685B2291C574 /* RxSwift.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - ENABLE_USER_SCRIPT_SANDBOXING = NO; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxSwift"; + IBSC_MODULE = RxSwift; + INFOPLIST_FILE = "Target Support Files/RxSwift/ResourceBundle-RxSwift_Privacy-RxSwift-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = RxSwift_Privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; 6E44CDAE0AE24EA7109A93ED136F62B3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 038D72D383929263E7180ACF0ED926FB /* TagListView.release.xcconfig */; + baseConfigurationReference = 9D3F97F68C76452A9B412F4F0553D559 /* TagListView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -16927,7 +17413,7 @@ }; 7082C84E9F4F3C5661F4397D14D70B1D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8CB579539F7E67A543281235A347A0DD /* WechatOpenSDK-XCFramework.release.xcconfig */; + baseConfigurationReference = 7494A83BA67A532F60523715329204DF /* WechatOpenSDK-XCFramework.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -16944,33 +17430,16 @@ }; name = Release; }; - 74450F21AF93BDE38D774C8240255D55 /* Debug */ = { + 7116AA08E5C5E05A3E1D15F5B4C4823E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1858DBC20C1ACE16F5BE62DD4C23AEDF /* MarqueeLabel.debug.xcconfig */; + baseConfigurationReference = DADDA466B0F9556AA080958617E8F666 /* IQTextView.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MarqueeLabel"; - IBSC_MODULE = MarqueeLabel; - INFOPLIST_FILE = "Target Support Files/MarqueeLabel/ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextView"; + IBSC_MODULE = IQTextView; + INFOPLIST_FILE = "Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = MarqueeLabel; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 751313F007EA521A3993D5A6B4514C18 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 80B6A76BDBFB76C791769481A45315DB /* RxRelay.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxRelay"; - IBSC_MODULE = RxRelay; - INFOPLIST_FILE = "Target Support Files/RxRelay/ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = RxRelay_Privacy; + PRODUCT_NAME = IQTextView; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -16978,9 +17447,44 @@ }; name = Release; }; + 74A48C190C9E3EA62EC23145908E6AA4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1E34C4B78DD7F2261388D210C5CADD36 /* IQKeyboardNotification.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; + IBSC_MODULE = IQKeyboardNotification; + INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = IQKeyboardNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 76D3BC857536C98D671EDFAE14AF716C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7BD34BB4551BFE8B66525915EEC8A279 /* ZXSDK.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 77F46C22F13EEDF26EBE7C1A0DAB9E82 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30A2150EA6103CF85276C506513884F1 /* GYSDK.release.xcconfig */; + baseConfigurationReference = 4B3761DE77E2B197B16591EDBD27853D /* GYSDK.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -16999,7 +17503,7 @@ }; 785092E5318749C2D1F2A11BE7796A70 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 815C778FCFC9DF9AB4BB867705E3D701 /* MarqueeLabel.release.xcconfig */; + baseConfigurationReference = 543C52D19DFF7450FD0F1BFCDEBDB90B /* MarqueeLabel.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17037,49 +17541,26 @@ }; name = Release; }; - 78E308EE9ECD3B57218EE83BC37C86F8 /* Release */ = { + 79DE095A9083C6209C57D39B80D7719D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 518C323F07471B8EF777A8488A6431AF /* Pods-QuickLocation.release.xcconfig */; + baseConfigurationReference = 543C52D19DFF7450FD0F1BFCDEBDB90B /* MarqueeLabel.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-QuickLocation/Pods-QuickLocation-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MarqueeLabel"; + IBSC_MODULE = MarqueeLabel; + INFOPLIST_FILE = "Target Support Files/MarqueeLabel/ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-QuickLocation/Pods-QuickLocation.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = MarqueeLabel; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Release; }; 7B4B2E919614433EC6C011E6DF6CECD5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF72176577676D86E77A44C57C98F44B /* MJExtension.debug.xcconfig */; + baseConfigurationReference = 3E7390C91862B0B79A6128AFE4A9B5F5 /* MJExtension.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17118,7 +17599,7 @@ }; 7C95E035CFE6D756325F4CDCFCB8E188 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E1061F2B93315280A5B73A81ADDA30B9 /* MBProgressHUD.release.xcconfig */; + baseConfigurationReference = 35B8F8C3682AB04ABE8141037BDAA739 /* MBProgressHUD.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -17155,26 +17636,9 @@ }; name = Release; }; - 7FA416E74B027349B9DFFBCC57C47AE8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 92F1C3BA22F62F1CFB1DE61364BA3A00 /* IQKeyboardNotification.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; - IBSC_MODULE = IQKeyboardNotification; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 801E9E7712ABA32807ED0BC3F6118C1A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7DCB1E01613F7B40578A36E6266BC0B7 /* OpenIMSDK.debug.xcconfig */; + baseConfigurationReference = F5552552C87459C15E13CB07C4C4B689 /* OpenIMSDK.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17211,28 +17675,26 @@ }; name = Debug; }; - 80D632C6B12D37E97D1F224C2AFCA4DD /* Release */ = { + 80580A4030AB5AD8134DA9941CBB77EA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD0CEA64153A7C2D5E5C9DBB44A63976 /* OpenIMSDKCore.release.xcconfig */; + baseConfigurationReference = CE9FDBE3DB1A26028345DD54F26D62B7 /* lottie-ios.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/lottie-ios"; + IBSC_MODULE = Lottie; + INFOPLIST_FILE = "Target Support Files/lottie-ios/ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = LottiePrivacyInfo; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; 8132F4596778D6D7F2FC0053BBA0486B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 260BDB88A25661D414D0FB98126D2229 /* SDCycleScrollView.release.xcconfig */; + baseConfigurationReference = A27AA83F2845140359A4DB58C644F78A /* SDCycleScrollView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -17269,26 +17731,9 @@ }; name = Release; }; - 81BD4B682BDC387F965169A5A2FCE394 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BFA6FD03C778C0B691600FE0A831EB76 /* ObjectMapper.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ObjectMapper"; - IBSC_MODULE = ObjectMapper; - INFOPLIST_FILE = "Target Support Files/ObjectMapper/ResourceBundle-Privacy-ObjectMapper-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 823800F5044F68C84CE56D88F733B8BF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B707AC802004219EE1A38C0A808B3868 /* Popover.release.xcconfig */; + baseConfigurationReference = 636B07954D032239F42C35DE71D121DE /* Popover.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -17325,16 +17770,16 @@ }; name = Release; }; - 86C2551D8F47D1C6959D5A89792488CE /* Release */ = { + 85AABA2154B253A555DEFCB9555B9F64 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 815C778FCFC9DF9AB4BB867705E3D701 /* MarqueeLabel.release.xcconfig */; + baseConfigurationReference = 709B926DD9D3886E0BA907D0A3655373 /* RxCocoa.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MarqueeLabel"; - IBSC_MODULE = MarqueeLabel; - INFOPLIST_FILE = "Target Support Files/MarqueeLabel/ResourceBundle-MarqueeLabel-MarqueeLabel-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxCocoa"; + IBSC_MODULE = RxCocoa; + INFOPLIST_FILE = "Target Support Files/RxCocoa/ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = MarqueeLabel; + PRODUCT_NAME = RxCocoa_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -17342,9 +17787,120 @@ }; name = Release; }; + 85CCF194FE3600A4FF6E462E8ED33CCC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 35B8F8C3682AB04ABE8141037BDAA739 /* MBProgressHUD.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MBProgressHUD"; + IBSC_MODULE = MBProgressHUD; + INFOPLIST_FILE = "Target Support Files/MBProgressHUD/ResourceBundle-MBProgressHUD-MBProgressHUD-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = MBProgressHUD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 860F226BB6B77CB58443727BD36E9FAA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D020FF9A5704378B0D8B41BF65396696 /* MqttCocoaAsyncSocket.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.modulemap"; + PRODUCT_MODULE_NAME = MqttCocoaAsyncSocket; + PRODUCT_NAME = MqttCocoaAsyncSocket; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 8AF4794AB17D31563D9868E29E98A584 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 64C174FEED5DBDBD7E75CFF8B4BB3ABB /* SwiftyJSON.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SwiftyJSON"; + IBSC_MODULE = SwiftyJSON; + INFOPLIST_FILE = "Target Support Files/SwiftyJSON/ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = SwiftyJSON; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 8B8C53BCF7E1FC56DBB96B20720D2D37 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 018A85E94FE9935E7AFCB8B153633334 /* MqttCocoaAsyncSocket.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.modulemap"; + PRODUCT_MODULE_NAME = MqttCocoaAsyncSocket; + PRODUCT_NAME = MqttCocoaAsyncSocket; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 8BB1669D2FD16A3634D2142D4CB8AA96 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 086F64A3B9E25E5506DF53C6A7398B30 /* MJRefresh.release.xcconfig */; + baseConfigurationReference = CAB2565A0DA889576964CD69CC948242 /* MJRefresh.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17382,16 +17938,33 @@ }; name = Release; }; - 8E7B84ECB85019FA6C5C35EA72AC066F /* Debug */ = { + 8C222A78E23D162A5F180A56C966284F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B02664CA4AF3A20B2AD925D0A1FED67D /* IQKeyboardToolbarManager.debug.xcconfig */; + baseConfigurationReference = B2872DE8B11CC0C62C7F1B425BCBB585 /* AMapFoundation.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 8C5775D3256690EC15997EDD2FA63EC8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3E7390C91862B0B79A6128AFE4A9B5F5 /* MJExtension.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; - IBSC_MODULE = IQKeyboardToolbarManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; + IBSC_MODULE = MJExtension; + INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardToolbarManager; + PRODUCT_NAME = MJExtension; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -17399,9 +17972,26 @@ }; name = Debug; }; + 8EBB1406D31681A2E94F269AC611C2ED /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F5929496387F8B541C21CC51C6AAF115 /* MJExtension.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; + IBSC_MODULE = MJExtension; + INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = MJExtension; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 90A83603B6BD81AE9AD6D02FC3FADE71 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B0676AB10DF7580007C901BF2C8B01B8 /* SwiftyJSON.debug.xcconfig */; + baseConfigurationReference = 64C174FEED5DBDBD7E75CFF8B4BB3ABB /* SwiftyJSON.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17438,23 +18028,6 @@ }; name = Debug; }; - 90A8CEA52DC8E421BA80CF81A2E2BA83 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 615A1FD3776094E854318EE01C75786B /* CocoaLumberjack.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CocoaLumberjack"; - IBSC_MODULE = CocoaLumberjack; - INFOPLIST_FILE = "Target Support Files/CocoaLumberjack/ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = CocoaLumberjackPrivacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 90D4D09BCB6A4660E43ACBE9ECB6FE9A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -17521,9 +18094,26 @@ }; name = Debug; }; + 94987804FACA342994E719E6DA2AA3A7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 060CD185D2422C4062E0B14A26CF6596 /* SnapKit.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit"; + IBSC_MODULE = SnapKit; + INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = SnapKit_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; 94E0BDD4FECDD6501C6D9C71D5539419 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70EB9DECE01FBEF4BE7887739229CDA6 /* lottie-ios.release.xcconfig */; + baseConfigurationReference = 5A225B67BF641EECDAE555557900F543 /* lottie-ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17623,86 +18213,44 @@ }; name = Release; }; - 987C5F155979966DFD336A5FEC557C5C /* Debug */ = { + 977A90BE2CB4C356C492639261512F92 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1390CC8E3CD88975425399A7BD6E60F3 /* RxSwift.debug.xcconfig */; + baseConfigurationReference = FDAE672DFD3D8A61B0D211BD81FAAE76 /* IQKeyboardToolbar.debug.xcconfig */; buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/RxSwift/RxSwift-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbar"; + IBSC_MODULE = IQKeyboardToolbar; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/RxSwift/RxSwift.modulemap"; - PRODUCT_MODULE_NAME = RxSwift; - PRODUCT_NAME = RxSwift; + PRODUCT_NAME = IQKeyboardToolbar; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 9944C2ECD4A1E40F80E387A35B189F2D /* Release */ = { + 989F7A6EDEA39DB9188FD293F445F34F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C6EED8EF1941D023328AEA4B21A95EFF /* IQTextInputViewNotification.release.xcconfig */; + baseConfigurationReference = 49B586C2492DB8E3B98452DAA26E3559 /* AMapFoundation.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ENABLE_USER_SCRIPT_SANDBOXING = NO; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; - PRODUCT_MODULE_NAME = IQTextInputViewNotification; - PRODUCT_NAME = IQTextInputViewNotification; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; name = Release; }; 9CDD6C0B552ED299157F8FBA805D287B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1098D704D51AA0E2DEDC327834F7740C /* AlipaySDK-iOS.debug.xcconfig */; + baseConfigurationReference = BCFAA6E3673F32D9D944D7DD589746D5 /* AlipaySDK-iOS.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -17720,7 +18268,7 @@ }; 9D0D7572FEDA4CC9E75E7387846AFE57 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0FEC85C5E00BEEAFA0B609E7B5609E94 /* SnapKit.debug.xcconfig */; + baseConfigurationReference = 060CD185D2422C4062E0B14A26CF6596 /* SnapKit.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17757,62 +18305,47 @@ }; name = Debug; }; - 9E09134C79E09227E76D99B5CE8B69D8 /* Release */ = { + 9E9C4F2E8D385B2845AC937F554F71DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D7269015D795415C30E6E7FDA887D10 /* ZXSDK.release.xcconfig */; + baseConfigurationReference = BDF903CC6F915E514FBF685B2291C574 /* RxSwift.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - A0BF867D6F81E7FC508C3E72506DB8E4 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3F73DD0E591F2EA915EE953972CB39F5 /* OpenIMSDKCore.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/RxSwift/RxSwift-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); + MODULEMAP_FILE = "Target Support Files/RxSwift/RxSwift.modulemap"; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = RxSwift; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - A19EC7A9994C319A743037E86ADC5DD1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0728A2587FDDC0AF78C982A4DC85EF61 /* MJExtension.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; - IBSC_MODULE = MJExtension; - INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = MJExtension; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; A1BEDCEF2CAAEBAF299D256F525A3382 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D42F775E38DE1A545F3B25BD8738ACF2 /* Kingfisher.debug.xcconfig */; + baseConfigurationReference = B8DB1EBE506F258F6871BF5B3853F937 /* Kingfisher.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17849,9 +18382,26 @@ }; name = Debug; }; + A2C4B069FB30B674A042174B2828FD72 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EBB442D86F1DE12D3FD514D2FA20776B /* SnapKit.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit"; + IBSC_MODULE = SnapKit; + INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = SnapKit_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; A52A8A275879C134EB281434D1049720 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A12071B705466F16A1CF14EA2B9CDFFC /* AMapSearch.debug.xcconfig */; + baseConfigurationReference = E10C79159E195F6C81ED9B2E89F90A37 /* AMapSearch.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -17866,9 +18416,27 @@ }; name = Debug; }; + A567BED43C10335A7A9B277C9AEB9F54 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 17272198BEED2330EBB2A866A7ABE400 /* OpenIMSDKCore.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; A705AF7A0D0666E36DCE452738EEF514 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 660B0D3207CDA50941350787E807EBF9 /* AMapLocation.debug.xcconfig */; + baseConfigurationReference = 47B192A3DA152CDAA23C460A7AE465C0 /* AMapLocation.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -17883,9 +18451,26 @@ }; name = Debug; }; + A83C47D3B1338B16635947D4786FE297 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E283C787829B0255F3EA02250F65433D /* SDWebImage.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; + IBSC_MODULE = SDWebImage; + INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = SDWebImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; A8894230A204E1888695F3677A130967 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1F0F417D668A29E1F52CC4DA14DE80D6 /* WechatOpenSDK-XCFramework.debug.xcconfig */; + baseConfigurationReference = C05DB1794BBBFB16B8EA48C125B1579E /* WechatOpenSDK-XCFramework.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -17903,7 +18488,7 @@ }; A8BB29B3CA4AB81CF3D835FD149791CB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DBF62C0D3DDC64AEDEF9A5454DD073DF /* RxDataSources.release.xcconfig */; + baseConfigurationReference = 8C6C1C2CD09F3D826E6B56CD9CA8EED3 /* RxDataSources.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -17940,9 +18525,60 @@ }; name = Release; }; + ADD0B09C4682D33C26B8F857F66889EE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2911308F19328BC6C09F92A3C6D1A163 /* ObjectMapper.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ObjectMapper"; + IBSC_MODULE = ObjectMapper; + INFOPLIST_FILE = "Target Support Files/ObjectMapper/ResourceBundle-Privacy-ObjectMapper-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + AEB77615B5EA1B93F5CF7CA914D1FE4A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EA0077E342A252E846F4FF0AC2A7752E /* IQTextInputViewNotification.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; + IBSC_MODULE = IQTextInputViewNotification; + INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = IQTextInputViewNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + AF27C96F6AD93DE37083B90DD45B3FFE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4EEDDA2C8BA124FCC4F0D3BA74E7881E /* ZXSDK.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; AF2BB8153427D2BA0A19C9C04F89F611 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 715CB07F1E5C3BEAB5B768CF6A9DD872 /* HXPHPicker.release.xcconfig */; + baseConfigurationReference = 7A538427ACB5E54D82B9758C7B881AFA /* HXPHPicker.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17979,26 +18615,26 @@ }; name = Release; }; - B5D89FCBD086706B8A7C07EA8D6E87C0 /* Debug */ = { + B2AF6341BAE29E134D871C5C3CC4E64E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B0676AB10DF7580007C901BF2C8B01B8 /* SwiftyJSON.debug.xcconfig */; + baseConfigurationReference = 01A603880B3B6DF6C5D80FA552A3A479 /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SwiftyJSON"; - IBSC_MODULE = SwiftyJSON; - INFOPLIST_FILE = "Target Support Files/SwiftyJSON/ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; + IBSC_MODULE = IQKeyboardManagerSwift; + INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = SwiftyJSON; + PRODUCT_NAME = IQKeyboardManagerSwift; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - B7059015F5197B420B1752EDCE3F79DB /* Release */ = { + B3A725D289C4F6B1720005CF99FDF745 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0719BA04D2F1F80681741FC01F6CCDDC /* IQTextView.release.xcconfig */; + baseConfigurationReference = B1A4FD8A8C9FBB2B4AE098AFCDEA027B /* IQTextView.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextView"; @@ -18011,45 +18647,84 @@ TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; + name = Debug; + }; + B735702FC327B16578CE98797C18A489 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B7C11EDE3B450C9942C6603E24661EF0 /* IQKeyboardReturnManager.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; + IBSC_MODULE = IQKeyboardReturnManager; + INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = IQKeyboardReturnManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; name = Release; }; - B8E7A8936DB5E44A40F65CC0E3D50FDE /* Debug */ = { + B8036B08CD7C7B3CB618FEC3ECEF56B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF72176577676D86E77A44C57C98F44B /* MJExtension.debug.xcconfig */; + baseConfigurationReference = 846EDE56DA946ACF6FAB843EB29A21BA /* IQKeyboardToolbar.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; - IBSC_MODULE = MJExtension; - INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbar"; + IBSC_MODULE = IQKeyboardToolbar; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = MJExtension; + PRODUCT_NAME = IQKeyboardToolbar; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - B9F391BF42027393B4BF6AA1CBA4453F /* Debug */ = { + B9BACBCA9A45F72D827D3B889F6891B6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F5B82BDBCAA41F24AD4A6F7D6617A30 /* ObjectMapper.debug.xcconfig */; + baseConfigurationReference = 2DD7CB878C4C7757197E5D41FE20B750 /* libwebp.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ObjectMapper"; - IBSC_MODULE = ObjectMapper; - INFOPLIST_FILE = "Target Support Files/ObjectMapper/ResourceBundle-Privacy-ObjectMapper-Info.plist"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/libwebp/libwebp-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/libwebp/libwebp.modulemap"; + PRODUCT_MODULE_NAME = libwebp; + PRODUCT_NAME = libwebp; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; BA922906E64131AB76C4712AF94EF8CB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 633767D8A7162E8C39BFE4FE885F0056 /* SDCycleScrollView.debug.xcconfig */; + baseConfigurationReference = 2FFD6FB05FFB92E52545C479B4BFCF7C /* SDCycleScrollView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -18087,7 +18762,7 @@ }; BAD20131EC29650C6737E66854A3A9FD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB11F69CDAC50ABF5A1340AA052D39B4 /* SnapKit.release.xcconfig */; + baseConfigurationReference = EBB442D86F1DE12D3FD514D2FA20776B /* SnapKit.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18127,7 +18802,7 @@ }; BD9E54B8E276FDC5FAA99D603AAE7808 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BECB67C4910C284EF8C311E0AF7A187D /* RxCocoa.release.xcconfig */; + baseConfigurationReference = 709B926DD9D3886E0BA907D0A3655373 /* RxCocoa.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -18166,7 +18841,7 @@ }; BE13B2154C960503F9352E7CA41C5257 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9C13E6FBDDAB97317E0522724037E9E2 /* Moya.release.xcconfig */; + baseConfigurationReference = 3FB7A78444CD136A1E106D7281BB2012 /* Moya.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18204,9 +18879,26 @@ }; name = Release; }; + C019AEAB03257E4F4F4E0E1C147E9DED /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B8EC604002D3AACC61D5BDBC802F50D0 /* MJRefresh.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; + IBSC_MODULE = MJRefresh; + INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = MJRefresh.Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; C1238B6F45B99CBFA2DE1E81C06F98A2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A96E31FD91560DE1C982C3A2F559FB6B /* SwiftKeychainWrapper.release.xcconfig */; + baseConfigurationReference = 3C75D009CCCA844FCC9AB9C57F1EFD1F /* SwiftKeychainWrapper.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -18243,26 +18935,102 @@ }; name = Release; }; - C45E55F6F9432BDAF53A56B3242560C5 /* Debug */ = { + C249BC47E6ED79C39FE1FA34EB5EDF52 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BDB33574F45BE6091CBD60487B6B9FAC /* lottie-ios.debug.xcconfig */; + baseConfigurationReference = B479A2DD7E7DF27106FC6E8B4BCC9594 /* RxRelay.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/lottie-ios"; - IBSC_MODULE = Lottie; - INFOPLIST_FILE = "Target Support Files/lottie-ios/ResourceBundle-LottiePrivacyInfo-lottie-ios-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxRelay"; + IBSC_MODULE = RxRelay; + INFOPLIST_FILE = "Target Support Files/RxRelay/ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = LottiePrivacyInfo; + PRODUCT_NAME = RxRelay_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; + name = Release; + }; + C4519138CEAFA15F97F80155F0A33215 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B1A4FD8A8C9FBB2B4AE098AFCDEA027B /* IQTextView.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQTextView/IQTextView-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQTextView/IQTextView-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/IQTextView/IQTextView.modulemap"; + PRODUCT_MODULE_NAME = IQTextView; + PRODUCT_NAME = IQTextView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + C5F50EE217B051942670CAB087EB1BEE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A462FD5A5791151FAF19DE1A2BB6CAF8 /* IQKeyboardReturnManager.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardReturnManager; + PRODUCT_NAME = IQKeyboardReturnManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; name = Debug; }; C6D82ADFF4A838BC1D47CD03A8A190E9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFD32F8F371F0FF3AB2E0204D4001137 /* KingfisherWebP.debug.xcconfig */; + baseConfigurationReference = BD5055592BE65B1AFCBD850A79CCC6B5 /* KingfisherWebP.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18299,26 +19067,26 @@ }; name = Debug; }; - C740D30E057C0E1E0876E05625828366 /* Release */ = { + C88ACF82957AE3FB5CED30C3CD6859D5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 086F64A3B9E25E5506DF53C6A7398B30 /* MJRefresh.release.xcconfig */; + baseConfigurationReference = 2854C80D6EF7D3B7B82AD9C4ADC0FD64 /* IQKeyboardCore.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; - IBSC_MODULE = MJRefresh; - INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; + IBSC_MODULE = IQKeyboardCore; + INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = MJRefresh.Privacy; + PRODUCT_NAME = IQKeyboardCore; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; CB3020DFC843BCE565F5FA4024538D17 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3BBC561B29ED22D84456A56B25487B1A /* Kingfisher.release.xcconfig */; + baseConfigurationReference = 1FBA36361856104A4D031F00072469BF /* Kingfisher.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18356,26 +19124,9 @@ }; name = Release; }; - CC5B7F78C83454497957B4ECC02F118F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1CF8E6F541077AC2F8784FCFDE14C12A /* ZXSDK.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; CD531507144E35A983888394ADD82075 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 261B8297554CE4FE7CB1170B6603261D /* AMap3DMap.debug.xcconfig */; + baseConfigurationReference = 090A0F0AF4335239DE003FB4A5980412 /* AMap3DMap.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -18392,7 +19143,7 @@ }; CECC5694E635C8311E213453B80E51AF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D414BEB5C18132E781D4587C8EFA1857 /* Masonry.release.xcconfig */; + baseConfigurationReference = 217E00EF02173DE5AA3D621B58AD5EA7 /* Masonry.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -18431,7 +19182,7 @@ }; CF4574325CCCF465D3492C60311DBE5E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0791E218AD38A3E5DB7DCC82469F2282 /* Popover.debug.xcconfig */; + baseConfigurationReference = 3799191460893486B21344FB44085E5A /* Popover.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -18467,26 +19218,26 @@ }; name = Debug; }; - CFF37C784A3A519DFE358A217CE35A21 /* Debug */ = { + CF6FCA3816323289BFE894AB53C937C9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5C4D9BE2EA61918FA56C7073CC77DB33 /* IQKeyboardManagerSwift.debug.xcconfig */; + baseConfigurationReference = F17AA9FF2A03983AFAF7969998113A73 /* IQKeyboardCore.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; - IBSC_MODULE = IQKeyboardManagerSwift; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; + IBSC_MODULE = IQKeyboardCore; + INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardManagerSwift; + PRODUCT_NAME = IQKeyboardCore; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; D01F3580E114FEEB4E2AABE445D8CEE8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 371C690B36365A3FC898E515449C2217 /* SwiftDate.release.xcconfig */; + baseConfigurationReference = 1A0AD4B77AA2B0C8F61E913F33E32B5D /* SwiftDate.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18526,7 +19277,7 @@ }; D0C03895DE80B8549E8C1D167D22E44D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5C4D9BE2EA61918FA56C7073CC77DB33 /* IQKeyboardManagerSwift.debug.xcconfig */; + baseConfigurationReference = 0A9E8211F029EBA42EEEE2CC2901AFBC /* IQKeyboardManagerSwift.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18562,26 +19313,9 @@ }; name = Debug; }; - D2389AF3DA22D03EC84FF8CEA2F0AC04 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FDF694330205FA2699A346C81F89D14B /* IQKeyboardToolbar.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbar"; - IBSC_MODULE = IQKeyboardToolbar; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardToolbar; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; D24EC0EF28B2B0C44685D7240EBF2C15 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 58210E256435ABC11184FBEC80BBAD31 /* AMapSearch.release.xcconfig */; + baseConfigurationReference = FE7774FEDAEA41B1AA9734250483E1FE /* AMapSearch.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -18599,7 +19333,7 @@ }; D4970E2DF87C5802E166FAC3F3951336 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8644E0F97A0F7E3524191228AA9D3074 /* TagListView.debug.xcconfig */; + baseConfigurationReference = 93D67B4D138C469D66869335FAC4A656 /* TagListView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -18635,86 +19369,9 @@ }; name = Debug; }; - D5C802A708AF3E2E14991483FCDD92F1 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CF3E1C0900F540641D8FE98FD89E3640 /* YYImage.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/YYImage/YYImage-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/YYImage/YYImage-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/YYImage/YYImage.modulemap"; - PRODUCT_MODULE_NAME = YYImage; - PRODUCT_NAME = YYImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - D74D2C75018086888166989C64E6D4D6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8CA76143A5698109811F6465625A7D19 /* RxSwift.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/RxSwift/RxSwift-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/RxSwift/RxSwift.modulemap"; - PRODUCT_MODULE_NAME = RxSwift; - PRODUCT_NAME = RxSwift; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; D817AA34BFD723AEF714916F00BC5145 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B56ACCB20DA9D768C32CE92ADE5257AB /* YBImageBrowser.release.xcconfig */; + baseConfigurationReference = 97EF826E6048C875FF0150EBB63D62DA /* YBImageBrowser.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -18751,47 +19408,9 @@ }; name = Release; }; - DA0EF6FB32EC66C68F7A63EC2775AAC6 /* Debug */ = { + DB5D2204B393A72333EE951E48B642CB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92F1C3BA22F62F1CFB1DE61364BA3A00 /* IQKeyboardNotification.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardNotification; - PRODUCT_NAME = IQKeyboardNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - DAB7F498C737AB5713BB102639203892 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1390CC8E3CD88975425399A7BD6E60F3 /* RxSwift.debug.xcconfig */; + baseConfigurationReference = 4DDFE96FD63E4568E70A89429B350567 /* RxSwift.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxSwift"; @@ -18804,18 +19423,35 @@ TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - DB12760E9B83D67E33D1ABC87E355DA5 /* Release */ = { + DFA5CD76B1F214F44A797FB939DCF663 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C96FCAF290E620B33506E5F6F3F26719 /* IQKeyboardToolbarManager.release.xcconfig */; + baseConfigurationReference = A462FD5A5791151FAF19DE1A2BB6CAF8 /* IQKeyboardReturnManager.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; - IBSC_MODULE = IQKeyboardToolbarManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; + IBSC_MODULE = IQKeyboardReturnManager; + INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardToolbarManager; + PRODUCT_NAME = IQKeyboardReturnManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + E3078BE0525EF526A970DC7166E8632F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4471EC3FFF68A5CB2C39BF14527FC3D8 /* CocoaLumberjack.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CocoaLumberjack"; + IBSC_MODULE = CocoaLumberjack; + INFOPLIST_FILE = "Target Support Files/CocoaLumberjack/ResourceBundle-CocoaLumberjackPrivacy-CocoaLumberjack-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = CocoaLumberjackPrivacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -18823,9 +19459,9 @@ }; name = Release; }; - DE9AE4766C31687E11FD9F2CCCDBA4BB /* Release */ = { + E30DE7BA7374DDF0433B59E8AF35D5E8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3315C38767856D68C851A907CE93A414 /* SDWebImage.release.xcconfig */; + baseConfigurationReference = 2A0F966CE73BB9FB937DE773DED561BE /* YYImage.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -18837,9 +19473,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/YYImage/YYImage-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/SDWebImage/SDWebImage-Info.plist"; + INFOPLIST_FILE = "Target Support Files/YYImage/YYImage-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -18847,73 +19483,39 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; - PRODUCT_MODULE_NAME = SDWebImage; - PRODUCT_NAME = SDWebImage; + MODULEMAP_FILE = "Target Support Files/YYImage/YYImage.modulemap"; + PRODUCT_MODULE_NAME = YYImage; + PRODUCT_NAME = YYImage; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - DEE4CB55BBA4206A0E6FFB1CA8366648 /* Release */ = { + E59C392C6F353CC2E8D40F986EF33C09 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB11F69CDAC50ABF5A1340AA052D39B4 /* SnapKit.release.xcconfig */; + baseConfigurationReference = 14E16E30B25A8A248D95A482A7EB47AF /* GYSDK.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit"; - IBSC_MODULE = SnapKit; - INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = SnapKit_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - E35574D386C1C58CDA842EE55FBB8250 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4ED0F1D4E099A8871122580C0CEA500F /* IQKeyboardNotification.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; - IBSC_MODULE = IQKeyboardNotification; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - E3F9944B8CB0A9D309971B0AAE71C2B3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AEA1F78F7416BA70657450BF20259B85 /* SwiftyJSON.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SwiftyJSON"; - IBSC_MODULE = SwiftyJSON; - INFOPLIST_FILE = "Target Support Files/SwiftyJSON/ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = SwiftyJSON; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - E48285ADD3D43654F29DD99C99D11500 /* Debug */ = { + E7EBFE7E864F03B2C33E84C0EE4BCC2C /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 887BAFDF5875E4C49937F4B27AA714C4 /* Pods-QuickLocation.debug.xcconfig */; buildSettings = { @@ -18952,44 +19554,9 @@ }; name = Debug; }; - E59C392C6F353CC2E8D40F986EF33C09 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 02F7F5006D4C83A6F5AEDE0548257A71 /* GYSDK.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - E6E8033438C75C7618431585C83A2C5C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8CA76143A5698109811F6465625A7D19 /* RxSwift.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxSwift"; - IBSC_MODULE = RxSwift; - INFOPLIST_FILE = "Target Support Files/RxSwift/ResourceBundle-RxSwift_Privacy-RxSwift-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = RxSwift_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; E8F6D6BE65F8EA78E36FD25E915E85F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F1A0B9A15DBD2D3F89FC7A2167A4AD3F /* SwiftyUserDefaults.debug.xcconfig */; + baseConfigurationReference = 3F080FACE9A2AB9E5FF8918DF0CD166E /* SwiftyUserDefaults.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -19025,9 +19592,9 @@ }; name = Debug; }; - E976294576B7E993A16F173924D46ABE /* Release */ = { + E925F4986BD74A8B798476AC66556313 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1DF1E44CD5D56F8194F2390A6116F36D /* IQKeyboardToolbar.release.xcconfig */; + baseConfigurationReference = 8510A31B20023A5D55194501EEC480F3 /* CocoaMQTT.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -19039,9 +19606,10 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/CocoaMQTT/CocoaMQTT-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CocoaMQTT/CocoaMQTT-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -19049,14 +19617,14 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbar; - PRODUCT_NAME = IQKeyboardToolbar; + MODULEMAP_FILE = "Target Support Files/CocoaMQTT/CocoaMQTT.modulemap"; + PRODUCT_MODULE_NAME = CocoaMQTT; + PRODUCT_NAME = CocoaMQTT; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -19064,26 +19632,9 @@ }; name = Release; }; - E9B2B5A143CEF8D1C33E8A1C215406A8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BECB67C4910C284EF8C311E0AF7A187D /* RxCocoa.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxCocoa"; - IBSC_MODULE = RxCocoa; - INFOPLIST_FILE = "Target Support Files/RxCocoa/ResourceBundle-RxCocoa_Privacy-RxCocoa-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = RxCocoa_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; E9FB586DC0DF19E1617A7998B4E377B3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0728A2587FDDC0AF78C982A4DC85EF61 /* MJExtension.release.xcconfig */; + baseConfigurationReference = F5929496387F8B541C21CC51C6AAF115 /* MJExtension.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -19121,98 +19672,9 @@ }; name = Release; }; - EA7FBD7FE4D2902D8DCD16A593942772 /* Debug */ = { + EAF73F4DE3F4B03BEE7EF798E12FF3BD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED84EE15E780A4989C1BA79801B0FCF2 /* IQKeyboardCore.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; - IBSC_MODULE = IQKeyboardCore; - INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardCore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - EAF21DF06290AF362E979DACAB4180E2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 94801563DB532EDC0D80A3BCEE705193 /* IQKeyboardCore.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; - IBSC_MODULE = IQKeyboardCore; - INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQKeyboardCore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - ED52A173636D4BA1CFB21EBE2E2918B0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A9EC385B4E999D9713BD79006E2B9E7C /* IQTextView.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextView"; - IBSC_MODULE = IQTextView; - INFOPLIST_FILE = "Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - PRODUCT_NAME = IQTextView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - EDF669387EAE266419D9A8E1BC5D6AED /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 93608F9DC483D379F667A4F03EDE2D96 /* IQTextInputViewNotification.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; - PRODUCT_MODULE_NAME = IQTextInputViewNotification; - PRODUCT_NAME = IQTextInputViewNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - F0DC847A602AA2EA132B92D583476495 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 615A84F5D6E75DCDEE4DE6130DF59E85 /* libwebp.debug.xcconfig */; + baseConfigurationReference = B479A2DD7E7DF27106FC6E8B4BCC9594 /* RxRelay.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -19224,9 +19686,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/libwebp/libwebp-Info.plist"; + INFOPLIST_FILE = "Target Support Files/RxRelay/RxRelay-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -19234,52 +19696,14 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/libwebp/libwebp.modulemap"; - PRODUCT_MODULE_NAME = libwebp; - PRODUCT_NAME = libwebp; + MODULEMAP_FILE = "Target Support Files/RxRelay/RxRelay.modulemap"; + PRODUCT_MODULE_NAME = RxRelay; + PRODUCT_NAME = RxRelay; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - F1F0AA7E2732EA92BCC25113FC90ACBD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BC7E39CC063AB41D123D508DC96ED3C7 /* YYImage.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/YYImage/YYImage-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/YYImage/YYImage-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/YYImage/YYImage.modulemap"; - PRODUCT_MODULE_NAME = YYImage; - PRODUCT_NAME = YYImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -19287,9 +19711,28 @@ }; name = Release; }; + EB07E23E6CB77CC15A640F29244EF0C4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BE2396AEB28B21E7D7963F4E67D9B1F9 /* OpenIMSDKCore.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; F297241D9B06A15050FE4F76DABA19CA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AEA1F78F7416BA70657450BF20259B85 /* SwiftyJSON.release.xcconfig */; + baseConfigurationReference = D1B7F2C96D885D7A145E648320C1726E /* SwiftyJSON.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -19329,7 +19772,7 @@ }; F3F27D16C9BE2272FF09C603083ED6CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BF62A78FF66483CF7EB197B4BC26ADDF /* YBImageBrowser.debug.xcconfig */; + baseConfigurationReference = DEDA766A20F0E865ABB8743367B99D4F /* YBImageBrowser.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -19365,9 +19808,82 @@ }; name = Debug; }; + F43C82080AEA388639D459FF70CB580E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D1B7F2C96D885D7A145E648320C1726E /* SwiftyJSON.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SwiftyJSON"; + IBSC_MODULE = SwiftyJSON; + INFOPLIST_FILE = "Target Support Files/SwiftyJSON/ResourceBundle-SwiftyJSON-SwiftyJSON-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = SwiftyJSON; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + F51AF8B511CA98CE6C6DCCD2C6F55792 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EA0077E342A252E846F4FF0AC2A7752E /* IQTextInputViewNotification.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; + PRODUCT_MODULE_NAME = IQTextInputViewNotification; + PRODUCT_NAME = IQTextInputViewNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + F5E1C51A357AB2F2302C42B8292019D8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0A9E8211F029EBA42EEEE2CC2901AFBC /* IQKeyboardManagerSwift.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; + IBSC_MODULE = IQKeyboardManagerSwift; + INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = IQKeyboardManagerSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; F98EE33558C53FC474C6B9EF9F50E27E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3D3A69BB5C302A89D95825EEBCFE3F76 /* Moya.debug.xcconfig */; + baseConfigurationReference = F9C185543B30AD5DE41DCA09C4929D61 /* Moya.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -19404,47 +19920,9 @@ }; name = Debug; }; - FA412114CE56AE2CB00E22EA62ABEB44 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 46A9779C47951687DB62763E0DD55E55 /* IQKeyboardReturnManager.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardReturnManager; - PRODUCT_NAME = IQKeyboardReturnManager; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; FC47B2B7FAEC115D227EE81539ED8586 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F7FA543E892B922765067621A07C87FE /* AlipaySDK-iOS.release.xcconfig */; + baseConfigurationReference = A5855B017DB303D2A1DBEC7EFDEEBEF7 /* AlipaySDK-iOS.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -19461,9 +19939,9 @@ }; name = Release; }; - FCB77C13CF635801344035CCF8C8BB13 /* Debug */ = { + FC7F9F29FF2A20909D9CC2E775DE03F6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FDF694330205FA2699A346C81F89D14B /* IQKeyboardToolbar.debug.xcconfig */; + baseConfigurationReference = DADDA466B0F9556AA080958617E8F666 /* IQTextView.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -19475,9 +19953,9 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/IQTextView/IQTextView-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQTextView/IQTextView-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -19485,23 +19963,41 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbar; - PRODUCT_NAME = IQKeyboardToolbar; + MODULEMAP_FILE = "Target Support Files/IQTextView/IQTextView.modulemap"; + PRODUCT_MODULE_NAME = IQTextView; + PRODUCT_NAME = IQTextView; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; + name = Release; + }; + FD3EAD027CB301408A8381EB584E5FB5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 914F74DC9A660B3CCD6B5049FA3E857E /* RxRelay.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RxRelay"; + IBSC_MODULE = RxRelay; + INFOPLIST_FILE = "Target Support Files/RxRelay/ResourceBundle-RxRelay_Privacy-RxRelay-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + PRODUCT_NAME = RxRelay_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; name = Debug; }; FD4D1EB782183AD18FE4C7DDDDE0785C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED84EE15E780A4989C1BA79801B0FCF2 /* IQKeyboardCore.debug.xcconfig */; + baseConfigurationReference = 2854C80D6EF7D3B7B82AD9C4ADC0FD64 /* IQKeyboardCore.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -19537,6 +20033,84 @@ }; name = Debug; }; + FD57C46FB3D7211F4C882535E570B61D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BBEF8ABEDA5FDBA01511762EB65DD72A /* IQKeyboardNotification.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardNotification; + PRODUCT_NAME = IQKeyboardNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + FE9B9ACDD964D1961FB6DBA635F56AB0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 518C323F07471B8EF777A8488A6431AF /* Pods-QuickLocation.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-QuickLocation/Pods-QuickLocation-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-QuickLocation/Pods-QuickLocation.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -19558,20 +20132,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 07168E72BCBCF2C5EA9E6C96F7DEA930 /* Build configuration list for PBXNativeTarget "RxSwift" */ = { + 0ABD335369805811737BE0F97C6C7353 /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */ = { isa = XCConfigurationList; buildConfigurations = ( - 987C5F155979966DFD336A5FEC557C5C /* Debug */, - D74D2C75018086888166989C64E6D4D6 /* Release */, + 8C5775D3256690EC15997EDD2FA63EC8 /* Debug */, + 8EBB1406D31681A2E94F269AC611C2ED /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 15E1625229AEEF76B371C85A30BEC8D8 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */ = { + 0B93C26B016DBDD8A7FA041E0E6D87CB /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2E15E851224480AAE008F54711E316EF /* Debug */, - C740D30E057C0E1E0876E05625828366 /* Release */, + C019AEAB03257E4F4F4E0E1C147E9DED /* Debug */, + 312BA732DBE2EB1E28A5F40D8ACF82AF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -19585,20 +20159,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 18CC7E116881CCCFF50C55897144816E /* Build configuration list for PBXNativeTarget "YYImage" */ = { + 193B5ADBE19033B315CCB5C55ABE0522 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */ = { isa = XCConfigurationList; buildConfigurations = ( - D5C802A708AF3E2E14991483FCDD92F1 /* Debug */, - F1F0AA7E2732EA92BCC25113FC90ACBD /* Release */, + 60CF78555282CDF26258274D2DA579E8 /* Debug */, + 629CB06A036D875A195343EB063B4D8C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1F1CC3D499493FAF0DD04E927FB9C62C /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */ = { + 1A401D82B16E9AE11902CE16E77EE8CD /* Build configuration list for PBXNativeTarget "MarqueeLabel-MarqueeLabel" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4A679B0433574F23A8277663F294A909 /* Debug */, - 09B0AAEEB5F8A95CA14A95B878C2039C /* Release */, + 163BF315B16D37D0C70C0F744F2CAFB8 /* Debug */, + 79DE095A9083C6209C57D39B80D7719D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -19630,15 +20204,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 27E6C1DA6E893A20C30FD7A93AFC374B /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - FA412114CE56AE2CB00E22EA62ABEB44 /* Debug */, - 162279A834B2284AE37128B0B344550E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 28F8531A55605581FC75A55D04CC3532 /* Build configuration list for PBXNativeTarget "SwiftyUserDefaults" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -19648,6 +20213,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 294F585694949ACBE0279FE7F4677EF2 /* Build configuration list for PBXNativeTarget "Alamofire-Alamofire" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 068E4D7E4CEF96207225A020C2F8CE51 /* Debug */, + 0EA7D0F9F65C2572386B5E34ED5777CA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 29BB59B7B51BC6194771995E3356CF70 /* Build configuration list for PBXNativeTarget "MJRefresh" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -19666,11 +20240,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2FE321B4B52F6E212AA0AC623949A1D1 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */ = { + 2CFDEC658879BF3F8755C0D94533DD07 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */ = { isa = XCConfigurationList; buildConfigurations = ( - CFF37C784A3A519DFE358A217CE35A21 /* Debug */, - 3986E01AC7956DBC6D561019D3EE24C2 /* Release */, + 3D7C9FAAE1A93D59246A1D7E4E252870 /* Debug */, + AEB77615B5EA1B93F5CF7CA914D1FE4A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2D332E71D2EB81E9402144981B454116 /* Build configuration list for PBXAggregateTarget "ZXSDK" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + AF27C96F6AD93DE37083B90DD45B3FFE /* Debug */, + 76D3BC857536C98D671EDFAE14AF716C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2DF8257610A4F0250953B8B24B9302A6 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 94987804FACA342994E719E6DA2AA3A7 /* Debug */, + A2C4B069FB30B674A042174B2828FD72 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -19684,38 +20276,47 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 355641FA650FE0A47CAFAEF548CE37D0 /* Build configuration list for PBXNativeTarget "RxSwift-RxSwift_Privacy" */ = { + 36223DB09DB3CF57C120450B0C942271 /* Build configuration list for PBXAggregateTarget "AMapFoundation" */ = { isa = XCConfigurationList; buildConfigurations = ( - DAB7F498C737AB5713BB102639203892 /* Debug */, - E6E8033438C75C7618431585C83A2C5C /* Release */, + 8C222A78E23D162A5F180A56C966284F /* Debug */, + 989F7A6EDEA39DB9188FD293F445F34F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3606C6C7473BDDA747B961013F63837B /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */ = { + 36A794AD3BEBCCD2C0BE75DC3D13CEC0 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8E7B84ECB85019FA6C5C35EA72AC066F /* Debug */, - DB12760E9B83D67E33D1ABC87E355DA5 /* Release */, + 3C25716485DA53A7DFB2DFD43F025056 /* Debug */, + F51AF8B511CA98CE6C6DCCD2C6F55792 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 37D8640B118856AE776EA78AD4DAC492 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */ = { + 3CA9216911EF16B6BFFD055F1953965D /* Build configuration list for PBXNativeTarget "SwiftyJSON-SwiftyJSON" */ = { isa = XCConfigurationList; buildConfigurations = ( - D2389AF3DA22D03EC84FF8CEA2F0AC04 /* Debug */, - 07D16CB0F4294FC16734A6A541737458 /* Release */, + 8AF4794AB17D31563D9868E29E98A584 /* Debug */, + F43C82080AEA388639D459FF70CB580E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 39B74D0BE7AD9880E60F5DFCD0523612 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */ = { + 3D1CBD8549563FAC742CB31571F622FE /* Build configuration list for PBXNativeTarget "MqttCocoaAsyncSocket" */ = { isa = XCConfigurationList; buildConfigurations = ( - EDF669387EAE266419D9A8E1BC5D6AED /* Debug */, - 9944C2ECD4A1E40F80E387A35B189F2D /* Release */, + 860F226BB6B77CB58443727BD36E9FAA /* Debug */, + 8B8C53BCF7E1FC56DBB96B20720D2D37 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 464447B68542887B4E815F2387D67490 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FD57C46FB3D7211F4C882535E570B61D /* Debug */, + 5109DABC9EA627490A85B60812376098 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -19729,6 +20330,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 4F5BECF0073A6C526CA38FBEEAE65366 /* Build configuration list for PBXNativeTarget "IQTextView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C4519138CEAFA15F97F80155F0A33215 /* Debug */, + FC7F9F29FF2A20909D9CC2E775DE03F6 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 5176F9AA0EF18F0B0B9D8EF8227C5E46 /* Build configuration list for PBXNativeTarget "SwiftyJSON" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -19738,6 +20348,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 53ADEEB74F5FB98F256688E4189ECC79 /* Build configuration list for PBXNativeTarget "RxSwift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9E9C4F2E8D385B2845AC937F554F71DE /* Debug */, + 4CC9BB483A0351F09BE9ED5B967E87D4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 547AC2DDC5CDD1783E0827EEA7D453E1 /* Build configuration list for PBXNativeTarget "MJExtension" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -19756,15 +20375,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5E922FEE2AD37BFC983DCA4DA7B6181F /* Build configuration list for PBXNativeTarget "MBProgressHUD-MBProgressHUD" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 28B38B940367D9C192340E058448FB3B /* Debug */, - 57696C1751BC0BBEDFCF721979E6D5C4 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 63ECDE2C79B8ED0684A10A9659C0EAFB /* Build configuration list for PBXNativeTarget "Alamofire" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -19774,20 +20384,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6A6EAE788828FAC84CA851AF9513C395 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */ = { + 68A32CA569D382E0EF6F64823689DB89 /* Build configuration list for PBXAggregateTarget "OpenIMSDKCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7FA416E74B027349B9DFFBCC57C47AE8 /* Debug */, - E35574D386C1C58CDA842EE55FBB8250 /* Release */, + A567BED43C10335A7A9B277C9AEB9F54 /* Debug */, + EB07E23E6CB77CC15A640F29244EF0C4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6C8AAC430878C55132CE101BE3947ECE /* Build configuration list for PBXNativeTarget "libwebp" */ = { + 6A29205CCB770D69C4CE94DAE16F442F /* Build configuration list for PBXNativeTarget "CocoaLumberjack-CocoaLumberjackPrivacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - F0DC847A602AA2EA132B92D583476495 /* Debug */, - 43FD5D6C22D4BB488E106147A7F97B78 /* Release */, + 4FCA227431618AF78B9838E5A1120031 /* Debug */, + E3078BE0525EF526A970DC7166E8632F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6E3711E75C912F7271040F0F928F9A89 /* Build configuration list for PBXNativeTarget "Pods-QuickLocation" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E7EBFE7E864F03B2C33E84C0EE4BCC2C /* Debug */, + FE9B9ACDD964D1961FB6DBA635F56AB0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -19801,20 +20420,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 702C70FAB15C1256D5CDB0E1AE949E8D /* Build configuration list for PBXAggregateTarget "ZXSDK" */ = { + 6EE0C580D4B4F5DF5D297308DC4983AF /* Build configuration list for PBXNativeTarget "libwebp" */ = { isa = XCConfigurationList; buildConfigurations = ( - CC5B7F78C83454497957B4ECC02F118F /* Debug */, - 9E09134C79E09227E76D99B5CE8B69D8 /* Release */, + 34A74B2C3C8703EB4F1D11F2E1926310 /* Debug */, + B9BACBCA9A45F72D827D3B889F6891B6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 71C54D251EC42560EFF3CE4B275E8DA4 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */ = { + 701421AC78CFCB06DED14D7A82780FB3 /* Build configuration list for PBXNativeTarget "CocoaMQTT" */ = { isa = XCConfigurationList; buildConfigurations = ( - 30F809E0AB8CF55C9380CE9450CCF8E0 /* Debug */, - DEE4CB55BBA4206A0E6FFB1CA8366648 /* Release */, + 5A0F8F0796E3B83B4A2407828E09FD7D /* Debug */, + E925F4986BD74A8B798476AC66556313 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 7163CE213F73888D42781422F65C7896 /* Build configuration list for PBXNativeTarget "RxSwift-RxSwift_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6D6B94B1C6C8342A6240971EDC7F4F03 /* Debug */, + DB5D2204B393A72333EE951E48B642CB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -19828,6 +20456,33 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 74CA0743989155B4C5D31007514878C4 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C5F50EE217B051942670CAB087EB1BEE /* Debug */, + 2C18334EE317EA80E052CDF4C96A3A3C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 74E7BB30B8789F5471E13D1D9C21C66C /* Build configuration list for PBXNativeTarget "RxCocoa-RxCocoa_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 207ABC32DFA61C507FB16A0E7CD7C97D /* Debug */, + 85AABA2154B253A555DEFCB9555B9F64 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 757798FC7D05DC5B159999BF40BD2456 /* Build configuration list for PBXNativeTarget "MBProgressHUD-MBProgressHUD" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 60E214194E44DC9876A98E4B45B6E9E6 /* Debug */, + 85CCF194FE3600A4FF6E462E8ED33CCC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 76CB671120DA668996BFAEDD66DF2560 /* Build configuration list for PBXNativeTarget "SwiftKeychainWrapper" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -19837,24 +20492,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7B3ECF9B14E831C1E69A740F6EDD2397 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DA0EF6FB32EC66C68F7A63EC2775AAC6 /* Debug */, - 5642F5C47DFFC3FD95EEAE52C70C8743 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 7D3E39350E8F78F3C28A7E4F78B6E0B8 /* Build configuration list for PBXNativeTarget "SwiftyJSON-SwiftyJSON" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B5D89FCBD086706B8A7C07EA8D6E87C0 /* Debug */, - E3F9944B8CB0A9D309971B0AAE71C2B3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 80CE967CAA1D35721519F892BAF7A19B /* Build configuration list for PBXNativeTarget "SnapKit" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -19864,38 +20501,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 89AA749B6C52668A1526F12E92C23B8D /* Build configuration list for PBXAggregateTarget "AMapFoundation" */ = { + 86DB1A97ED27CD00080CD6C1BF42DBFA /* Build configuration list for PBXNativeTarget "RxRelay-RxRelay_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 45F6DD108D2E5E84D61EAEA6C39166AD /* Debug */, - 6D1573F3B7CC7DE605B6D0DC7BC202B0 /* Release */, + FD3EAD027CB301408A8381EB584E5FB5 /* Debug */, + C249BC47E6ED79C39FE1FA34EB5EDF52 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8B01AA7742F11A0216B05AA927E0058A /* Build configuration list for PBXAggregateTarget "OpenIMSDKCore" */ = { + 8A8565B186B9103A7BC8FE64942C270E /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */ = { isa = XCConfigurationList; buildConfigurations = ( - A0BF867D6F81E7FC508C3E72506DB8E4 /* Debug */, - 80D632C6B12D37E97D1F224C2AFCA4DD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8BECD56FE2C07A3980EF80DAF29BEDD9 /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EA7FBD7FE4D2902D8DCD16A593942772 /* Debug */, - EAF21DF06290AF362E979DACAB4180E2 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8D4601F2FE970FD358D36EAA7D359464 /* Build configuration list for PBXNativeTarget "RxCocoa-RxCocoa_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 315B1E191A5B9806F4332E808628D960 /* Debug */, - E9B2B5A143CEF8D1C33E8A1C215406A8 /* Release */, + 977A90BE2CB4C356C492639261512F92 /* Debug */, + B8036B08CD7C7B3CB618FEC3ECEF56B4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -19927,15 +20546,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 950D6D814E279F5AD0981351D37170B0 /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 233CC82B062F1562E9165A8F3FF47364 /* Debug */, - 1640536A0FD7A1E7E82E45CC51E13F0B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 96B7158D5435EB95E2DC0D0FB8F01241 /* Build configuration list for PBXAggregateTarget "WechatOpenSDK-XCFramework" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -19945,24 +20555,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 983007A441D8557EA03BD116DF150079 /* Build configuration list for PBXNativeTarget "RxRelay" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2E64763DEE2C464FC49626D13A3CE7C9 /* Debug */, - 4742912452B70CF0E05A564BD6766C01 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 99544DFEA3ABAD73EE22C7B670A27277 /* Build configuration list for PBXNativeTarget "lottie-ios-LottiePrivacyInfo" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C45E55F6F9432BDAF53A56B3242560C5 /* Debug */, - 19DBA2A5D1BC527D42DCC1626816CBB9 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 9A781EFB19863F1A81EBD59375F3671E /* Build configuration list for PBXAggregateTarget "AMapSearch" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -19972,11 +20564,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9F4308D7D5046F7288DB3693BDD9D2FA /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */ = { + 9FC117AC9D899E1F16FF60429B123876 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */ = { isa = XCConfigurationList; buildConfigurations = ( - ED52A173636D4BA1CFB21EBE2E2918B0 /* Debug */, - B7059015F5197B420B1752EDCE3F79DB /* Release */, + 2110B06D88DAC0C70648E521C78C23AC /* Debug */, + 36D2AB518180F0D393D5C7822646DD1F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -19990,6 +20582,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + A2A7560779BF2CE98594D4DD95618156 /* Build configuration list for PBXNativeTarget "ObjectMapper-Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2125CB4316E177383D6E7F156052BC3F /* Debug */, + ADD0B09C4682D33C26B8F857F66889EE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; A502924529CB9C0C9B064B4F2F767523 /* Build configuration list for PBXNativeTarget "MarqueeLabel" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -20008,6 +20609,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + A8D2F4A6CDB15363D2B7CD87F959C43E /* Build configuration list for PBXNativeTarget "lottie-ios-LottiePrivacyInfo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 80580A4030AB5AD8134DA9941CBB77EA /* Debug */, + 0EA508C10E9E9E4E556F0C47AEBB0C30 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; AAA1F8799DB68036C3BE983C05FAA2C7 /* Build configuration list for PBXNativeTarget "Masonry" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -20017,11 +20627,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AB54FD55C44E74B81F98130A2F89111B /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */ = { + AC300E7B80778A8B1063AA52F7BB053A /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2573257C59315F1456D64B36074E05B0 /* Debug */, - 06A67DDE254165BED63DA36AEAFFE8D7 /* Release */, + 63A932FA60972BE65F60E95EE7DB97E9 /* Debug */, + 4A285D494837C06E255BBE70ED66648C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + AD16F0FCAD771A357F473A4AFE0DAD13 /* Build configuration list for PBXNativeTarget "YYImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E30DE7BA7374DDF0433B59E8AF35D5E8 /* Debug */, + 3AB760C353A7AF961E99E05A4B294013 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -20035,20 +20654,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B2ABF0C77AFF3164F71BADF22DE56125 /* Build configuration list for PBXNativeTarget "ObjectMapper-Privacy" */ = { + B25EFB22FA9E922D7EFE7E9BF5C8EB0E /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - B9F391BF42027393B4BF6AA1CBA4453F /* Debug */, - 81BD4B682BDC387F965169A5A2FCE394 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - B4235B903770F2009D5C2863EFB72F2F /* Build configuration list for PBXNativeTarget "Alamofire-Alamofire" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 04862C6DDEB1DBE6E659E6DE452581DA /* Debug */, - 214849C89594A3C114CACD9239506EA6 /* Release */, + 169F21279F180E2A07A411F02696F82A /* Debug */, + 1179A28E43BB9B438110C899C37B5D94 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -20062,6 +20672,33 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + B6E2A2C8667DB5ECDD64557EAEE2B908 /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C88ACF82957AE3FB5CED30C3CD6859D5 /* Debug */, + CF6FCA3816323289BFE894AB53C937C9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B810A89EE45327E8558B0455BE1BFE6F /* Build configuration list for PBXNativeTarget "RxRelay" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 45FC8E4AF4CFA39EE8BFF6D0A14A1D31 /* Debug */, + EAF73F4DE3F4B03BEE7EF798E12FF3BD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B9C98F60F3068C7DB86F9997E7ADC7D6 /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A83C47D3B1338B16635947D4786FE297 /* Debug */, + 1608EEC2C7E087E8B7B6FDFEF9ED137C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; C5AC09B999620A5A2117D46214FA5B8D /* Build configuration list for PBXNativeTarget "Differentiator" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -20080,51 +20717,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CDD88F74A6576E75408DEB54D8367BA6 /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B8E7A8936DB5E44A40F65CC0E3D50FDE /* Debug */, - A19EC7A9994C319A743037E86ADC5DD1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - CED9CFC3D76AAC6B7819937B55C8760C /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - FCB77C13CF635801344035CCF8C8BB13 /* Debug */, - E976294576B7E993A16F173924D46ABE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D19A882E9703087238F6DCEADF438F1A /* Build configuration list for PBXNativeTarget "IQTextView" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 669911B4A20163DB1D61CDBA5C0E3F15 /* Debug */, - 5FBDCA0668558656B9DAB57C304EC2EA /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D25D1A86881D18DF2B01C871873DA4FD /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6B4E69E0158F76E542450D99714FAB44 /* Debug */, - DE9AE4766C31687E11FD9F2CCCDBA4BB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D2D7ECC79626771DD3DBA21E3D2A1666 /* Build configuration list for PBXNativeTarget "RxRelay-RxRelay_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4E27E0C7121FC48A6C0712354A8461D4 /* Debug */, - 751313F007EA521A3993D5A6B4514C18 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; D3166B236F84C229586E28FCE673060A /* Build configuration list for PBXNativeTarget "ObjectMapper" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -20134,6 +20726,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + D37672541719AF3542039591D846B1A2 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 14A867063205257815333F3D89A4B3C5 /* Debug */, + 32CEFCC3790E3E81EE0F8C44E82B42F1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; D508D1CAA0017AF1AAE213E8D2D8E700 /* Build configuration list for PBXNativeTarget "YBImageBrowser" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -20143,6 +20744,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + DA5E7F9090E0F51DF371BAD15789BA85 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F5E1C51A357AB2F2302C42B8292019D8 /* Debug */, + B2AF6341BAE29E134D871C5C3CC4E64E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; DB934B2CA50C4F8A1DC14A140BB7C372 /* Build configuration list for PBXNativeTarget "RxDataSources" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -20161,33 +20771,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E8B5922B5EAC07270F7EBC177288A753 /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 426F1E0BB41D46C7D52CE07BCCF8E3F8 /* Debug */, - 11BE2D37CE049B8C641F8B18B95A1ABD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E98AA333BE2F80C5073C19F7D874B291 /* Build configuration list for PBXNativeTarget "MarqueeLabel-MarqueeLabel" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 74450F21AF93BDE38D774C8240255D55 /* Debug */, - 86C2551D8F47D1C6959D5A89792488CE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - EA941C1047FD4F475EBCF2297A47EEF3 /* Build configuration list for PBXNativeTarget "Pods-QuickLocation" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E48285ADD3D43654F29DD99C99D11500 /* Debug */, - 78E308EE9ECD3B57218EE83BC37C86F8 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; EB7001C8F8F3903832E17537BC7A2AC1 /* Build configuration list for PBXNativeTarget "MBProgressHUD" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -20197,20 +20780,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F34FCEDC1D5872EBC62EDD44DA6477B3 /* Build configuration list for PBXNativeTarget "CocoaLumberjack-CocoaLumberjackPrivacy" */ = { + EE84F2E720E0F4CCA0AA5D9753F54CF1 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */ = { isa = XCConfigurationList; buildConfigurations = ( - 90A8CEA52DC8E421BA80CF81A2E2BA83 /* Debug */, - 5E36512210BA8DEE48D4EF1CCBB389A1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F48896F2B355944D89133495B349A209 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 385DE5C80E9D907A92232745810D2AAA /* Debug */, - 4C850EC2A3B94F224FE99530B047865F /* Release */, + 08CB6A29392D1DB1390D381263484F6B /* Debug */, + 74A48C190C9E3EA62EC23145908E6AA4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -20224,6 +20798,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + F9FAD43D2A0DEB921B66E27E37C7E5B9 /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B3A725D289C4F6B1720005CF99FDF745 /* Debug */, + 7116AA08E5C5E05A3E1D15F5B4C4823E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FE928EFF4FD3F75514DA375AC225A59E /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DFA5CD76B1F214F44A797FB939DCF663 /* Debug */, + B735702FC327B16578CE98797C18A489 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; FFD4204E4DCD52FD19E7C87A9DD45C40 /* Build configuration list for PBXNativeTarget "lottie-ios" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/CocoaMQTT.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/CocoaMQTT.xcscheme new file mode 100644 index 0000000..b98be67 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/CocoaMQTT.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/MqttCocoaAsyncSocket.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/MqttCocoaAsyncSocket.xcscheme new file mode 100644 index 0000000..6af612b --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/MqttCocoaAsyncSocket.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/xcschememanagement.plist index 51d737e..05a9681 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Pods/Pods.xcodeproj/xcuserdata/yanghong.xcuserdatad/xcschemes/xcschememanagement.plist @@ -49,6 +49,11 @@ isShown + CocoaMQTT.xcscheme + + isShown + + Differentiator.xcscheme isShown @@ -214,6 +219,11 @@ isShown + MqttCocoaAsyncSocket.xcscheme + + isShown + + ObjectMapper-Privacy.xcscheme isShown diff --git a/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-Info.plist b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-Info.plist new file mode 100644 index 0000000..91b625b --- /dev/null +++ b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 2.2.5 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-dummy.m b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-dummy.m new file mode 100644 index 0000000..6399b30 --- /dev/null +++ b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_CocoaMQTT : NSObject +@end +@implementation PodsDummy_CocoaMQTT +@end diff --git a/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-prefix.pch b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-umbrella.h b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-umbrella.h new file mode 100644 index 0000000..52302f7 --- /dev/null +++ b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double CocoaMQTTVersionNumber; +FOUNDATION_EXPORT const unsigned char CocoaMQTTVersionString[]; + diff --git a/Pods/Target Support Files/CocoaMQTT/CocoaMQTT.debug.xcconfig b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT.debug.xcconfig new file mode 100644 index 0000000..e41a4c3 --- /dev/null +++ b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT.debug.xcconfig @@ -0,0 +1,16 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CocoaMQTT +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "CFNetwork" -framework "MqttCocoaAsyncSocket" -framework "Security" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CocoaMQTT +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/CocoaMQTT/CocoaMQTT.modulemap b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT.modulemap new file mode 100644 index 0000000..c9be1fe --- /dev/null +++ b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT.modulemap @@ -0,0 +1,6 @@ +framework module CocoaMQTT { + umbrella header "CocoaMQTT-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/CocoaMQTT/CocoaMQTT.release.xcconfig b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT.release.xcconfig new file mode 100644 index 0000000..e41a4c3 --- /dev/null +++ b/Pods/Target Support Files/CocoaMQTT/CocoaMQTT.release.xcconfig @@ -0,0 +1,16 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CocoaMQTT +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "CFNetwork" -framework "MqttCocoaAsyncSocket" -framework "Security" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CocoaMQTT +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-Info.plist b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-Info.plist new file mode 100644 index 0000000..3fa062a --- /dev/null +++ b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.8 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-dummy.m b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-dummy.m new file mode 100644 index 0000000..ea7b24a --- /dev/null +++ b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_MqttCocoaAsyncSocket : NSObject +@end +@implementation PodsDummy_MqttCocoaAsyncSocket +@end diff --git a/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-prefix.pch b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-umbrella.h b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-umbrella.h new file mode 100644 index 0000000..5c337ae --- /dev/null +++ b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket-umbrella.h @@ -0,0 +1,18 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "MGCDAsyncSocket.h" +#import "MGCDAsyncUdpSocket.h" + +FOUNDATION_EXPORT double MqttCocoaAsyncSocketVersionNumber; +FOUNDATION_EXPORT const unsigned char MqttCocoaAsyncSocketVersionString[]; + diff --git a/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.debug.xcconfig b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.debug.xcconfig new file mode 100644 index 0000000..cd1a06a --- /dev/null +++ b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.debug.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "CFNetwork" -framework "Security" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/MqttCocoaAsyncSocket +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.modulemap b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.modulemap new file mode 100644 index 0000000..33f0c5d --- /dev/null +++ b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.modulemap @@ -0,0 +1,6 @@ +framework module MqttCocoaAsyncSocket { + umbrella header "MqttCocoaAsyncSocket-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.release.xcconfig b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.release.xcconfig new file mode 100644 index 0000000..cd1a06a --- /dev/null +++ b/Pods/Target Support Files/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.release.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "CFNetwork" -framework "Security" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/MqttCocoaAsyncSocket +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-acknowledgements.markdown b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-acknowledgements.markdown index 041bbc9..54b2e2e 100644 --- a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-acknowledgements.markdown @@ -87,6 +87,12 @@ Redistribution and use in source and binary forms, with or without modification, THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +## CocoaMQTT + +This project is dual licensed under the Eclipse Public License 1.0 and the +Eclipse Distribution License 1.0 as described in the epl-v10 and edl-v10 files. + + ## Differentiator MIT License @@ -885,6 +891,16 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## MqttCocoaAsyncSocket + +Public Domain License + +The MqttCocoaAsyncSocket project is in the public domain. + +The original TCP version (AsyncSocket) was created by Dustin Voss in January 2003. +Updated and maintained by Deusty LLC and the Apple development community. + + ## ObjectMapper The MIT License (MIT) diff --git a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-acknowledgements.plist b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-acknowledgements.plist index 9cf4238..3598cf8 100644 --- a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-acknowledgements.plist @@ -140,6 +140,18 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND Type PSGroupSpecifier + + FooterText + This project is dual licensed under the Eclipse Public License 1.0 and the +Eclipse Distribution License 1.0 as described in the epl-v10 and edl-v10 files. + + License + MIT + Title + CocoaMQTT + Type + PSGroupSpecifier + FooterText MIT License @@ -1058,6 +1070,22 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + Public Domain License + +The MqttCocoaAsyncSocket project is in the public domain. + +The original TCP version (AsyncSocket) was created by Dustin Voss in January 2003. +Updated and maintained by Deusty LLC and the Apple development community. + + License + public domain + Title + MqttCocoaAsyncSocket + Type + PSGroupSpecifier + FooterText The MIT License (MIT) diff --git a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Debug-input-files.xcfilelist index 7ce16de..f032cb2 100644 --- a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Debug-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Debug-input-files.xcfilelist @@ -1,6 +1,7 @@ ${PODS_ROOT}/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks.sh ${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework ${BUILT_PRODUCTS_DIR}/CocoaLumberjack/CocoaLumberjack.framework +${BUILT_PRODUCTS_DIR}/CocoaMQTT/CocoaMQTT.framework ${BUILT_PRODUCTS_DIR}/Differentiator/Differentiator.framework ${BUILT_PRODUCTS_DIR}/HXPHPicker/HXPHPicker.framework ${BUILT_PRODUCTS_DIR}/IQKeyboardCore/IQKeyboardCore.framework @@ -19,6 +20,7 @@ ${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework ${BUILT_PRODUCTS_DIR}/MarqueeLabel/MarqueeLabel.framework ${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework ${BUILT_PRODUCTS_DIR}/Moya/Moya.framework +${BUILT_PRODUCTS_DIR}/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.framework ${BUILT_PRODUCTS_DIR}/ObjectMapper/ObjectMapper.framework ${BUILT_PRODUCTS_DIR}/Popover/Popover.framework ${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework diff --git a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Debug-output-files.xcfilelist index 5cef435..488956d 100644 --- a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Debug-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Debug-output-files.xcfilelist @@ -1,5 +1,6 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CocoaLumberjack.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CocoaMQTT.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Differentiator.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/HXPHPicker.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardCore.framework @@ -18,6 +19,7 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MarqueeLabel.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Moya.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MqttCocoaAsyncSocket.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ObjectMapper.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Popover.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxCocoa.framework diff --git a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Release-input-files.xcfilelist index 7ce16de..f032cb2 100644 --- a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Release-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Release-input-files.xcfilelist @@ -1,6 +1,7 @@ ${PODS_ROOT}/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks.sh ${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework ${BUILT_PRODUCTS_DIR}/CocoaLumberjack/CocoaLumberjack.framework +${BUILT_PRODUCTS_DIR}/CocoaMQTT/CocoaMQTT.framework ${BUILT_PRODUCTS_DIR}/Differentiator/Differentiator.framework ${BUILT_PRODUCTS_DIR}/HXPHPicker/HXPHPicker.framework ${BUILT_PRODUCTS_DIR}/IQKeyboardCore/IQKeyboardCore.framework @@ -19,6 +20,7 @@ ${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework ${BUILT_PRODUCTS_DIR}/MarqueeLabel/MarqueeLabel.framework ${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework ${BUILT_PRODUCTS_DIR}/Moya/Moya.framework +${BUILT_PRODUCTS_DIR}/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.framework ${BUILT_PRODUCTS_DIR}/ObjectMapper/ObjectMapper.framework ${BUILT_PRODUCTS_DIR}/Popover/Popover.framework ${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework diff --git a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Release-output-files.xcfilelist index 5cef435..488956d 100644 --- a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Release-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks-Release-output-files.xcfilelist @@ -1,5 +1,6 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CocoaLumberjack.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CocoaMQTT.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Differentiator.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/HXPHPicker.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardCore.framework @@ -18,6 +19,7 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MarqueeLabel.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Moya.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MqttCocoaAsyncSocket.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ObjectMapper.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Popover.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxCocoa.framework diff --git a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks.sh b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks.sh index f1cd62f..26813bd 100755 --- a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks.sh +++ b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation-frameworks.sh @@ -178,6 +178,7 @@ code_sign_if_enabled() { if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" install_framework "${BUILT_PRODUCTS_DIR}/CocoaLumberjack/CocoaLumberjack.framework" + install_framework "${BUILT_PRODUCTS_DIR}/CocoaMQTT/CocoaMQTT.framework" install_framework "${BUILT_PRODUCTS_DIR}/Differentiator/Differentiator.framework" install_framework "${BUILT_PRODUCTS_DIR}/HXPHPicker/HXPHPicker.framework" install_framework "${BUILT_PRODUCTS_DIR}/IQKeyboardCore/IQKeyboardCore.framework" @@ -196,6 +197,7 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/MarqueeLabel/MarqueeLabel.framework" install_framework "${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework" install_framework "${BUILT_PRODUCTS_DIR}/Moya/Moya.framework" + install_framework "${BUILT_PRODUCTS_DIR}/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.framework" install_framework "${BUILT_PRODUCTS_DIR}/ObjectMapper/ObjectMapper.framework" install_framework "${BUILT_PRODUCTS_DIR}/Popover/Popover.framework" install_framework "${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework" @@ -221,6 +223,7 @@ fi if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" install_framework "${BUILT_PRODUCTS_DIR}/CocoaLumberjack/CocoaLumberjack.framework" + install_framework "${BUILT_PRODUCTS_DIR}/CocoaMQTT/CocoaMQTT.framework" install_framework "${BUILT_PRODUCTS_DIR}/Differentiator/Differentiator.framework" install_framework "${BUILT_PRODUCTS_DIR}/HXPHPicker/HXPHPicker.framework" install_framework "${BUILT_PRODUCTS_DIR}/IQKeyboardCore/IQKeyboardCore.framework" @@ -239,6 +242,7 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/MarqueeLabel/MarqueeLabel.framework" install_framework "${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework" install_framework "${BUILT_PRODUCTS_DIR}/Moya/Moya.framework" + install_framework "${BUILT_PRODUCTS_DIR}/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.framework" install_framework "${BUILT_PRODUCTS_DIR}/ObjectMapper/ObjectMapper.framework" install_framework "${BUILT_PRODUCTS_DIR}/Popover/Popover.framework" install_framework "${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework" diff --git a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation.debug.xcconfig b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation.debug.xcconfig index a583565..ec7235d 100644 --- a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation.debug.xcconfig +++ b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation.debug.xcconfig @@ -2,13 +2,13 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES ARCHS = $(ARCHS_STANDARD) CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack" "${PODS_CONFIGURATION_BUILD_DIR}/Differentiator" "${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper" "${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK" "${PODS_CONFIGURATION_BUILD_DIR}/Popover" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt" "${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/TagListView" "${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator" "${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/YYImage" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" "${PODS_ROOT}/AlipaySDK-iOS" "${PODS_ROOT}/OpenIMSDKCore/Framework" "${PODS_ROOT}/WechatOpenSDK-XCFramework" "${PODS_ROOT}/YYImage/Vendor" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AlipaySDK-iOS" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenIMSDKCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/WechatOpenSDK-XCFramework" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaMQTT" "${PODS_CONFIGURATION_BUILD_DIR}/Differentiator" "${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper" "${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK" "${PODS_CONFIGURATION_BUILD_DIR}/Popover" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt" "${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/TagListView" "${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator" "${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/YYImage" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" "${PODS_ROOT}/AlipaySDK-iOS" "${PODS_ROOT}/OpenIMSDKCore/Framework" "${PODS_ROOT}/WechatOpenSDK-XCFramework" "${PODS_ROOT}/YYImage/Vendor" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AlipaySDK-iOS" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenIMSDKCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/WechatOpenSDK-XCFramework" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack/CocoaLumberjack.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Differentiator/Differentiator.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker/HXPHPicker.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP/KingfisherWebP.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel/MarqueeLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper/ObjectMapper.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK/OpenIMSDK.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Popover/Popover.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources/RxDataSources.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt/RxSwiftExt.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView/SDCycleScrollView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode/SGQRCode.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate/SwiftDate.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper/SwiftKeychainWrapper.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults/SwiftyUserDefaults.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/TagListView/TagListView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator/URLNavigator.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser/YBImageBrowser.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/YYImage/YYImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp/libwebp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios/Lottie.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack/CocoaLumberjack.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaMQTT/CocoaMQTT.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Differentiator/Differentiator.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker/HXPHPicker.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP/KingfisherWebP.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel/MarqueeLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper/ObjectMapper.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK/OpenIMSDK.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Popover/Popover.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources/RxDataSources.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt/RxSwiftExt.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView/SDCycleScrollView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode/SGQRCode.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate/SwiftDate.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper/SwiftKeychainWrapper.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults/SwiftyUserDefaults.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/TagListView/TagListView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator/URLNavigator.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser/YBImageBrowser.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/YYImage/YYImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp/libwebp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios/Lottie.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"resolv" -l"sqlite3.0" -l"swiftCoreGraphics" -l"z" -framework "AVFoundation" -framework "Accelerate" -framework "AdSupport" -framework "Alamofire" -framework "AlipaySDK" -framework "AssetsLibrary" -framework "CFNetwork" -framework "CocoaLumberjack" -framework "Combine" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreMotion" -framework "CoreTelephony" -framework "CoreText" -framework "Differentiator" -framework "ExternalAccessory" -framework "Foundation" -framework "GLKit" -framework "HXPHPicker" -framework "IQKeyboardCore" -framework "IQKeyboardManagerSwift" -framework "IQKeyboardNotification" -framework "IQKeyboardReturnManager" -framework "IQKeyboardToolbar" -framework "IQKeyboardToolbarManager" -framework "IQTextInputViewNotification" -framework "IQTextView" -framework "ImageIO" -framework "Kingfisher" -framework "KingfisherWebP" -framework "Lottie" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "MarqueeLabel" -framework "Masonry" -framework "MobileCoreServices" -framework "Moya" -framework "ObjectMapper" -framework "OpenGLES" -framework "OpenIMCore" -framework "OpenIMSDK" -framework "Photos" -framework "PhotosUI" -framework "Popover" -framework "QuartzCore" -framework "RxCocoa" -framework "RxDataSources" -framework "RxRelay" -framework "RxSwift" -framework "RxSwiftExt" -framework "SDCycleScrollView" -framework "SDWebImage" -framework "SGQRCode" -framework "Security" -framework "SnapKit" -framework "SwiftDate" -framework "SwiftKeychainWrapper" -framework "SwiftyJSON" -framework "SwiftyUserDefaults" -framework "SystemConfiguration" -framework "TagListView" -framework "UIKit" -framework "URLNavigator" -framework "WebKit" -framework "WechatOpenSDK" -framework "YBImageBrowser" -framework "YYImage" -framework "libwebp" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "Network" -weak_framework "SwiftUI" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AMap3DMap" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapFoundation" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapLocation" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapSearch" "-F${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "-F${PODS_CONFIGURATION_BUILD_DIR}/AlipaySDK-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack" "-F${PODS_CONFIGURATION_BUILD_DIR}/Differentiator" "-F${PODS_CONFIGURATION_BUILD_DIR}/GTCommonSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/GYSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "-F${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "-F${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Moya" "-F${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper" "-F${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDKCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/Popover" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode" "-F${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults" "-F${PODS_CONFIGURATION_BUILD_DIR}/TagListView" "-F${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator" "-F${PODS_CONFIGURATION_BUILD_DIR}/WechatOpenSDK-XCFramework" "-F${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser" "-F${PODS_CONFIGURATION_BUILD_DIR}/YYImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/ZXSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "-F${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"resolv" -l"sqlite3.0" -l"swiftCoreGraphics" -l"z" -framework "AVFoundation" -framework "Accelerate" -framework "AdSupport" -framework "Alamofire" -framework "AlipaySDK" -framework "AssetsLibrary" -framework "CFNetwork" -framework "CocoaLumberjack" -framework "CocoaMQTT" -framework "Combine" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreMotion" -framework "CoreTelephony" -framework "CoreText" -framework "Differentiator" -framework "ExternalAccessory" -framework "Foundation" -framework "GLKit" -framework "HXPHPicker" -framework "IQKeyboardCore" -framework "IQKeyboardManagerSwift" -framework "IQKeyboardNotification" -framework "IQKeyboardReturnManager" -framework "IQKeyboardToolbar" -framework "IQKeyboardToolbarManager" -framework "IQTextInputViewNotification" -framework "IQTextView" -framework "ImageIO" -framework "Kingfisher" -framework "KingfisherWebP" -framework "Lottie" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "MarqueeLabel" -framework "Masonry" -framework "MobileCoreServices" -framework "Moya" -framework "MqttCocoaAsyncSocket" -framework "ObjectMapper" -framework "OpenGLES" -framework "OpenIMCore" -framework "OpenIMSDK" -framework "Photos" -framework "PhotosUI" -framework "Popover" -framework "QuartzCore" -framework "RxCocoa" -framework "RxDataSources" -framework "RxRelay" -framework "RxSwift" -framework "RxSwiftExt" -framework "SDCycleScrollView" -framework "SDWebImage" -framework "SGQRCode" -framework "Security" -framework "SnapKit" -framework "SwiftDate" -framework "SwiftKeychainWrapper" -framework "SwiftyJSON" -framework "SwiftyUserDefaults" -framework "SystemConfiguration" -framework "TagListView" -framework "UIKit" -framework "URLNavigator" -framework "WebKit" -framework "WechatOpenSDK" -framework "YBImageBrowser" -framework "YYImage" -framework "libwebp" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "Network" -weak_framework "SwiftUI" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AMap3DMap" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapFoundation" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapLocation" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapSearch" "-F${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "-F${PODS_CONFIGURATION_BUILD_DIR}/AlipaySDK-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack" "-F${PODS_CONFIGURATION_BUILD_DIR}/CocoaMQTT" "-F${PODS_CONFIGURATION_BUILD_DIR}/Differentiator" "-F${PODS_CONFIGURATION_BUILD_DIR}/GTCommonSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/GYSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "-F${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "-F${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Moya" "-F${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket" "-F${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper" "-F${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDKCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/Popover" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode" "-F${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults" "-F${PODS_CONFIGURATION_BUILD_DIR}/TagListView" "-F${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator" "-F${PODS_CONFIGURATION_BUILD_DIR}/WechatOpenSDK-XCFramework" "-F${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser" "-F${PODS_CONFIGURATION_BUILD_DIR}/YYImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/ZXSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "-F${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation.release.xcconfig b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation.release.xcconfig index a583565..ec7235d 100644 --- a/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation.release.xcconfig +++ b/Pods/Target Support Files/Pods-QuickLocation/Pods-QuickLocation.release.xcconfig @@ -2,13 +2,13 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES ARCHS = $(ARCHS_STANDARD) CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack" "${PODS_CONFIGURATION_BUILD_DIR}/Differentiator" "${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper" "${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK" "${PODS_CONFIGURATION_BUILD_DIR}/Popover" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt" "${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/TagListView" "${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator" "${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/YYImage" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" "${PODS_ROOT}/AlipaySDK-iOS" "${PODS_ROOT}/OpenIMSDKCore/Framework" "${PODS_ROOT}/WechatOpenSDK-XCFramework" "${PODS_ROOT}/YYImage/Vendor" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AlipaySDK-iOS" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenIMSDKCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/WechatOpenSDK-XCFramework" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaMQTT" "${PODS_CONFIGURATION_BUILD_DIR}/Differentiator" "${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper" "${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK" "${PODS_CONFIGURATION_BUILD_DIR}/Popover" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt" "${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/TagListView" "${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator" "${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/YYImage" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" "${PODS_ROOT}/AlipaySDK-iOS" "${PODS_ROOT}/OpenIMSDKCore/Framework" "${PODS_ROOT}/WechatOpenSDK-XCFramework" "${PODS_ROOT}/YYImage/Vendor" "${PODS_XCFRAMEWORKS_BUILD_DIR}/AlipaySDK-iOS" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenIMSDKCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/WechatOpenSDK-XCFramework" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack/CocoaLumberjack.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Differentiator/Differentiator.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker/HXPHPicker.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP/KingfisherWebP.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel/MarqueeLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper/ObjectMapper.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK/OpenIMSDK.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Popover/Popover.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources/RxDataSources.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt/RxSwiftExt.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView/SDCycleScrollView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode/SGQRCode.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate/SwiftDate.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper/SwiftKeychainWrapper.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults/SwiftyUserDefaults.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/TagListView/TagListView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator/URLNavigator.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser/YBImageBrowser.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/YYImage/YYImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp/libwebp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios/Lottie.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack/CocoaLumberjack.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaMQTT/CocoaMQTT.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Differentiator/Differentiator.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker/HXPHPicker.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP/KingfisherWebP.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel/MarqueeLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket/MqttCocoaAsyncSocket.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper/ObjectMapper.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK/OpenIMSDK.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Popover/Popover.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources/RxDataSources.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt/RxSwiftExt.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView/SDCycleScrollView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode/SGQRCode.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate/SwiftDate.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper/SwiftKeychainWrapper.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults/SwiftyUserDefaults.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/TagListView/TagListView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator/URLNavigator.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser/YBImageBrowser.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/YYImage/YYImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp/libwebp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios/Lottie.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"resolv" -l"sqlite3.0" -l"swiftCoreGraphics" -l"z" -framework "AVFoundation" -framework "Accelerate" -framework "AdSupport" -framework "Alamofire" -framework "AlipaySDK" -framework "AssetsLibrary" -framework "CFNetwork" -framework "CocoaLumberjack" -framework "Combine" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreMotion" -framework "CoreTelephony" -framework "CoreText" -framework "Differentiator" -framework "ExternalAccessory" -framework "Foundation" -framework "GLKit" -framework "HXPHPicker" -framework "IQKeyboardCore" -framework "IQKeyboardManagerSwift" -framework "IQKeyboardNotification" -framework "IQKeyboardReturnManager" -framework "IQKeyboardToolbar" -framework "IQKeyboardToolbarManager" -framework "IQTextInputViewNotification" -framework "IQTextView" -framework "ImageIO" -framework "Kingfisher" -framework "KingfisherWebP" -framework "Lottie" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "MarqueeLabel" -framework "Masonry" -framework "MobileCoreServices" -framework "Moya" -framework "ObjectMapper" -framework "OpenGLES" -framework "OpenIMCore" -framework "OpenIMSDK" -framework "Photos" -framework "PhotosUI" -framework "Popover" -framework "QuartzCore" -framework "RxCocoa" -framework "RxDataSources" -framework "RxRelay" -framework "RxSwift" -framework "RxSwiftExt" -framework "SDCycleScrollView" -framework "SDWebImage" -framework "SGQRCode" -framework "Security" -framework "SnapKit" -framework "SwiftDate" -framework "SwiftKeychainWrapper" -framework "SwiftyJSON" -framework "SwiftyUserDefaults" -framework "SystemConfiguration" -framework "TagListView" -framework "UIKit" -framework "URLNavigator" -framework "WebKit" -framework "WechatOpenSDK" -framework "YBImageBrowser" -framework "YYImage" -framework "libwebp" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "Network" -weak_framework "SwiftUI" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AMap3DMap" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapFoundation" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapLocation" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapSearch" "-F${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "-F${PODS_CONFIGURATION_BUILD_DIR}/AlipaySDK-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack" "-F${PODS_CONFIGURATION_BUILD_DIR}/Differentiator" "-F${PODS_CONFIGURATION_BUILD_DIR}/GTCommonSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/GYSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "-F${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "-F${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Moya" "-F${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper" "-F${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDKCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/Popover" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode" "-F${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults" "-F${PODS_CONFIGURATION_BUILD_DIR}/TagListView" "-F${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator" "-F${PODS_CONFIGURATION_BUILD_DIR}/WechatOpenSDK-XCFramework" "-F${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser" "-F${PODS_CONFIGURATION_BUILD_DIR}/YYImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/ZXSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "-F${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"resolv" -l"sqlite3.0" -l"swiftCoreGraphics" -l"z" -framework "AVFoundation" -framework "Accelerate" -framework "AdSupport" -framework "Alamofire" -framework "AlipaySDK" -framework "AssetsLibrary" -framework "CFNetwork" -framework "CocoaLumberjack" -framework "CocoaMQTT" -framework "Combine" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreMotion" -framework "CoreTelephony" -framework "CoreText" -framework "Differentiator" -framework "ExternalAccessory" -framework "Foundation" -framework "GLKit" -framework "HXPHPicker" -framework "IQKeyboardCore" -framework "IQKeyboardManagerSwift" -framework "IQKeyboardNotification" -framework "IQKeyboardReturnManager" -framework "IQKeyboardToolbar" -framework "IQKeyboardToolbarManager" -framework "IQTextInputViewNotification" -framework "IQTextView" -framework "ImageIO" -framework "Kingfisher" -framework "KingfisherWebP" -framework "Lottie" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "MarqueeLabel" -framework "Masonry" -framework "MobileCoreServices" -framework "Moya" -framework "MqttCocoaAsyncSocket" -framework "ObjectMapper" -framework "OpenGLES" -framework "OpenIMCore" -framework "OpenIMSDK" -framework "Photos" -framework "PhotosUI" -framework "Popover" -framework "QuartzCore" -framework "RxCocoa" -framework "RxDataSources" -framework "RxRelay" -framework "RxSwift" -framework "RxSwiftExt" -framework "SDCycleScrollView" -framework "SDWebImage" -framework "SGQRCode" -framework "Security" -framework "SnapKit" -framework "SwiftDate" -framework "SwiftKeychainWrapper" -framework "SwiftyJSON" -framework "SwiftyUserDefaults" -framework "SystemConfiguration" -framework "TagListView" -framework "UIKit" -framework "URLNavigator" -framework "WebKit" -framework "WechatOpenSDK" -framework "YBImageBrowser" -framework "YYImage" -framework "libwebp" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "Network" -weak_framework "SwiftUI" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AMap3DMap" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapFoundation" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapLocation" "-F${PODS_CONFIGURATION_BUILD_DIR}/AMapSearch" "-F${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "-F${PODS_CONFIGURATION_BUILD_DIR}/AlipaySDK-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CocoaLumberjack" "-F${PODS_CONFIGURATION_BUILD_DIR}/CocoaMQTT" "-F${PODS_CONFIGURATION_BUILD_DIR}/Differentiator" "-F${PODS_CONFIGURATION_BUILD_DIR}/GTCommonSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/GYSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/HXPHPicker" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "-F${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "-F${PODS_CONFIGURATION_BUILD_DIR}/KingfisherWebP" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Moya" "-F${PODS_CONFIGURATION_BUILD_DIR}/MqttCocoaAsyncSocket" "-F${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper" "-F${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/OpenIMSDKCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/Popover" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxDataSources" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/RxSwiftExt" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDCycleScrollView" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/SGQRCode" "-F${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftKeychainWrapper" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftyUserDefaults" "-F${PODS_CONFIGURATION_BUILD_DIR}/TagListView" "-F${PODS_CONFIGURATION_BUILD_DIR}/URLNavigator" "-F${PODS_CONFIGURATION_BUILD_DIR}/WechatOpenSDK-XCFramework" "-F${PODS_CONFIGURATION_BUILD_DIR}/YBImageBrowser" "-F${PODS_CONFIGURATION_BUILD_DIR}/YYImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/ZXSDK" "-F${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "-F${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/QuickLocation.xcodeproj/project.pbxproj b/QuickLocation.xcodeproj/project.pbxproj index 7754c20..32ae989 100644 --- a/QuickLocation.xcodeproj/project.pbxproj +++ b/QuickLocation.xcodeproj/project.pbxproj @@ -188,6 +188,9 @@ 30C4C01D2FDBF557009215C1 /* RemoveMemberViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30C4C01C2FDBF557009215C1 /* RemoveMemberViewModel.swift */; }; 30C4C0202FDC0EC5009215C1 /* GroupInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30C4C01F2FDC0EC5009215C1 /* GroupInfoView.swift */; }; 30C4C0222FDC0ED3009215C1 /* GroupInfoVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30C4C0212FDC0ED3009215C1 /* GroupInfoVC.swift */; }; + 30D87CDB2FDFA9EE00E958FD /* MQTTService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D87CDA2FDFA9EE00E958FD /* MQTTService.swift */; }; + 30D87CDD2FDFF07500E958FD /* InteractionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D87CDC2FDFF07500E958FD /* InteractionView.swift */; }; + 30D87CDF2FDFF1A100E958FD /* QuickMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D87CDE2FDFF1A100E958FD /* QuickMessageView.swift */; }; 30DC18522FD009CD0041DCD1 /* VipExpenseModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30DC18512FD009CD0041DCD1 /* VipExpenseModel.swift */; }; 30DC18542FD00C4A0041DCD1 /* VipRechargeVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30DC18532FD00C4A0041DCD1 /* VipRechargeVM.swift */; }; 30DC185A2FD11E7A0041DCD1 /* WebOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30DC18562FD11E7A0041DCD1 /* WebOperations.swift */; }; @@ -420,6 +423,9 @@ 30C4C01C2FDBF557009215C1 /* RemoveMemberViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoveMemberViewModel.swift; sourceTree = ""; }; 30C4C01F2FDC0EC5009215C1 /* GroupInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GroupInfoView.swift; sourceTree = ""; }; 30C4C0212FDC0ED3009215C1 /* GroupInfoVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GroupInfoVC.swift; sourceTree = ""; }; + 30D87CDA2FDFA9EE00E958FD /* MQTTService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MQTTService.swift; sourceTree = ""; }; + 30D87CDC2FDFF07500E958FD /* InteractionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InteractionView.swift; sourceTree = ""; }; + 30D87CDE2FDFF1A100E958FD /* QuickMessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QuickMessageView.swift; sourceTree = ""; }; 30DC18512FD009CD0041DCD1 /* VipExpenseModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VipExpenseModel.swift; sourceTree = ""; }; 30DC18532FD00C4A0041DCD1 /* VipRechargeVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VipRechargeVM.swift; sourceTree = ""; }; 30DC18552FD11E7A0041DCD1 /* NavigationTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationTitleView.swift; sourceTree = ""; }; @@ -472,6 +478,11 @@ path = lotties; sourceTree = ""; }; + 30D87CEF2FDFF52100E958FD /* TTGTagCollectionView */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = TTGTagCollectionView; + sourceTree = ""; + }; /* End PBXFileSystemSynchronizedRootGroup section */ /* Begin PBXFrameworksBuildPhase section */ @@ -765,6 +776,7 @@ 305A75282FCA8C7000227D26 /* Notification */, 305A752A2FCA8C7000227D26 /* Theme */, 305A752C2FCA8C7000227D26 /* URL */, + 30D87CD52FDF9F1900E958FD /* MQTT */, ); path = Manager; sourceTree = ""; @@ -852,6 +864,8 @@ 305A76292FCA8C7000227D26 /* HomeViewController.swift */, 305A798B2FCAB99300227D26 /* HomeViewModel.swift */, 30A7A9102FCAEE3D00105780 /* GroupListPopView.swift */, + 30D87CDE2FDFF1A100E958FD /* QuickMessageView.swift */, + 30D87CDC2FDFF07500E958FD /* InteractionView.swift */, ); path = Home; sourceTree = ""; @@ -1032,6 +1046,7 @@ 305A767D2FCA8C7000227D26 /* UIKit */ = { isa = PBXGroup; children = ( + 30D87CEF2FDFF52100E958FD /* TTGTagCollectionView */, 305A76482FCA8C7000227D26 /* Alert */, 305A76502FCA8C7000227D26 /* EmptyDataSet */, 305A76542FCA8C7000227D26 /* HUD */, @@ -1174,6 +1189,14 @@ path = GroupInfo; sourceTree = ""; }; + 30D87CD52FDF9F1900E958FD /* MQTT */ = { + isa = PBXGroup; + children = ( + 30D87CDA2FDFA9EE00E958FD /* MQTTService.swift */, + ); + path = MQTT; + sourceTree = ""; + }; 30DC18582FD11E7A0041DCD1 /* Controller */ = { isa = PBXGroup; children = ( @@ -1313,6 +1336,7 @@ ); fileSystemSynchronizedGroups = ( 3070777D2FD2A214004C37CC /* lotties */, + 30D87CEF2FDFF52100E958FD /* TTGTagCollectionView */, ); name = QuickLocation; productName = QuickLocation; @@ -1457,6 +1481,7 @@ 30C4C0222FDC0ED3009215C1 /* GroupInfoVC.swift in Sources */, 305A76902FCA8C7000227D26 /* UserAPI.swift in Sources */, 30EFF3DE2FDA982C00EB35D4 /* EmergencyContactAddVC.swift in Sources */, + 30D87CDF2FDFF1A100E958FD /* QuickMessageView.swift in Sources */, 305A76912FCA8C7000227D26 /* Constant.swift in Sources */, 305A76922FCA8C7000227D26 /* LogUtils.swift in Sources */, 305A76932FCA8C7000227D26 /* AddImageCell.swift in Sources */, @@ -1620,6 +1645,7 @@ 305A76FB2FCA8C7000227D26 /* EmptyDataSet.swift in Sources */, 305A76FC2FCA8C7000227D26 /* EmptyDataSetDelegate.swift in Sources */, 305A76FD2FCA8C7000227D26 /* EmptyDataSetSource.swift in Sources */, + 30D87CDB2FDFA9EE00E958FD /* MQTTService.swift in Sources */, 30EFF3CD2FDA668A00EB35D4 /* MyProfileView.swift in Sources */, 305A76FE2FCA8C7000227D26 /* EmptyDataSetView.swift in Sources */, 30C4C0192FDBF094009215C1 /* RemoveMemberVC.swift in Sources */, @@ -1630,6 +1656,7 @@ 305A77032FCA8C7000227D26 /* ProgressHUD.swift in Sources */, 305A77042FCA8C7000227D26 /* MXParallaxHeader.m in Sources */, 305A77052FCA8C7000227D26 /* MXScrollView.m in Sources */, + 30D87CDD2FDFF07500E958FD /* InteractionView.swift in Sources */, 30BAB8652FCD718A00C33B5C /* JoinGroupView.swift in Sources */, 305A77062FCA8C7000227D26 /* MXScrollViewController.m in Sources */, 305A77072FCA8C7000227D26 /* Helper.swift in Sources */, diff --git a/QuickLocation.xcworkspace/xcuserdata/yanghong.xcuserdatad/UserInterfaceState.xcuserstate b/QuickLocation.xcworkspace/xcuserdata/yanghong.xcuserdatad/UserInterfaceState.xcuserstate index f3be8e9..5638b49 100644 Binary files a/QuickLocation.xcworkspace/xcuserdata/yanghong.xcuserdatad/UserInterfaceState.xcuserstate and b/QuickLocation.xcworkspace/xcuserdata/yanghong.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/QuickLocation/Assets.xcassets/Common/x.imageset/Contents.json b/QuickLocation/Assets.xcassets/Common/x.imageset/Contents.json new file mode 100644 index 0000000..fc69d67 --- /dev/null +++ b/QuickLocation/Assets.xcassets/Common/x.imageset/Contents.json @@ -0,0 +1,22 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Group_1572@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Group_1572@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/QuickLocation/Assets.xcassets/Common/x.imageset/Group_1572@2x.png b/QuickLocation/Assets.xcassets/Common/x.imageset/Group_1572@2x.png new file mode 100644 index 0000000..2dcbd58 Binary files /dev/null and b/QuickLocation/Assets.xcassets/Common/x.imageset/Group_1572@2x.png differ diff --git a/QuickLocation/Assets.xcassets/Common/x.imageset/Group_1572@3x.png b/QuickLocation/Assets.xcassets/Common/x.imageset/Group_1572@3x.png new file mode 100644 index 0000000..ede26f8 Binary files /dev/null and b/QuickLocation/Assets.xcassets/Common/x.imageset/Group_1572@3x.png differ diff --git a/QuickLocation/Assets.xcassets/Home/interaction_header.imageset/Contents.json b/QuickLocation/Assets.xcassets/Home/interaction_header.imageset/Contents.json new file mode 100644 index 0000000..3fde4c8 --- /dev/null +++ b/QuickLocation/Assets.xcassets/Home/interaction_header.imageset/Contents.json @@ -0,0 +1,22 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "interaction_header@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "interaction_header@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/QuickLocation/Assets.xcassets/Home/interaction_header.imageset/interaction_header@2x.png b/QuickLocation/Assets.xcassets/Home/interaction_header.imageset/interaction_header@2x.png new file mode 100644 index 0000000..5abb51b Binary files /dev/null and b/QuickLocation/Assets.xcassets/Home/interaction_header.imageset/interaction_header@2x.png differ diff --git a/QuickLocation/Assets.xcassets/Home/interaction_header.imageset/interaction_header@3x.png b/QuickLocation/Assets.xcassets/Home/interaction_header.imageset/interaction_header@3x.png new file mode 100644 index 0000000..7630460 Binary files /dev/null and b/QuickLocation/Assets.xcassets/Home/interaction_header.imageset/interaction_header@3x.png differ diff --git a/QuickLocation/Assets.xcassets/Home/navigate.imageset/Contents.json b/QuickLocation/Assets.xcassets/Home/navigate.imageset/Contents.json new file mode 100644 index 0000000..44bc01f --- /dev/null +++ b/QuickLocation/Assets.xcassets/Home/navigate.imageset/Contents.json @@ -0,0 +1,22 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Group_1951@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Group_1951@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/QuickLocation/Assets.xcassets/Home/navigate.imageset/Group_1951@2x.png b/QuickLocation/Assets.xcassets/Home/navigate.imageset/Group_1951@2x.png new file mode 100644 index 0000000..82b74e1 Binary files /dev/null and b/QuickLocation/Assets.xcassets/Home/navigate.imageset/Group_1951@2x.png differ diff --git a/QuickLocation/Assets.xcassets/Home/navigate.imageset/Group_1951@3x.png b/QuickLocation/Assets.xcassets/Home/navigate.imageset/Group_1951@3x.png new file mode 100644 index 0000000..8d48948 Binary files /dev/null and b/QuickLocation/Assets.xcassets/Home/navigate.imageset/Group_1951@3x.png differ diff --git a/QuickLocation/Assets.xcassets/Home/share.imageset/Contents.json b/QuickLocation/Assets.xcassets/Home/share.imageset/Contents.json new file mode 100644 index 0000000..f5da3ea --- /dev/null +++ b/QuickLocation/Assets.xcassets/Home/share.imageset/Contents.json @@ -0,0 +1,22 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Group_1947@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Group_1947@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/QuickLocation/Assets.xcassets/Home/share.imageset/Group_1947@2x.png b/QuickLocation/Assets.xcassets/Home/share.imageset/Group_1947@2x.png new file mode 100644 index 0000000..c5b276a Binary files /dev/null and b/QuickLocation/Assets.xcassets/Home/share.imageset/Group_1947@2x.png differ diff --git a/QuickLocation/Assets.xcassets/Home/share.imageset/Group_1947@3x.png b/QuickLocation/Assets.xcassets/Home/share.imageset/Group_1947@3x.png new file mode 100644 index 0000000..3b159a4 Binary files /dev/null and b/QuickLocation/Assets.xcassets/Home/share.imageset/Group_1947@3x.png differ diff --git a/QuickLocation/Main/Tabbar/MainTabBarController.swift b/QuickLocation/Main/Tabbar/MainTabBarController.swift index a36109c..43f684f 100644 --- a/QuickLocation/Main/Tabbar/MainTabBarController.swift +++ b/QuickLocation/Main/Tabbar/MainTabBarController.swift @@ -79,6 +79,11 @@ final class MainTabBarController: UITabBarController { guard let nav = selectedViewController as? UINavigationController else { return } customTabBar.isHidden = nav.viewControllers.count > 1 } + + /// 强制显示/隐藏 tabBar(供底部面板使用) + func setTabBarHidden(_ hidden: Bool) { + customTabBar.isHidden = hidden + } } // MARK: - QuickLocationTabBarDelegate diff --git a/QuickLocation/Manager/MQTT/MQTTService.swift b/QuickLocation/Manager/MQTT/MQTTService.swift new file mode 100644 index 0000000..72bd7f0 --- /dev/null +++ b/QuickLocation/Manager/MQTT/MQTTService.swift @@ -0,0 +1,257 @@ +// +// MQTTService.swift +// QuickLocation +// +// Created by 八条 on 2026/6/12. +// + +import Foundation +import CocoaMQTT +import UIKit +import _LocationEssentials + +// MARK: - MQTT 模型 + +/// 位置上报类型 +enum MqttType: String, Codable { + case track = "track" // 追踪(获取)和更新用户状态 + case disconnect = "disconnect" + case message = "message" + case join = "join" // 加入群 + case leave = "leave" // 离开群 + case dismiss = "dismiss" // 解散群 + case kick = "kick" // 踢人 + case signIn = "signin" // 签到 + case sos = "sos" // 求助 + case needTrack = "needtrack" // 追踪上报 + case emote = "emote" // 接收表情 +} + +/// 单点位置 +struct Points: Codable { + let lat: Double + let lon: Double + let addr: String + let time: Int64 // 毫秒时间戳 + let speed: Double + let bearing: Double + let altitude: Double + let accuracy: Double +} + +/// 位置上报数据(发送) +struct MqttLocation: Codable { + let battery: String + let points: [Points] +} + +/// MQTT 收到的位置消息(接收解析用) +struct MqttIncomingMessage: Decodable { + let type: String? + let data: MqttIncomingData? + let extra: String? +} + +struct MqttIncomingData: Decodable { + let points: [Points]? + let battery: String? +} + +// MARK: - MQTTService + +/// MQTT 5.0 服务,管理连接、订阅和消息收发 +final class MQTTService: NSObject { + + static let shared = MQTTService() + + private var mqtt: CocoaMQTT5? + private var isConnected = false + + // MARK: - 连接状态回调 + var onConnected: (() -> Void)? + var onDisconnected: (() -> Void)? + + /// 全局接收回调(所有未匹配 topicCallback 的消息) + var onMessageReceived: ((CocoaMQTT5Message, UInt16, MqttPublishProperties) -> Void)? + + /// 按 topic 订阅的回调(优先匹配) + private var topicCallbacks: [String: (CocoaMQTT5Message) -> Void] = [:] + + // MARK: - 配置 + private var host: String { "emqx.batiao8.com" } + private var port: UInt16 { 1883 } + /// 当前 clientID,切换用户时可更新后重连 + private(set) var clientID: String = "" + private var userName = "batiao" + private var password = "Batiao12B" + private var topic = "smartdrive/" + + override private init() {} + + // MARK: - 连接 + func connect() { + guard !isConnected else { return } + + if clientID.isEmpty { + clientID = "smartdrive_\(AppContextManager.shared.userId)" + } + let mqtt = CocoaMQTT5(clientID: clientID, host: host, port: port) + mqtt.username = userName + mqtt.password = password + mqtt.keepAlive = 60 + mqtt.autoReconnect = true + mqtt.autoReconnectTimeInterval = 5 + mqtt.delegate = self + mqtt.logLevel = .warning + + self.mqtt = mqtt + _ = mqtt.connect() + } + + // MARK: - 断开 + func disconnect() { + mqtt?.disconnect() + isConnected = false + } + + // MARK: - 切换用户 + /// 更新 clientID 并重连(切换用户后调用) + func updateClientID(_ newID: String) { + clientID = newID + disconnect() + connect() + } + + // MARK: - 订阅主题 + /// - Parameters: + /// - topic: 主题 + /// - qos: 服务质量 + /// - callback: 可选,该 topic 的专用回调,收到消息时优先于此回调 + func subscribe(topic: String, qos: CocoaMQTTQoS = .qos1, callback: ((CocoaMQTT5Message) -> Void)? = nil) { + let subscription = MqttSubscription(topic: topic, qos: qos) + mqtt?.subscribe([subscription]) + if let cb = callback { + topicCallbacks[topic] = cb + } + } + + // MARK: - 取消订阅 + func unsubscribe(topic: String) { + mqtt?.unsubscribe(topic) + topicCallbacks.removeValue(forKey: topic) + } + + /// 订阅指定圈子的所有成员位置 topic: smartdrive/ + func subscribeGroupMembers(_ memberIds: [String]) { + for id in memberIds { + subscribe(topic: "\(topic)\(id)") + } + } + + /// 取消订阅上一批成员 + func unsubscribeGroupMembers(_ memberIds: [String]) { + for id in memberIds { + mqtt?.unsubscribe("\(topic)\(id)") + } + } + + // MARK: - 发布消息 + @discardableResult + func publish(topic: String, message: String, qos: CocoaMQTTQoS = .qos1) -> Int { + let properties = MqttPublishProperties() + return mqtt?.publish(topic, withString: message, qos: qos, DUP: false, retained: false, properties: properties) ?? -1 + } + + @discardableResult + func publish(topic: String, data: Data, qos: CocoaMQTTQoS = .qos1) -> Int { + let properties = MqttPublishProperties() + let message = CocoaMQTT5Message(topic: topic, payload: [UInt8](data)) + return mqtt?.publish(message, DUP: false, retained: false, properties: properties) ?? -1 + } + + // MARK: - 位置上报 + /// 构建并上报位置数据(格式与 Android 一致) + func reportLocation(lat: Double, lon: Double, addr: String, + speed: CLLocationSpeed, bearing: CLLocationDirection, + altitude: CLLocationDistance, accuracy: CLLocationAccuracy) { + let battery = UIDevice.current.batteryLevel > 0 + ? Int(UIDevice.current.batteryLevel * 100) + : 0 + + let point = Points( + lat: lat, lon: lon, addr: addr, + time: Int64(Date().timeIntervalSince1970 * 1000), + speed: speed, bearing: bearing, + altitude: altitude, accuracy: accuracy + ) + let location = MqttLocation(battery: battery.string, points: [point]) + + guard let jsonData = try? JSONEncoder().encode(location), + let dataDict = try? JSONSerialization.jsonObject(with: jsonData) as? [String: Any] + else { return } + + // 外层包装,data 是 JSON 对象而非字符串 + let payload: [String: Any] = [ + "type": MqttType.track.rawValue, + "extra": "", + "data": dataDict + ] + + publish(topic: "\(topic)\(AppContextManager.shared.userId)", message: payload.toJsonString()) + } +} + +// MARK: - CocoaMQTT5Delegate +extension MQTTService: CocoaMQTT5Delegate { + + func mqtt5(_ mqtt5: CocoaMQTT5, didConnectAck ack: CocoaMQTTCONNACKReasonCode, connAckData: MqttDecodeConnAck?) { + isConnected = true + print("MQTT5 connected: \(ack)") + onConnected?() + } + + func mqtt5(_ mqtt5: CocoaMQTT5, didPublishMessage message: CocoaMQTT5Message, id: UInt16) { + print("MQTT5 published: \(message.topic)") + } + + func mqtt5(_ mqtt5: CocoaMQTT5, didPublishAck id: UInt16, pubAckData: MqttDecodePubAck?) { + print("MQTT5 publish ack: \(id)") + } + + func mqtt5(_ mqtt5: CocoaMQTT5, didPublishRec id: UInt16, pubRecData: MqttDecodePubRec?) {} + + func mqtt5(_ mqtt5: CocoaMQTT5, didReceiveMessage message: CocoaMQTT5Message, id: UInt16, publishData: MqttDecodePublish?) { + // 优先 topic 专用回调 + if let cb = topicCallbacks[message.topic] { + cb(message) + return + } + // 没有专用回调时走全局回调 + if let payload = message.string { + print("MQTT5 received on \(message.topic): \(payload)") + } + onMessageReceived?(message, id, MqttPublishProperties()) + } + + func mqtt5(_ mqtt5: CocoaMQTT5, didSubscribeTopics success: NSDictionary, failed: [String], subAckData: MqttDecodeSubAck?) { + print("MQTT5 subscribe success: \(success), failed: \(failed)") + } + + func mqtt5(_ mqtt5: CocoaMQTT5, didUnsubscribeTopics topics: [String], unsubAckData: MqttDecodeUnsubAck?) { + print("MQTT5 unsubscribe: \(topics)") + } + + func mqtt5(_ mqtt5: CocoaMQTT5, didReceiveDisconnectReasonCode reasonCode: CocoaMQTTDISCONNECTReasonCode) {} + + func mqtt5(_ mqtt5: CocoaMQTT5, didReceiveAuthReasonCode reasonCode: CocoaMQTTAUTHReasonCode) {} + + func mqtt5DidPing(_ mqtt5: CocoaMQTT5) {} + + func mqtt5DidReceivePong(_ mqtt5: CocoaMQTT5) {} + + func mqtt5DidDisconnect(_ mqtt5: CocoaMQTT5, withError err: Error?) { + isConnected = false + print("MQTT5 disconnected: \(err?.localizedDescription ?? "")") + onDisconnected?() + } +} diff --git a/QuickLocation/Model/GroupModel.swift b/QuickLocation/Model/GroupModel.swift index 6d9f0be..6e79c05 100644 --- a/QuickLocation/Model/GroupModel.swift +++ b/QuickLocation/Model/GroupModel.swift @@ -185,6 +185,8 @@ struct GroupMemberModel: Mappable, Equatable { } /// 是否在线 var is_online: Bool = false + /// 最后在线文本(MQTT 计算) + var lastUpdateText: String = "" /// 设备电量 var battery: String = "" /// 最后在线时间 diff --git a/QuickLocation/QuickLocation-Bridging-Header.h b/QuickLocation/QuickLocation-Bridging-Header.h index 94ee369..c28fd20 100644 --- a/QuickLocation/QuickLocation-Bridging-Header.h +++ b/QuickLocation/QuickLocation-Bridging-Header.h @@ -17,6 +17,8 @@ #import "MXScrollView.h" #import "MXScrollViewController.h" +#import "TTGTextTagCollectionView.h" + // Pop #import "DLViewTransition.h" diff --git a/QuickLocation/Section/Group/GroupInfo/GroupInfoVC.swift b/QuickLocation/Section/Group/GroupInfo/GroupInfoVC.swift index b173f80..260485e 100644 --- a/QuickLocation/Section/Group/GroupInfo/GroupInfoVC.swift +++ b/QuickLocation/Section/Group/GroupInfo/GroupInfoVC.swift @@ -30,7 +30,7 @@ class GroupInfoVC: BaseViewController { rootView.groupIcon.image = model.groupIcon rootView.groupNameLab.text = model.name - + rootView.setupData(model) rootView.applyBtn.rx.tap.subscribe(onNext: { _ in self.requestOperateGroup() }).disposed(by: disposeBag) diff --git a/QuickLocation/Section/Group/GroupInfo/GroupInfoView.swift b/QuickLocation/Section/Group/GroupInfo/GroupInfoView.swift index b53b73b..aa908ed 100644 --- a/QuickLocation/Section/Group/GroupInfo/GroupInfoView.swift +++ b/QuickLocation/Section/Group/GroupInfo/GroupInfoView.swift @@ -8,11 +8,21 @@ import UIKit import RxSwift import RxCocoa +import TagListView class GroupInfoView: UIView { var disposeBag = DisposeBag() + func setupData(_ model: GroupInfoModel) { + groupDescLab.text = model.description.isEmpty ? "暂无描述" : model.description + tagListView.addTags(model.labels) + tagListView.tagViews.forEach { + $0.layer.cornerRadius = 4 + } + tagListView.invalidateIntrinsicContentSize() // 通知系统重新算高 + } + private func setupRx() { backBtn.rx.tap.subscribe(onNext: { _ in @@ -28,6 +38,8 @@ class GroupInfoView: UIView { addSubview(groupIcon) addSubview(groupNameLab) + addSubview(groupDescView) + addSubview(tagView) addSubview(applyBtn) navBgView.layoutChain @@ -59,6 +71,14 @@ class GroupInfoView: UIView { .topToBottomOfView(groupIcon, offset: 4) .centerX() + groupDescView.layoutChain + .topToBottomOfView(groupNameLab, offset: 30) + .edgesHorzontal(15) + + tagView.layoutChain + .topToBottomOfView(groupDescView, offset: 10) + .edgesHorzontal(15) + applyBtn.layoutChain .edgesHorzontal(30) .bottom(kSafeBottomMargin + 10) @@ -108,6 +128,78 @@ class GroupInfoView: UIView { return label }() + lazy var groupDescView: UIView = { + let view = UIView() + view.backgroundColor = UIColor(hexStr: "#F5FBFF") + view.cornerRadius = 10 + + let titleLab = UILabel() + titleLab.text = "圈子描述" + titleLab.textColor = ThemeManager.shared.color.titleAuxColor + titleLab.font = .systemFont(ofSize: 12, weight: .medium) + view.addSubview(titleLab) + titleLab.layoutChain + .left(15) + .width(50) + .top(22) + + view.addSubview(groupDescLab) + groupDescLab.layoutChain + .top(20) + .leftToRightOfView(titleLab, offset: 20) + .right(15) + .bottom(20) + + return view + }() + + lazy var groupDescLab: UILabel = { + let label = UILabel() + label.textColor = ThemeManager.shared.color.titleAuxColor + label.font = .systemFont(ofSize: 14, weight: .medium) + label.numberOfLines = 0 + return label + }() + + // 标签 + lazy var tagView: UIView = { + let view = UIView() + view.backgroundColor = UIColor(hexStr: "#F5FBFF") + view.cornerRadius = 10 + + let titleLab = UILabel() + titleLab.text = "圈子标签" + titleLab.textColor = ThemeManager.shared.color.titleAuxColor + titleLab.font = .systemFont(ofSize: 12, weight: .medium) + view.addSubview(titleLab) + titleLab.layoutChain + .left(15) + .width(50) + .top(20) + + view.addSubview(tagListView) + tagListView.layoutChain + .top(15) + .leftToRightOfView(titleLab, offset: 23) + .height(27, relation: .greaterThanOrEqual) + .right(15) + .bottom(20) + + return view + }() + + lazy var tagListView: TagListView = { + let view = TagListView() + view.textFont = UIFont.systemFont(ofSize: 12, weight: .medium) + view.textColor = UIColor(hexStr: "#16B3FF") + view.tagBackgroundColor = UIColor(hexStr: "#E3F6FF") + view.paddingX = 20 // 水平内边距 + view.paddingY = 6 // 垂直内边距 + view.alignment = .left // 对齐 + view.translatesAutoresizingMaskIntoConstraints = false + return view + }() + lazy var applyBtn: UIButton = { let btn = UIButton(type: .custom) btn.setTitle("申请加入", for: .normal) diff --git a/QuickLocation/Section/Home/GroupMemberView.swift b/QuickLocation/Section/Home/GroupMemberView.swift index 85a0dde..c33446e 100644 --- a/QuickLocation/Section/Home/GroupMemberView.swift +++ b/QuickLocation/Section/Home/GroupMemberView.swift @@ -135,6 +135,7 @@ class GroupMemberView: UIView { tableView.estimatedRowHeight = 76 tableView.bounces = false tableView.showsVerticalScrollIndicator = false + tableView.isScrollEnabled = false tableView.register(GroupMemberCell.self) return tableView }() @@ -165,12 +166,24 @@ class GroupMemberCell: UITableViewCell { nameLab.textColor = UIColor(hexStr: isCurrentUser ? "#16B3FF" : "#0F2846") // 电量 16是电池图标宽度,右边有电池造型需要减去 - batteryView.layoutChain.width(CGFloat((16 - 1) * (model.battery.int / 100))) + let batteryPercent = min(CGFloat(model.battery.int), 100) + batteryView.layoutChain.width(CGFloat(16 - 1) * batteryPercent / 100.0) batteryLab.text = "\(model.battery)%" + + // 在线状态 + if model.is_online { + onlineDotView.isHidden = false + onlineStatusLab.text = "在线" + onlineStatusLab.textColor = ThemeManager.shared.color.titleAuxColor + } else { + onlineDotView.isHidden = true + onlineStatusLab.text = model.lastUpdateText + onlineStatusLab.textColor = UIColor(hexStr: "#999999") + } } private func setupSubviews() { - contentView.addSubview(ownBgView) + contentView.addSubview(selectedBgView) contentView.addSubview(avaterImgView) contentView.addSubview(vipIcon) contentView.addSubview(batteryInfoView) @@ -188,7 +201,7 @@ class GroupMemberCell: UITableViewCell { } private func setupLayout() { - ownBgView.layoutChain + selectedBgView.layoutChain .edgesHorzontal(15) .edgesVertical() @@ -212,7 +225,7 @@ class GroupMemberCell: UITableViewCell { .width(16) .height(8) - batteryView.layoutChain + batteryView.layoutChain .topToView(batteryIcon) .leftToView(batteryIcon, offset: -1) .bottomToView(batteryIcon) @@ -256,7 +269,7 @@ class GroupMemberCell: UITableViewCell { .bottom(18) } - lazy var ownBgView: UIView = { + lazy var selectedBgView: UIView = { let view = UIView() view.backgroundColor = UIColor(hexStr: "#EAFBFF") view.cornerRadius = 10 @@ -387,32 +400,38 @@ class GroupMemberCell: UITableViewCell { let view = UIView() view.backgroundColor = .clear - let dot = UIView() - dot.backgroundColor = UIColor(hexStr: "#67EA76") - dot.cornerRadius = 4 + view.addSubview(onlineDotView) + view.addSubview(onlineStatusLab) - let label = UILabel() - label.textColor = ThemeManager.shared.color.titleAuxColor - label.font = .systemFont(ofSize: 10, weight: .medium) - label.text = "在线" - - view.addSubview(dot) - view.addSubview(label) - - dot.layoutChain + onlineDotView.layoutChain .left() .centerY() .height(8) .width(8) - label.layoutChain + onlineStatusLab.layoutChain .edgesVertical() - .leftToRightOfView(dot, offset: 3) + .leftToRightOfView(onlineDotView, offset: 3) .right() return view }() + lazy var onlineDotView: UIView = { + let view = UIView() + view.backgroundColor = UIColor(hexStr: "#67EA76") + view.cornerRadius = 4 + return view + }() + + lazy var onlineStatusLab: UILabel = { + let label = UILabel() + label.textColor = ThemeManager.shared.color.titleAuxColor + label.font = .systemFont(ofSize: 10, weight: .medium) + label.text = "在线" + return label + }() + override func awakeFromNib() { super.awakeFromNib() // Initialization code @@ -431,7 +450,6 @@ class GroupMemberCell: UITableViewCell { override func setSelected(_ selected: Bool, animated: Bool) { super.setSelected(selected, animated: animated) - - // Configure the view for the selected state + selectedBgView.isHidden = !selected } } diff --git a/QuickLocation/Section/Home/HomeView.swift b/QuickLocation/Section/Home/HomeView.swift index 7cfb81e..cfdff26 100644 --- a/QuickLocation/Section/Home/HomeView.swift +++ b/QuickLocation/Section/Home/HomeView.swift @@ -19,12 +19,18 @@ class HomeView: UIView { let groupMemberView = GroupMemberView(frame: .zero) + let quickMessageView = QuickMessageView(frame: CGRectMake(0, kScreenHeight, kScreenWidth, 93)) + + let interactionView = InteractionView(frame: CGRectMake(0, kScreenHeight, kScreenWidth, 384)) + // MARK: - groupMemberView 拖拽 private var groupMemberTopConstraint: NSLayoutConstraint? private var groupMemberUpLimit: CGFloat = 0 private var groupMemberDownLimit: CGFloat = 0 private var isGroupMemberLimitsSet = false private var panStartTop: CGFloat = 0 + /// 内嵌 tableView 是否可滑动(最大化时才可) + private var isSubCanScroll = false // MARK: - Map #if !targetEnvironment(simulator) @@ -58,9 +64,37 @@ class HomeView: UIView { }() #endif + /// 面板关闭回调 + var onDismissPanel: (() -> Void)? + // MARK: - Setup private func setupRx() { + quickMessageView.closeBtn.rx.tap + .subscribe(onNext: { [weak self] _ in + self?.dismissMemberPanel() + self?.onDismissPanel?() + }) + .disposed(by: disposeBag) + // tableView 到达顶部继续下拉时,改由 GroupMemberView 的 pan 手势接管 + groupMemberView.tableView.rx.contentOffset + .subscribe(onNext: { [weak self] offset in + guard let self = self else { return } + if self.isSubCanScroll { + if offset.y <= 0 { + self.isSubCanScroll = false + self.groupMemberView.tableView.setContentOffset(.zero, animated: false) + } + } else if offset.y != 0 { + self.groupMemberView.tableView.setContentOffset(.zero, animated: false) + } + }) + .disposed(by: disposeBag) + + // 收回互动view + quickMessageView.closeBtn.rx.tap.subscribe(onNext: { _ in + self.dismissMemberPanel() + }).disposed(by: disposeBag) } private func setupUI() { @@ -136,7 +170,7 @@ class HomeView: UIView { .left(23) .centerY() .width(40) - + bubbleView.layoutChain .top(12) .height(58) @@ -200,13 +234,35 @@ class HomeView: UIView { .topToBottomOfView(toolsView, offset: 10) .edgesHorzontal() .bottom() - + groupMemberTopConstraint = groupMemberView.jh_constraint( .top, toAttribute: .bottom, otherView: toolsView, relation: .equal ) let pan = UIPanGestureRecognizer(target: self, action: #selector(handleGroupMemberPan(_:))) + pan.delegate = self groupMemberView.addGestureRecognizer(pan) + + // 底部弹出面板(quickMessageView 在上,interactionView 在下) + addSubview(interactionView) + addSubview(quickMessageView) + } + + // MARK: - 底部面板显隐 + func showMemberPanel(member: CircleMember) { + interactionView.configure(member: member) + quickMessageView.isHidden = false + interactionView.isHidden = false + quickMessageView.frame.origin.y = kScreenHeight - 384 - 93 + interactionView.frame.origin.y = kScreenHeight - 384 + } + + func dismissMemberPanel() { + quickMessageView.frame.origin.y = kScreenHeight + interactionView.frame.origin.y = kScreenHeight + quickMessageView.isHidden = true + interactionView.isHidden = true + onDismissPanel?() } override init(frame: CGRect) { @@ -239,10 +295,24 @@ class HomeView: UIView { switch pan.state { case .began: - panStartTop = pan.location(in: self).y - pan.translation(in: self).y + panStartTop = groupMemberView.frame.minY case .changed: let newTop = panStartTop + pan.translation(in: self).y + + // 最大化状态下,tableView 可以向下滑时,不干扰自身滑动; + // 只有 tableView 到达顶部继续下拉时,才切换为 view 拖拽 + if isSubCanScroll { + let tableViewOffset = self.groupMemberView.tableView.contentOffset.y + if tableViewOffset > 0, newTop >= groupMemberUpLimit { + // 还未滑到顶部,让 tableView 处理 + return + } + // 到达顶部继续下拉 → 关闭子滚动,交由 view 的 pan 处理 + isSubCanScroll = false + panStartTop = groupMemberView.frame.minY + } + let clamped = max(groupMemberUpLimit, min(groupMemberDownLimit, newTop)) topConstraint.constant = clamped - groupMemberDownLimit + 10 @@ -260,6 +330,13 @@ class HomeView: UIView { UIView.animate(withDuration: 0.25, delay: 0, options: [.curveEaseOut, .allowUserInteraction]) { self.layoutIfNeeded() + } completion: { _ in + let atTop = target == self.groupMemberUpLimit + self.isSubCanScroll = atTop + // 未最大化时重置 tableView 到顶部 + if !atTop { + self.groupMemberView.tableView.contentOffset.y = 0 + } } default: @@ -267,6 +344,17 @@ class HomeView: UIView { } } + /// 收起 GroupMemberView(选中成员后调用) + func dismissGroupMemberView() { + guard isGroupMemberLimitsSet, let topConstraint = groupMemberTopConstraint else { return } + isSubCanScroll = false + topConstraint.constant = groupMemberDownLimit - groupMemberDownLimit + 10 + groupMemberView.tableView.setContentOffset(.zero, animated: false) + UIView.animate(withDuration: 0.25, delay: 0, options: .curveEaseOut) { + self.layoutIfNeeded() + } + } + // MARK: - UI Components lazy var navBarBg: UIImageView = { let view = UIImageView() @@ -482,3 +570,13 @@ class HomeView: UIView { return view }() } + +// MARK: - UIGestureRecognizerDelegate +extension HomeView: UIGestureRecognizerDelegate { + func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, + shouldRecognizeSimultaneouslyWith other: UIGestureRecognizer) -> Bool { + // 允许 GroupMemberView 的 pan 与 tableView 的 pan 同时识别 + // 滚动状态由 isSubCanScroll + contentOffset 控制,不影响手势判定 + return true + } +} diff --git a/QuickLocation/Section/Home/HomeViewController.swift b/QuickLocation/Section/Home/HomeViewController.swift index 65b87fe..adf40e4 100644 --- a/QuickLocation/Section/Home/HomeViewController.swift +++ b/QuickLocation/Section/Home/HomeViewController.swift @@ -14,6 +14,7 @@ import SwiftyUserDefaults #if !targetEnvironment(simulator) import MAMapKit +import CocoaMQTT #endif class HomeViewController: BaseViewController { @@ -35,6 +36,13 @@ class HomeViewController: BaseViewController { private var members: [CircleMember] = [] private var currentUserMember: CircleMember? private var currentUserAnnotation: MemberAnnotation? + /// 最新位置(供 MQTT 定时上报) + private var lastLocation: CLLocation? + private var locationTimer: Timer? + /// 当前已订阅 MQTT 的成员 ID 列表 + private var subscribedMemberIds: [String] = [] + /// 底部成员面板是否显示 + private var isMemberPanelShown = false override func loadView() { #if !targetEnvironment(simulator) @@ -52,11 +60,62 @@ class HomeViewController: BaseViewController { setupMap() setupHeading() reactiveAction() - + requestUserConfig() + + // MQTT 位置上报 + UIDevice.current.isBatteryMonitoringEnabled = true + startLocationTimer() + } + + // MARK: - MQTT 位置上报 + private let geocoder = CLGeocoder() + private var lastGeocodedCoord: CLLocationCoordinate2D? + private var lastAddress: String = "" + + private func startLocationTimer() { + locationTimer?.invalidate() + locationTimer = Timer.scheduledTimer(withTimeInterval: 5, repeats: true) { [weak self] _ in + guard let self = self, let loc = self.lastLocation else { return } + let coord = loc.coordinate + + // 坐标变化不大时复用上次地址 + if let last = self.lastGeocodedCoord, + hypot(coord.latitude - last.latitude, coord.longitude - last.longitude) < 0.001, + !self.lastAddress.isEmpty { + self.publishLocation(coord: coord, address: self.lastAddress, loc: loc) + return + } + + // 反向地理编码获取地址 + self.geocoder.reverseGeocodeLocation(loc) { [weak self] placemarks, error in + guard let self = self else { return } + let address = placemarks?.first?.name + ?? placemarks?.first?.thoroughfare + ?? placemarks?.first?.locality + ?? "" + self.lastAddress = address + self.lastGeocodedCoord = coord + self.publishLocation(coord: coord, address: address, loc: loc) + } + } + } + + private func publishLocation(coord: CLLocationCoordinate2D, address: String, loc: CLLocation) { + MQTTService.shared.reportLocation( + lat: coord.latitude, + lon: coord.longitude, + addr: address, + speed: loc.speed, + bearing: loc.course, + altitude: loc.altitude, + accuracy: loc.horizontalAccuracy + ) } + // MARK: - Actions private func reactiveAction() { + rootView.groupView.rx.tapGesture.subscribe { _ in guard let groupModel = self.viewModel.groupModel else { return } let groupViewFrame = self.view.convert(self.rootView.groupView.frame, from: self.rootView) @@ -93,6 +152,17 @@ class HomeViewController: BaseViewController { .subscribe { [weak self] notification in self?.requestGroupInfo() }.disposed(by: disposeBag) + + // 面板关闭回调 + rootView.onDismissPanel = { [weak self] in + self?.isMemberPanelShown = false + (self?.tabBarController as? MainTabBarController)?.setTabBarHidden(false) + } + + // MQTT 接收 + MQTTService.shared.onMessageReceived = { message, id, properties in + print("收到消息: \(message.string ?? "")") + } } private func bindViewModel() { @@ -100,9 +170,20 @@ class HomeViewController: BaseViewController { .bind(to: tableView.rx.items(dataSource: dataSource)) .disposed(by: disposeBag) - tableView.rx.modelSelected(GroupMemberModel.self) + let selectedMember = tableView.rx.modelSelected(GroupMemberModel.self) + .share() + + selectedMember .subscribe(viewModel.cellAction.inputs) .disposed(by: disposeBag) + + // 选中成员 → 地图定位 + selectedMember + .subscribe(onNext: { [weak self] model in + guard let self = self else { return } + self.locateMember(userId: model.user_id) + }) + .disposed(by: disposeBag) } // MARK: - UITableViewDataSource @@ -161,6 +242,7 @@ class HomeViewController: BaseViewController { self.rootView.groupMemberView.setupCountData(self.viewModel.memberCount, self.viewModel.memberOnlineCount) self.rootView.groupNameLab.text = self.viewModel.groupName self.syncMemberAnnotations(model.select_group_employee) + self.refreshMQTTSubscriptions(model.select_group_employee) }.disposed(by: disposeBag) } @@ -175,6 +257,11 @@ class HomeViewController: BaseViewController { #if !targetEnvironment(simulator) rootView.mapView.delegate = self + // 地图点击选择标注 + let mapTap = UITapGestureRecognizer(target: self, action: #selector(handleMapTap(_:))) + mapTap.cancelsTouchesInView = false + rootView.mapView.addGestureRecognizer(mapTap) + let r = MAUserLocationRepresentation() r.showsAccuracyRing = false r.showsHeadingIndicator = false @@ -188,6 +275,23 @@ class HomeViewController: BaseViewController { #endif } + @objc private func handleMapTap(_ tap: UITapGestureRecognizer) { + let point = tap.location(in: rootView.mapView) + // 用 mapView 的坐标转屏幕坐标判断命中 + for ann in rootView.mapView.annotations?.compactMap({ $0 as? MemberAnnotation }) ?? [] { + guard !ann.member.isCurrentUser else { continue } + let pt = rootView.mapView.convert(ann.coordinate, toPointTo: rootView.mapView) + // 30pt 命中半径 + let hitRect = CGRect(x: pt.x - 30, y: pt.y - 30, width: 60, height: 60) + if hitRect.contains(point) { + self.isMemberPanelShown = true + (self.tabBarController as? MainTabBarController)?.setTabBarHidden(true) + rootView.showMemberPanel(member: ann.member) + break + } + } + } + private func transparentImage() -> UIImage { UIGraphicsBeginImageContextWithOptions(CGSize(width: 1, height: 1), false, 0) let img = UIGraphicsGetImageFromCurrentImageContext() ?? UIImage() @@ -227,7 +331,8 @@ class HomeViewController: BaseViewController { coordinate: kCLLocationCoordinate2DInvalid, address: "", heading: 0, - lastUpdateText: "在线" + lastUpdateText: "在线", + battery: "" ) // 其他成员从 select_group_employee 取,过滤掉当前用户 @@ -255,6 +360,105 @@ class HomeViewController: BaseViewController { mapView.addAnnotations(annotations) #endif } + + #if !targetEnvironment(simulator) + /// 选中成员后地图定位到该成员,收起 GroupMemberView + private func locateMember(userId: String) { + rootView.dismissGroupMemberView() + guard let member = members.first(where: { $0.id == userId }), + CLLocationCoordinate2DIsValid(member.coordinate) else { return } + rootView.mapView.setCenter(member.coordinate, animated: true) + rootView.mapView.setZoomLevel(16, animated: true) + } + + #endif +} + +// MARK: - MQTT +extension HomeViewController { + /// 切换圈子时刷新 MQTT 订阅(排除当前用户) + private func refreshMQTTSubscriptions(_ members: [GroupMemberModel]) { + let currentId = AppContextManager.shared.userId + let newIds = members.map { $0.user_id }.filter { $0 != currentId } + let toUnsub = subscribedMemberIds.filter { !newIds.contains($0) } + MQTTService.shared.unsubscribeGroupMembers(toUnsub) + let toSub = newIds.filter { !subscribedMemberIds.contains($0) } + for memberId in toSub { + let topic = "smartdrive/\(memberId)" + MQTTService.shared.subscribe(topic: topic) { [weak self] message in + + self?.handleMemberLocation(topic: message.topic, payload: message.string) + } + } + subscribedMemberIds = newIds + } + + /// 处理成员位置更新(从 topic 提取 userId,更新地图标注) + private func handleMemberLocation(topic: String, payload: String?) { + guard let payload = payload, + let data = payload.data(using: .utf8), + let msg = try? JSONDecoder().decode(MqttIncomingMessage.self, from: data), + let firstPoint = msg.data?.points?.first + else { return } + print("📩 收到消息 -> 主题:\(topic),内容:\(msg)") + let userId = topic.replacingOccurrences(of: "smartdrive/", with: "") + let coord = CLLocationCoordinate2D(latitude: firstPoint.lat, longitude: firstPoint.lon) + guard CLLocationCoordinate2DIsValid(coord) else { return } + + // 根据 time 字段判断在线状态(毫秒时间戳) + let nowMs = Date().timeIntervalSince1970 * 1000 + let msgTimeMs = Double(firstPoint.time) + let diffSec = (nowMs - msgTimeMs) / 1000 + let isOnline = diffSec < 60 + let lastUpdateText: String + if isOnline { + lastUpdateText = "" + } else if diffSec < 3600 { + lastUpdateText = "\(Int(diffSec / 60))分钟前" + } else if diffSec < 86400 { + lastUpdateText = "\(Int(diffSec / 3600))小时前" + } else { + lastUpdateText = "\(Int(diffSec / 86400))天前" + } + + let battery = msg.data?.battery ?? "" + DispatchQueue.main.async { [weak self] in + guard let self = self else { return } + // 更新列表(地址、电量、在线状态) + self.viewModel.updateMemberLocation( + userId: userId, lat: firstPoint.lat, lon: firstPoint.lon, + address: firstPoint.addr, battery: battery, + isOnline: isOnline, lastUpdateText: lastUpdateText + ) + // 更新地图标注位置 + self.updateAnnotation(userId: userId, coordinate: coord, address: firstPoint.addr) + } + } + + /// 更新指定成员的标注位置(只更新坐标,头像/名称不变) + private func updateAnnotation(userId: String, coordinate: CLLocationCoordinate2D, address: String) { + #if !targetEnvironment(simulator) + // 更新 members 数组 + if let idx = members.firstIndex(where: { $0.id == userId }) { + let old = members[idx] + members[idx] = CircleMember( + id: old.id, name: old.name, avatar: old.avatar, + isOnline: true, isOwner: old.isOwner, + coordinate: coordinate, address: address, + heading: old.heading, lastUpdateText: "在线", + battery: old.battery + ) + } + // 更新地图标注坐标 + let mapView = rootView.mapView + for ann in mapView.annotations?.compactMap({ $0 as? MemberAnnotation }) ?? [] { + if ann.member.id == userId { + ann.coordinate = coordinate + break + } + } + #endif + } } #if !targetEnvironment(simulator) @@ -278,6 +482,8 @@ extension HomeViewController: MAMapViewDelegate { annotationView?.configure(with: memberAnnotation.member) + + if memberAnnotation.member.isCurrentUser { currentUserAnnotation = memberAnnotation annotationView?.updateHeading(currentHeading) @@ -288,6 +494,7 @@ extension HomeViewController: MAMapViewDelegate { func mapView(_ mapView: MAMapView!, didUpdate userLocation: MAUserLocation!, updatingLocation: Bool) { guard updatingLocation, let location = userLocation.location else { return } + lastLocation = location let coordinate = location.coordinate guard CLLocationCoordinate2DIsValid(coordinate) else { return } @@ -295,13 +502,30 @@ extension HomeViewController: MAMapViewDelegate { ann.coordinate = coordinate } - mapView.setCenter(coordinate, animated: true) - mapView.setUserTrackingMode(.follow, animated: true) + if !isMemberPanelShown { + mapView.setCenter(coordinate, animated: true) + mapView.setUserTrackingMode(.follow, animated: true) + } } func mapViewRequireLocationAuth(_ locationManager: CLLocationManager!) { locationManager.requestAlwaysAuthorization() } + + func mapView(_ mapView: MAMapView!, didSelect view: MAAnnotationView!) { + guard let annotationView = view as? MemberAnnotationView, + let annotation = annotationView.annotation as? MemberAnnotation, + !annotation.member.isCurrentUser else { return } + // 弹出底部面板 + rootView.showMemberPanel(member: annotation.member) + } + + func mapView(_ mapView: MAMapView!, didDeselect view: MAAnnotationView!) { + guard let annotationView = view as? MemberAnnotationView, + let annotation = annotationView.annotation as? MemberAnnotation, + !annotation.member.isCurrentUser else { return } + rootView.dismissMemberPanel() + } } #endif diff --git a/QuickLocation/Section/Home/HomeViewModel.swift b/QuickLocation/Section/Home/HomeViewModel.swift index 0355e86..6dcd9fd 100644 --- a/QuickLocation/Section/Home/HomeViewModel.swift +++ b/QuickLocation/Section/Home/HomeViewModel.swift @@ -32,7 +32,7 @@ class HomeViewModel { var groupModel: GroupModel? { didSet { guard let model = groupModel else { return } - loadGroupMemberList(model.select_group_employee) + self.memberList = model.select_group_employee } } @@ -80,14 +80,39 @@ class HomeViewModel { return model.default_group_key.contains(id) } - func loadGroupMemberList(_ list: [GroupMemberModel]) { - // 调整圈子成为位置 圈主 -> 本人 -> 成员 - var tempList = list - tempList.moveToFirst { $0.user_id == AppContextManager.shared.userId } - tempList.moveToFirst { isGroupOwn(id: $0.user_id) } - sectionedItems.onNext(tempList.mapSection()) + var memberList: [GroupMemberModel] = [] { + didSet { + var tempList = memberList + + // 当前用户的电量 +// if var model = memberList.first(where: { $0.user_id == AppContextManager.shared.userId }), +// let idx = memberList.firstIndex(where: { $0.user_id == AppContextManager.shared.userId }) { +// let battery = UIDevice.current.batteryLevel > 0 +// ? Int(UIDevice.current.batteryLevel * 100) +// : 0 +// model.battery = battery.string +// model.is_online = true +// tempList[idx] = model +// } + + tempList.moveToFirst { $0.user_id == AppContextManager.shared.userId } + tempList.moveToFirst { isGroupOwn(id: $0.user_id) } + memberList = tempList + sectionedItems.onNext(memberList.mapSection()) + } } + /// MQTT 位置更新后刷新成员的地址、电量、在线状态 + func updateMemberLocation(userId: String, lat: Double, lon: Double, address: String, battery: String, isOnline: Bool, lastUpdateText: String) { + guard let idx = memberList.firstIndex(where: { $0.user_id == userId }) else { return } + var updated = memberList + updated[idx].last_position = "\(lat):\(lon):\(address)" + updated[idx].battery = battery + updated[idx].is_online = isOnline + updated[idx].lastUpdateText = lastUpdateText + memberList = updated // 触发 didSet → 排序 + 重发 sectionedItems + } + // MARK: - Init init() { output = Output( diff --git a/QuickLocation/Section/Home/InteractionView.swift b/QuickLocation/Section/Home/InteractionView.swift new file mode 100644 index 0000000..9b63523 --- /dev/null +++ b/QuickLocation/Section/Home/InteractionView.swift @@ -0,0 +1,214 @@ +// +// InteractionView.swift +// QuickLocation +// +// Created by 八条 on 2026/6/15. +// + +import UIKit + +class InteractionView: UIView { + + func configure(member: CircleMember) { + avaterImgView.image = UIImage(named: "UserIcon/\(member.avatar)") + nameLab.text = member.name + locationLab.text = member.address + // 电量 + let batteryInt = Int(member.battery) ?? 0 + let batteryPercent = min(CGFloat(batteryInt), 100) + batteryView.layoutChain.width(CGFloat(16 - 1) * batteryPercent / 100.0) + batteryLab.text = "\(member.battery)%" + } + + private func setupRx() { + + } + + private func setupUI() { + addSubview(infoView) + infoView.addSubview(headerBgView) + infoView.addSubview(lineView) + infoView.addSubview(avaterImgView) + infoView.addSubview(batteryInfoView) + batteryInfoView.addSubview(cornerView) + cornerView.addSubview(batteryView) + cornerView.addSubview(batteryIcon) + cornerView.addSubview(batteryLab) + infoView.addSubview(nameLab) + infoView.addSubview(locationLab) + infoView.addSubview(navigateBtn) + infoView.addSubview(shareBtn) + + infoView.layoutChain.edges() + + headerBgView.layoutChain + .edges(excludingEdge: .bottom) + .height(134) + + lineView.layoutChain + .top(13) + .width(36) + .height(4) + .centerX() + + avaterImgView.layoutChain + .top(25) + .left(25) + .width(50) + .height(50) + + batteryInfoView.layoutChain + .leftToView(avaterImgView) + .rightToView(avaterImgView) + .bottomToView(avaterImgView) + .height(12) + + cornerView.layoutChain.edges() + + batteryIcon.layoutChain + .left(7) + .centerY() + .width(16) + .height(8) + + batteryView.layoutChain + .topToView(batteryIcon) + .leftToView(batteryIcon, offset: -1) + .bottomToView(batteryIcon) + + batteryLab.layoutChain + .leftToRightOfView(batteryIcon, offset: 4) + .right(5) + .centerY() + + nameLab.layoutChain + .topToView(avaterImgView, offset: 8) + .leftToRightOfView(avaterImgView, offset: 15) + + locationLab.layoutChain + .topToBottomOfView(nameLab) + .leftToView(nameLab) + + shareBtn.layoutChain + .right(15) + .centerY(avaterImgView) + .width(30) + .height(30) + + navigateBtn.layoutChain + .rightToLeftOfView(shareBtn, offset: -10) + .centerY(avaterImgView) + .width(30) + .height(30) + } + + lazy var infoView: UIView = { + let view = UIView() + view.backgroundColor = .white + return view + }() + + lazy var headerBgView: UIImageView = { + let view = UIImageView(image: UIImage(named: "Home/interaction_header")) + return view + }() + + lazy var lineView: UIView = { + let view = UIView() + view.backgroundColor = .white + view.cornerRadius = 2 + return view + }() + + lazy var avaterImgView: UIImageView = { + let view = UIImageView() + view.backgroundColor = .lightGray + view.contentMode = .scaleAspectFill + view.cornerRadius = 25 + return view + }() + + lazy var batteryInfoView: UIView = { + let view = UIView() + view.backgroundColor = .clear + view.layer.shadowColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.1).cgColor + view.layer.shadowOffset = CGSize(width: 0, height: 2) + view.layer.shadowOpacity = 1 + view.layer.shadowRadius = 6 + return view + }() + + lazy var cornerView: UIView = { + let view = UIView() + view.backgroundColor = .white + view.cornerRadius = 6 + return view + }() + + lazy var batteryView: UIView = { + let view = UIView() + view.backgroundColor = UIColor(hexStr: "#75E582") + return view + }() + + lazy var batteryIcon: UIImageView = { + let view = UIImageView() + view.backgroundColor = .clear + view.image = UIImage(named: "Home/battery") + return view + }() + + lazy var batteryLab: UILabel = { + let label = UILabel() + label.textColor = UIColor(hexStr: "#D4D4D4") + label.font = .systemFont(ofSize: 6, weight: .medium) + return label + }() + + lazy var nameLab: UILabel = { + let label = UILabel() + label.textColor = UIColor(hexStr: "#0F2846") + label.font = .systemFont(ofSize: 14, weight: .semibold) + return label + }() + + lazy var locationLab: UILabel = { + let label = UILabel() + label.textColor = UIColor(hexStr: "#8D8D8D") + label.font = .systemFont(ofSize: 10, weight: .regular) + return label + }() + + lazy var navigateBtn: UIButton = { + let btn = UIButton(type: .custom) + btn.setImage(UIImage(named: "Home/navigate"), for: .normal) + btn.cornerRadius = 15 + btn.extendEdgeInsets = UIEdgeInsets(top: 30, left: 30, bottom: 30, right: 0) + return btn + }() + + lazy var shareBtn: UIButton = { + let btn = UIButton(type: .custom) + btn.setImage(UIImage(named: "Home/share"), for: .normal) + btn.cornerRadius = 15 + btn.extendEdgeInsets = UIEdgeInsets(top: 30, left: 0, bottom: 30, right: 15) + return btn + }() + + override init(frame: CGRect) { + super.init(frame: frame) + backgroundColor = .clear + setupUI() + setupRx() + } + + required init?(coder aDecoder: NSCoder) { + fatalError("init(coder:) has not been implemented") + } + + override func layoutSubviews() { + super.layoutSubviews() + infoView.layoutIfNeeded() + infoView.setCornerRadius(corners: [.topLeft ,.topRight], withCornerRadii: CGSize(width: 20, height: 20)) + } +} diff --git a/QuickLocation/Section/Home/QuickMessageView.swift b/QuickLocation/Section/Home/QuickMessageView.swift new file mode 100644 index 0000000..5a23c5b --- /dev/null +++ b/QuickLocation/Section/Home/QuickMessageView.swift @@ -0,0 +1,96 @@ +// +// QuickMessageView.swift +// QuickLocation +// +// Created by 八条 on 2026/6/15. +// + +import UIKit +import TagListView + +class QuickMessageView: UIView { + + private let list: [String] = [ + "爱你哦!", "预计到达时间?", "发生什么情况?", "注意安全", "在路上", "给我打电话", + ] + + func setupTagData(list: [String]) { + tagListView.removeAllTags() + for text in list { + let tag = TTGTextTag.init() + + let content = TTGTextTagStringContent.init(text: text) + content.textColor = ThemeManager.shared.color.titleAuxColor + content.textFont = UIFont.systemFont(ofSize: 12, weight: .medium) + + let normalStyle = TTGTextTagStyle.init() + normalStyle.backgroundColor = .white + normalStyle.extraSpace = CGSize.init(width: 15, height: 15) + normalStyle.shadowColor = UIColor(hexStr: "#333333", alpha: 0.25) + normalStyle.borderColor = .clear + normalStyle.cornerRadius = 8 + + tag.content = content + tag.style = normalStyle + + tagListView.addTag(tag) + } + tagListView.reload() + tagListView.setNeedsLayout() + tagListView.layoutIfNeeded() + } + + private func setupRx() { + + } + + private func setupUI() { + addSubview(closeBtn) + addSubview(tagListView) + + closeBtn.layoutChain + .top() + .left(23) + .width(40) + .height(40) + + tagListView.layoutChain + .topToBottomOfView(closeBtn, offset: 15) + .edgesHorzontal(15) + .height(38) + } + + lazy var closeBtn: UIButton = { + let btn = UIButton(type: .custom) + btn.setImage(UIImage(named: "Common/x"), for: .normal) + btn.setBackgroundColor(.black.withAlphaComponent(0.5), for: .normal) + btn.cornerRadius = 20 + btn.extendEdgeInsets = UIEdgeInsets(top: 50, left: 23, bottom: 0, right: 30) + return btn + }() + + lazy var tagListView: TTGTextTagCollectionView = { + let tagsView = TTGTextTagCollectionView.init(frame: .zero) + tagsView.scrollView.scrollsToTop = false + tagsView.scrollView.bounces = false + tagsView.showsVerticalScrollIndicator = false + tagsView.showsHorizontalScrollIndicator = false + tagsView.scrollDirection = .horizontal + tagsView.numberOfLines = 1 + tagsView.horizontalSpacing = 10 + return tagsView + }() + + override init(frame: CGRect) { + super.init(frame: frame) + backgroundColor = .clear + setupUI() + setupRx() + setupTagData(list: list) + } + + required init?(coder aDecoder: NSCoder) { + fatalError("init(coder:) has not been implemented") + } + +} diff --git a/QuickLocation/Section/Launch/LaunchViewController.swift b/QuickLocation/Section/Launch/LaunchViewController.swift index a322ef5..78b3908 100644 --- a/QuickLocation/Section/Launch/LaunchViewController.swift +++ b/QuickLocation/Section/Launch/LaunchViewController.swift @@ -69,6 +69,7 @@ class LaunchViewController: BaseViewController { func getUserConfig() { SystemService.userConfig().subscribe(onNext: { response in guard let model = response.model else { return } + MQTTService.shared.connect() Defaults[\.loginToken] = model.token AppContextManager.shared.systemConfig = model.config self.getUserIMToken() diff --git a/QuickLocation/Section/Map/CircleMember.swift b/QuickLocation/Section/Map/CircleMember.swift index 454d3b3..3e50b51 100644 --- a/QuickLocation/Section/Map/CircleMember.swift +++ b/QuickLocation/Section/Map/CircleMember.swift @@ -16,6 +16,7 @@ struct CircleMember { let address: String let heading: Double let lastUpdateText: String + let battery: String var isCurrentUser: Bool { id == "current" } } @@ -33,6 +34,7 @@ extension CircleMember { address = addr heading = 0 lastUpdateText = member.is_online ? "在线" : "离线" + battery = member.battery } /// 解析 last_position:格式 "lat:lng:address" diff --git a/QuickLocation/Section/Map/MemberAnnotationView.swift b/QuickLocation/Section/Map/MemberAnnotationView.swift index 042528e..f39d57b 100644 --- a/QuickLocation/Section/Map/MemberAnnotationView.swift +++ b/QuickLocation/Section/Map/MemberAnnotationView.swift @@ -9,6 +9,9 @@ import MAMapKit final class MemberAnnotationView: MAAnnotationView { + /// 标注被点击的回调 + var onTap: ((MemberAnnotation) -> Void)? + // MARK: - Design Constants static let avatarOuterSize: CGFloat = 50 static let avatarInnerSize: CGFloat = 48 @@ -96,10 +99,18 @@ final class MemberAnnotationView: MAAnnotationView { // MARK: - Configure func configure(with member: CircleMember) { + self.isEnabled = true avatarImageView.image = UIImage(named: "UserIcon/\(member.avatar)") avatarImageView.backgroundColor = member.avatar.isEmpty ? .lightGray : .clear nameLabel.text = member.name isCurrentUser = member.isCurrentUser + canShowCallout = false + + // 非当前用户标注可点击弹出面板 + if !member.isCurrentUser && gestureRecognizers?.isEmpty ?? true { + let tap = UITapGestureRecognizer(target: self, action: #selector(handleTap)) + addGestureRecognizer(tap) + } if member.isCurrentUser { configureAsCurrentUser(heading: member.heading) @@ -108,22 +119,29 @@ final class MemberAnnotationView: MAAnnotationView { } } + @objc private func handleTap() { + guard let ann = annotation as? MemberAnnotation else { return } + onTap?(ann) + } + private func configureAsCurrentUser(heading: Double) { nameTagView.isHidden = true stopPulseAnimation() - let size = Self.radarSize + let outer = Self.avatarOuterSize + let padding: CGFloat = 30 + let size = outer + padding * 2 bounds = CGRect(x: 0, y: 0, width: size, height: size) centerOffset = .zero containerView.frame = bounds - let avatarX = (size - Self.avatarOuterSize) / 2 - let avatarY = (size - Self.avatarOuterSize) / 2 + let avatarX = (size - outer) / 2 + let avatarY = (size - outer) / 2 avatarOuterCircle.frame = CGRect(x: avatarX, y: avatarY, - width: Self.avatarOuterSize, height: Self.avatarOuterSize) + width: outer, height: outer) avatarImageView.frame = CGRect( - x: (Self.avatarOuterSize - Self.avatarInnerSize) / 2, - y: (Self.avatarOuterSize - Self.avatarInnerSize) / 2, + x: (outer - Self.avatarInnerSize) / 2, + y: (outer - Self.avatarInnerSize) / 2, width: Self.avatarInnerSize, height: Self.avatarInnerSize ) diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTagCollectionView-Bridging-Header.h b/QuickLocation/UIKit/TTGTagCollectionView/TTGTagCollectionView-Bridging-Header.h new file mode 100644 index 0000000..df1ee9e --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTagCollectionView-Bridging-Header.h @@ -0,0 +1,19 @@ +// +// TTGTagCollectionView-Bridging-Header.h +// TTGTagCollectionView +// +// Created by zekunyan on 2021/4/21. +// + +#ifndef TTGTagCollectionView_Bridging_Header_h +#define TTGTagCollectionView_Bridging_Header_h + +#import "TTGTagCollectionView.h" +#import "TTGTextTagCollectionView.h" +#import "TTGTextTag.h" +#import "TTGTextTagContent.h" +#import "TTGTextTagStringContent.h" +#import "TTGTextTagAttributedStringContent.h" +#import "TTGTextTagStyle.h" + +#endif /* TTGTagCollectionView_Bridging_Header_h */ diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTagCollectionView.h b/QuickLocation/UIKit/TTGTagCollectionView/TTGTagCollectionView.h new file mode 100644 index 0000000..41ef2f2 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTagCollectionView.h @@ -0,0 +1,112 @@ +// +// TTGTagCollectionView.h +// Pods +// +// Created by zekunyan on 15/12/26. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import + +@class TTGTagCollectionView; + +/** + * Tags scroll direction + */ +typedef NS_ENUM(NSInteger, TTGTagCollectionScrollDirection) { + TTGTagCollectionScrollDirectionVertical = 0, // Default + TTGTagCollectionScrollDirectionHorizontal = 1 +}; + +/** + * Tags alignment + */ +typedef NS_ENUM(NSInteger, TTGTagCollectionAlignment) { + TTGTagCollectionAlignmentLeft = 0, // Default + TTGTagCollectionAlignmentCenter, // Center + TTGTagCollectionAlignmentRight, // Right + TTGTagCollectionAlignmentFillByExpandingSpace, // Expand horizontal spacing and fill + TTGTagCollectionAlignmentFillByExpandingWidth, // Expand width and fill + TTGTagCollectionAlignmentFillByExpandingWidthExceptLastLine // Expand width and fill, except last line +}; + +/** + * Tags delegate + */ +@protocol TTGTagCollectionViewDelegate +@required +- (CGSize)tagCollectionView:(TTGTagCollectionView *)tagCollectionView sizeForTagAtIndex:(NSUInteger)index; + +@optional +- (BOOL)tagCollectionView:(TTGTagCollectionView *)tagCollectionView shouldSelectTag:(UIView *)tagView atIndex:(NSUInteger)index; + +- (void)tagCollectionView:(TTGTagCollectionView *)tagCollectionView didSelectTag:(UIView *)tagView atIndex:(NSUInteger)index; + +- (void)tagCollectionView:(TTGTagCollectionView *)tagCollectionView updateContentSize:(CGSize)contentSize; +@end + +/** + * Tags dataSource + */ +@protocol TTGTagCollectionViewDataSource +@required +- (NSUInteger)numberOfTagsInTagCollectionView:(TTGTagCollectionView *)tagCollectionView; + +- (UIView *)tagCollectionView:(TTGTagCollectionView *)tagCollectionView tagViewForIndex:(NSUInteger)index; +@end + +@interface TTGTagCollectionView : UIView +@property (nonatomic, weak) id dataSource; +@property (nonatomic, weak) id delegate; + +// Inside scrollView +@property (nonatomic, strong, readonly) UIScrollView *scrollView; + +// Tags scroll direction, default is vertical. +@property (nonatomic, assign) TTGTagCollectionScrollDirection scrollDirection; + +// Tags layout alignment, default is left. +@property (nonatomic, assign) TTGTagCollectionAlignment alignment; + +// Number of lines. 0 means no limit, default is 0 for vertical and 1 for horizontal. +@property (nonatomic, assign) NSUInteger numberOfLines; +// The real number of lines ignoring the numberOfLines value +@property (nonatomic, assign, readonly) NSUInteger actualNumberOfLines; + +// Horizontal and vertical space between tags, default is 4. +@property (nonatomic, assign) CGFloat horizontalSpacing; +@property (nonatomic, assign) CGFloat verticalSpacing; + +// Content inset, default is UIEdgeInsetsMake(2, 2, 2, 2). +@property (nonatomic, assign) UIEdgeInsets contentInset; + +// The true tags content size, readonly +@property (nonatomic, assign, readonly) CGSize contentSize; + +// Manual content height +// Default = NO, set will update content +@property (nonatomic, assign) BOOL manualCalculateHeight; +// Default = 0, set will update content +@property (nonatomic, assign) CGFloat preferredMaxLayoutWidth; + +// Scroll indicator +@property (nonatomic, assign) BOOL showsHorizontalScrollIndicator; +@property (nonatomic, assign) BOOL showsVerticalScrollIndicator; + +// Tap blank area callback +@property (nonatomic, copy) void (^onTapBlankArea)(CGPoint location); +// Tap all area callback +@property (nonatomic, copy) void (^onTapAllArea)(CGPoint location); + +/** + * Reload all tag cells + */ +- (void)reload; + +/** + * Returns the index of the tag located at the specified point. + * If item at point is not found, returns NSNotFound. + */ +- (NSInteger)indexOfTagAt:(CGPoint)point; + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTagCollectionView.m b/QuickLocation/UIKit/TTGTagCollectionView/TTGTagCollectionView.m new file mode 100644 index 0000000..fd9c6a8 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTagCollectionView.m @@ -0,0 +1,490 @@ +// +// TTGTagCollectionView.m +// Pods +// +// Created by zekunyan on 15/12/26. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import "TTGTagCollectionView.h" + +@interface TTGTagCollectionView () +@property (nonatomic, strong) UIScrollView *scrollView; +@property (nonatomic, strong) UIView *containerView; +@property (nonatomic, assign) BOOL needsLayoutTagViews; +@property (nonatomic, assign) NSUInteger actualNumberOfLines; +@end + +@implementation TTGTagCollectionView + +#pragma mark - Init + +- (instancetype)initWithFrame:(CGRect)frame { + self = [super initWithFrame:frame]; + if (self) { + [self commonInit]; + } + + return self; +} + +- (instancetype)initWithCoder:(NSCoder *)coder { + self = [super initWithCoder:coder]; + if (self) { + [self commonInit]; + } + + return self; +} + +- (void)commonInit { + if (_scrollView) { + return; + } + + _horizontalSpacing = 4; + _verticalSpacing = 4; + _contentInset = UIEdgeInsetsMake(2, 2, 2, 2); + + _scrollView = [[UIScrollView alloc] initWithFrame:self.bounds]; + _scrollView.backgroundColor = [UIColor clearColor]; + _scrollView.userInteractionEnabled = YES; + [self addSubview:_scrollView]; + + _containerView = [[UIView alloc] initWithFrame:_scrollView.bounds]; + _containerView.backgroundColor = [UIColor clearColor]; + _containerView.userInteractionEnabled = YES; + [_scrollView addSubview:_containerView]; + + UITapGestureRecognizer *tapGesture = [UITapGestureRecognizer new]; + [tapGesture addTarget:self action:@selector(onTapGesture:)]; + [_containerView addGestureRecognizer:tapGesture]; + + [self setNeedsLayoutTagViews]; +} + +#pragma mark - Public methods + +- (void)reload { + if (![self isDelegateAndDataSourceValid]) { + return; + } + + // Remove all tag views + [_containerView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)]; + + // Add tag view + for (NSUInteger i = 0; i < [_dataSource numberOfTagsInTagCollectionView:self]; i++) { + [_containerView addSubview:[_dataSource tagCollectionView:self tagViewForIndex:i]]; + } + + // Update tag view frame + [self setNeedsLayoutTagViews]; + [self layoutTagViews]; +} + +- (NSInteger)indexOfTagAt:(CGPoint)point { + // We expect the point to be a point wrt to the TTGTagCollectionView. + // so convert this point first to a point wrt to the container view. + CGPoint convertedPoint = [self convertPoint:point toView:_containerView]; + for (NSUInteger i = 0; i < [self.dataSource numberOfTagsInTagCollectionView:self]; i++) { + UIView *tagView = [self.dataSource tagCollectionView:self tagViewForIndex:i]; + if (CGRectContainsPoint(tagView.frame, convertedPoint) && !tagView.isHidden) { + return i; + } + } + return NSNotFound; +} + +#pragma mark - Gesture + +- (void)onTapGesture:(UITapGestureRecognizer *)tapGesture { + CGPoint tapPointInCollectionView = [tapGesture locationInView:self]; + + if (![self.dataSource respondsToSelector:@selector(numberOfTagsInTagCollectionView:)] || + ![self.dataSource respondsToSelector:@selector(tagCollectionView:tagViewForIndex:)] || + ![self.delegate respondsToSelector:@selector(tagCollectionView:didSelectTag:atIndex:)]) { + if (_onTapBlankArea) { + _onTapBlankArea(tapPointInCollectionView); + } + if (_onTapAllArea) { + _onTapAllArea(tapPointInCollectionView); + } + return; + } + + CGPoint tapPointInScrollView = [tapGesture locationInView:_containerView]; + BOOL hasLocatedToTag = NO; + + for (NSUInteger i = 0; i < [self.dataSource numberOfTagsInTagCollectionView:self]; i++) { + UIView *tagView = [self.dataSource tagCollectionView:self tagViewForIndex:i]; + if (CGRectContainsPoint(tagView.frame, tapPointInScrollView) && !tagView.isHidden) { + hasLocatedToTag = YES; + if ([self.delegate respondsToSelector:@selector(tagCollectionView:shouldSelectTag:atIndex:)]) { + if ([self.delegate tagCollectionView:self shouldSelectTag:tagView atIndex:i]) { + [self.delegate tagCollectionView:self didSelectTag:tagView atIndex:i]; + } + } else { + [self.delegate tagCollectionView:self didSelectTag:tagView atIndex:i]; + } + } + } + + if (!hasLocatedToTag) { + if (_onTapBlankArea) { + _onTapBlankArea(tapPointInCollectionView); + } + } + if (_onTapAllArea) { + _onTapAllArea(tapPointInCollectionView); + } +} + +#pragma mark - Override + +- (void)layoutSubviews { + [super layoutSubviews]; + + if (!CGRectEqualToRect(_scrollView.frame, self.bounds)) { + _scrollView.frame = self.bounds; + [self setNeedsLayoutTagViews]; + [self layoutTagViews]; + _containerView.frame = (CGRect){CGPointZero, _scrollView.contentSize}; + } + [self layoutTagViews]; +} + +- (CGSize)intrinsicContentSize { + return _scrollView.contentSize; +} + +- (CGSize)sizeThatFits:(CGSize)size { + return self.contentSize; +} + +#pragma mark - Layout + +- (void)layoutTagViews { + if (!_needsLayoutTagViews || ![self isDelegateAndDataSourceValid]) { + return; + } + + if (_scrollDirection == TTGTagCollectionScrollDirectionVertical) { + [self layoutTagViewsForVerticalDirection]; + } else { + [self layoutTagViewsForHorizontalDirection]; + } + + _needsLayoutTagViews = NO; + [self invalidateIntrinsicContentSize]; +} + +- (void)layoutTagViewsForVerticalDirection { + NSUInteger count = [_dataSource numberOfTagsInTagCollectionView:self]; + NSUInteger currentLineTagsCount = 0; + CGFloat totalWidth = (_manualCalculateHeight && _preferredMaxLayoutWidth > 0) ? _preferredMaxLayoutWidth : CGRectGetWidth(self.bounds); + CGFloat maxLineWidth = totalWidth - _contentInset.left - _contentInset.right; + CGFloat currentLineX = 0; + CGFloat currentLineMaxHeight = 0; + + NSMutableArray *eachLineMaxHeightNumbers = [NSMutableArray new]; + NSMutableArray *eachLineWidthNumbers = [NSMutableArray new]; + NSMutableArray *eachLineTagCountNumbers = [NSMutableArray new]; + + NSMutableArray *> *eachLineTagIndexs = [NSMutableArray new]; + NSMutableArray *tmpTagIndexNumbers = [NSMutableArray new]; + + // Get each line max height ,width and tag count + for (NSUInteger i = 0; i < count; i++) { + CGSize tagSize = [_delegate tagCollectionView:self sizeForTagAtIndex:i]; + + if (currentLineX + tagSize.width > maxLineWidth && tmpTagIndexNumbers.count > 0) { + // New Line + [eachLineMaxHeightNumbers addObject:@(currentLineMaxHeight)]; + [eachLineWidthNumbers addObject:@(currentLineX - _horizontalSpacing)]; + [eachLineTagCountNumbers addObject:@(currentLineTagsCount)]; + [eachLineTagIndexs addObject:tmpTagIndexNumbers]; + tmpTagIndexNumbers = [NSMutableArray new]; + currentLineTagsCount = 0; + currentLineMaxHeight = 0; + currentLineX = 0; + } + + // Line limit + if (_numberOfLines != 0) { + UIView *tagView = [_dataSource tagCollectionView:self tagViewForIndex:i]; + tagView.hidden = eachLineWidthNumbers.count >= _numberOfLines; + } + + currentLineX += tagSize.width + _horizontalSpacing; + currentLineTagsCount += 1; + currentLineMaxHeight = MAX(tagSize.height, currentLineMaxHeight); + [tmpTagIndexNumbers addObject:@(i)]; + } + + // Add last + [eachLineMaxHeightNumbers addObject:@(currentLineMaxHeight)]; + [eachLineWidthNumbers addObject:@(currentLineX - _horizontalSpacing)]; + [eachLineTagCountNumbers addObject:@(currentLineTagsCount)]; + [eachLineTagIndexs addObject:tmpTagIndexNumbers]; + + // Actual number of lines + _actualNumberOfLines = eachLineTagCountNumbers.count; + + // Line limit + if (_numberOfLines != 0) { + eachLineMaxHeightNumbers = [[eachLineMaxHeightNumbers subarrayWithRange:NSMakeRange(0, MIN(eachLineMaxHeightNumbers.count, _numberOfLines))] mutableCopy]; + eachLineWidthNumbers = [[eachLineWidthNumbers subarrayWithRange:NSMakeRange(0, MIN(eachLineWidthNumbers.count, _numberOfLines))] mutableCopy]; + eachLineTagCountNumbers = [[eachLineTagCountNumbers subarrayWithRange:NSMakeRange(0, MIN(eachLineTagCountNumbers.count, _numberOfLines))] mutableCopy]; + eachLineTagIndexs = [[eachLineTagIndexs subarrayWithRange:NSMakeRange(0, MIN(eachLineTagIndexs.count, _numberOfLines))] mutableCopy]; + } + + // Prepare + [self layoutEachLineTagsWithMaxLineWidth:maxLineWidth + numberOfLines:eachLineTagCountNumbers.count + eachLineTagIndexs:eachLineTagIndexs + eachLineTagCount:eachLineTagCountNumbers + eachLineWidth:eachLineWidthNumbers + eachLineMaxHeight:eachLineMaxHeightNumbers]; +} + +- (void)layoutTagViewsForHorizontalDirection { + NSInteger count = [_dataSource numberOfTagsInTagCollectionView:self]; + _numberOfLines = _numberOfLines == 0 ? 1 : _numberOfLines; + + CGFloat maxLineWidth = 0; + + NSMutableArray *eachLineMaxHeightNumbers = [NSMutableArray new]; + NSMutableArray *eachLineWidthNumbers = [NSMutableArray new]; + NSMutableArray *eachLineTagCountNumbers = [NSMutableArray new]; + + NSMutableArray *> *eachLineTagIndexs = [NSMutableArray new]; + + // Init each line + for (NSInteger currentLine = 0; currentLine < _numberOfLines; currentLine++) { + [eachLineMaxHeightNumbers addObject:@0]; + [eachLineWidthNumbers addObject:@0]; + [eachLineTagCountNumbers addObject:@0]; + [eachLineTagIndexs addObject:[NSMutableArray new]]; + } + + // Add tags + for (NSUInteger tagIndex = 0; tagIndex < count; tagIndex++) { + NSUInteger currentLine = tagIndex % _numberOfLines; + + NSUInteger currentLineTagsCount = eachLineTagCountNumbers[currentLine].unsignedIntegerValue; + CGFloat currentLineMaxHeight = eachLineMaxHeightNumbers[currentLine].floatValue; + CGFloat currentLineX = eachLineWidthNumbers[currentLine].floatValue; + NSMutableArray *currentLineTagIndexNumbers = eachLineTagIndexs[currentLine]; + + CGSize tagSize = [_delegate tagCollectionView:self sizeForTagAtIndex:tagIndex]; + currentLineX += tagSize.width + _horizontalSpacing; + currentLineMaxHeight = MAX(tagSize.height, currentLineMaxHeight); + currentLineTagsCount += 1; + [currentLineTagIndexNumbers addObject:@(tagIndex)]; + + eachLineTagCountNumbers[currentLine] = @(currentLineTagsCount); + eachLineMaxHeightNumbers[currentLine] = @(currentLineMaxHeight); + eachLineWidthNumbers[currentLine] = @(currentLineX); + eachLineTagIndexs[currentLine] = currentLineTagIndexNumbers; + } + + // Remove extra space + for (NSInteger currentLine = 0; currentLine < _numberOfLines; currentLine++) { + CGFloat currentLineWidth = eachLineWidthNumbers[currentLine].floatValue; + currentLineWidth -= _horizontalSpacing; + eachLineWidthNumbers[currentLine] = @(currentLineWidth); + + maxLineWidth = MAX(currentLineWidth, maxLineWidth); + } + + // Prepare + [self layoutEachLineTagsWithMaxLineWidth:maxLineWidth + numberOfLines:eachLineTagCountNumbers.count + eachLineTagIndexs:eachLineTagIndexs + eachLineTagCount:eachLineTagCountNumbers + eachLineWidth:eachLineWidthNumbers + eachLineMaxHeight:eachLineMaxHeightNumbers]; +} + +- (void)layoutEachLineTagsWithMaxLineWidth:(CGFloat)maxLineWidth + numberOfLines:(NSUInteger)numberOfLines + eachLineTagIndexs:(NSArray *> *)eachLineTagIndexs + eachLineTagCount:(NSArray *)eachLineTagCount + eachLineWidth:(NSArray *)eachLineWidth + eachLineMaxHeight:(NSArray *)eachLineMaxHeight { + + CGFloat currentYBase = _contentInset.top; + + for (NSUInteger currentLine = 0; currentLine < numberOfLines; currentLine++) { + CGFloat currentLineMaxHeight = eachLineMaxHeight[currentLine].floatValue; + CGFloat currentLineWidth = eachLineWidth[currentLine].floatValue; + CGFloat currentLineTagsCount = eachLineTagCount[currentLine].unsignedIntegerValue; + + // Alignment x offset + CGFloat currentLineXOffset = 0; + CGFloat currentLineAdditionWidth = 0; + CGFloat acturalHorizontalSpacing = _horizontalSpacing; + __block CGFloat currentLineX = 0; + + switch (_alignment) { + case TTGTagCollectionAlignmentLeft: + currentLineXOffset = _contentInset.left; + break; + case TTGTagCollectionAlignmentCenter: + currentLineXOffset = (maxLineWidth - currentLineWidth) / 2 + _contentInset.left; + break; + case TTGTagCollectionAlignmentRight: + currentLineXOffset = maxLineWidth - currentLineWidth + _contentInset.left; + break; + case TTGTagCollectionAlignmentFillByExpandingSpace: + currentLineXOffset = _contentInset.left; + acturalHorizontalSpacing = _horizontalSpacing + + (maxLineWidth - currentLineWidth) / (CGFloat)(currentLineTagsCount - 1); + currentLineWidth = maxLineWidth; + break; + case TTGTagCollectionAlignmentFillByExpandingWidth: + case TTGTagCollectionAlignmentFillByExpandingWidthExceptLastLine: + currentLineXOffset = _contentInset.left; + currentLineAdditionWidth = (maxLineWidth - currentLineWidth) / (CGFloat)currentLineTagsCount; + currentLineWidth = maxLineWidth; + + if (_alignment == TTGTagCollectionAlignmentFillByExpandingWidthExceptLastLine && + currentLine == numberOfLines - 1 && + numberOfLines != 1) { + // Reset last line width for TTGTagCollectionAlignmentFillByExpandingWidthExceptLastLine + currentLineAdditionWidth = 0; + } + + break; + } + + // Current line + [eachLineTagIndexs[currentLine] enumerateObjectsUsingBlock:^(NSNumber * _Nonnull tagIndexNumber, NSUInteger idx, BOOL * _Nonnull stop) { + NSUInteger tagIndex = tagIndexNumber.unsignedIntegerValue; + + UIView *tagView = [self.dataSource tagCollectionView:self tagViewForIndex:tagIndex]; + CGSize tagSize = [self.delegate tagCollectionView:self sizeForTagAtIndex:tagIndex]; + + CGPoint origin; + origin.x = currentLineXOffset + currentLineX; + origin.y = currentYBase + (currentLineMaxHeight - tagSize.height) / 2; + + tagSize.width += currentLineAdditionWidth; + if (self.scrollDirection == TTGTagCollectionScrollDirectionVertical && tagSize.width > maxLineWidth) { + tagSize.width = maxLineWidth; + } + + tagView.hidden = NO; + tagView.frame = (CGRect){origin, tagSize}; + + currentLineX += tagSize.width + acturalHorizontalSpacing; + }]; + + // Next line + currentYBase += currentLineMaxHeight + _verticalSpacing; + } + + // Content size + maxLineWidth += _contentInset.right + _contentInset.left; + CGSize contentSize = CGSizeMake(maxLineWidth, currentYBase - _verticalSpacing + _contentInset.bottom); + if (!CGSizeEqualToSize(contentSize, _scrollView.contentSize)) { + _scrollView.contentSize = contentSize; + _containerView.frame = (CGRect){CGPointZero, contentSize}; + + if ([self.delegate respondsToSelector:@selector(tagCollectionView:updateContentSize:)]) { + [self.delegate tagCollectionView:self updateContentSize:contentSize]; + } + } +} + +- (void)setNeedsLayoutTagViews { + _needsLayoutTagViews = YES; +} + +#pragma mark - Check delegate and dataSource + +- (BOOL)isDelegateAndDataSourceValid { + BOOL isValid = _delegate != nil && _dataSource != nil; + isValid = isValid && [_delegate respondsToSelector:@selector(tagCollectionView:sizeForTagAtIndex:)]; + isValid = isValid && [_dataSource respondsToSelector:@selector(tagCollectionView:tagViewForIndex:)]; + isValid = isValid && [_dataSource respondsToSelector:@selector(numberOfTagsInTagCollectionView:)]; + return isValid; +} + +#pragma mark - Setter Getter + +- (UIScrollView *)scrollView { + return _scrollView; +} + +- (void)setScrollDirection:(TTGTagCollectionScrollDirection)scrollDirection { + _scrollDirection = scrollDirection; + [self setNeedsLayoutTagViews]; +} + +- (void)setAlignment:(TTGTagCollectionAlignment)alignment { + _alignment = alignment; + [self setNeedsLayoutTagViews]; +} + +- (void)setNumberOfLines:(NSUInteger)numberOfLines { + _numberOfLines = numberOfLines; + [self setNeedsLayoutTagViews]; +} + +- (NSUInteger)actualNumberOfLines { + if (_scrollDirection == TTGTagCollectionScrollDirectionHorizontal) { + return _numberOfLines; + } else { + return _actualNumberOfLines; + } +} + +- (void)setHorizontalSpacing:(CGFloat)horizontalSpacing { + _horizontalSpacing = horizontalSpacing; + [self setNeedsLayoutTagViews]; +} + +- (void)setVerticalSpacing:(CGFloat)verticalSpacing { + _verticalSpacing = verticalSpacing; + [self setNeedsLayoutTagViews]; +} + +- (void)setContentInset:(UIEdgeInsets)contentInset { + _contentInset = contentInset; + [self setNeedsLayoutTagViews]; +} + +- (CGSize)contentSize { + [self layoutTagViews]; + return _scrollView.contentSize; +} + +- (void)setManualCalculateHeight:(BOOL)manualCalculateHeight { + _manualCalculateHeight = manualCalculateHeight; + [self setNeedsLayoutTagViews]; +} + +- (void)setPreferredMaxLayoutWidth:(CGFloat)preferredMaxLayoutWidth { + _preferredMaxLayoutWidth = preferredMaxLayoutWidth; + [self setNeedsLayoutTagViews]; +} + +- (void)setShowsHorizontalScrollIndicator:(BOOL)showsHorizontalScrollIndicator { + _scrollView.showsHorizontalScrollIndicator = showsHorizontalScrollIndicator; +} + +- (BOOL)showsHorizontalScrollIndicator { + return _scrollView.showsHorizontalScrollIndicator; +} + +- (void)setShowsVerticalScrollIndicator:(BOOL)showsVerticalScrollIndicator { + _scrollView.showsVerticalScrollIndicator = showsVerticalScrollIndicator; +} + +- (BOOL)showsVerticalScrollIndicator { + return _scrollView.showsVerticalScrollIndicator; +} + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTag.h b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTag.h new file mode 100644 index 0000000..9f791f4 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTag.h @@ -0,0 +1,106 @@ +// +// TTGTextTag.h +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import +#import + +#import "TTGTextTagStyle.h" +#import "TTGTextTagContent.h" + +@interface TTGTextTag : NSObject + +/// ID +@property (nonatomic, assign, readonly) NSUInteger tagId; // Auto increase. The only identifier and main key for a tag + +/// Attachment object. You can use this to bind any object you want to each tag. +@property (nonatomic, strong) id _Nullable attachment; + +/// Normal state content and style +@property (nonatomic, copy) TTGTextTagContent * _Nonnull content; +@property (nonatomic, copy) TTGTextTagStyle * _Nonnull style; + +/// Selected state content and style +@property (nonatomic, copy) TTGTextTagContent * _Nullable selectedContent; +@property (nonatomic, copy) TTGTextTagStyle * _Nullable selectedStyle; + +/// Selection state +@property (nonatomic, assign) BOOL selected; + +/// Init + +/** + Init with single content and style + + @param content content for both normal and selection state. + @param style style for both normal and selection state. + @return instance + */ +- (instancetype _Nonnull)initWithContent:(TTGTextTagContent *_Nonnull)content + style:(TTGTextTagStyle *_Nonnull)style; + +/** + Init with different content and style + + @param content content for normal state + @param style style for normal state + @param selectedContent content for selection state + @param selectedStyle style for selection state + @return instance + */ +- (instancetype _Nonnull)initWithContent:(TTGTextTagContent *_Nonnull)content + style:(TTGTextTagStyle *_Nonnull)style + selectedContent:(TTGTextTagContent *_Nullable)selectedContent + selectedStyle:(TTGTextTagStyle *_Nullable)selectedStyle; + +/** + Tag with single content and style + + @param content content for both normal and selection state. + @param style style for both normal and selection state. + @return instance + */ ++ (instancetype _Nonnull)tagWithContent:(TTGTextTagContent *_Nonnull)content + style:(TTGTextTagStyle *_Nonnull)style; + +/** + Tag with different content and style + + @param content content for normal state + @param style style for normal state + @param selectedContent content for selection state + @param selectedStyle style for selection state + @return instance + */ ++ (instancetype _Nonnull)tagWithContent:(TTGTextTagContent *_Nonnull)content + style:(TTGTextTagStyle *_Nonnull)style + selectedContent:(TTGTextTagContent *_Nullable)selectedContent + selectedStyle:(TTGTextTagStyle *_Nullable)selectedStyle; + +/** + Get current state rightful content + + @return content + */ +- (TTGTextTagContent *_Nonnull)getRightfulContent; + +/** + Get current state rightful style + + @return style + */ +- (TTGTextTagStyle *_Nonnull)getRightfulStyle; + +/// Base system methods +- (BOOL)isEqual:(id _Nullable)other; +- (BOOL)isEqualToTag:(TTGTextTag *_Nullable)tag; +- (NSUInteger)hash; + +/// Copy +- (id _Nonnull)copyWithZone:(NSZone *_Nullable)zone; + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTag.m b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTag.m new file mode 100644 index 0000000..a9e008d --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTag.m @@ -0,0 +1,123 @@ +// +// TTGTextTag.m +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import "TTGTextTag.h" +#import "TTGTextTagStringContent.h" + +static NSUInteger TTGTextTagAutoIncreasedId = 0; + +@implementation TTGTextTag + +- (instancetype)initWithContent:(TTGTextTagContent *)content + style:(TTGTextTagStyle *)style { + self = [self init]; + if (self) { + self.content = content; + self.style = style; + } + return self; +} + +- (instancetype)initWithContent:(TTGTextTagContent *)content + style:(TTGTextTagStyle *)style + selectedContent:(TTGTextTagContent *)selectedContent + selectedStyle:(TTGTextTagStyle *)selectedStyle { + self = [self init]; + if (self) { + self.content = content; + self.style = style; + self.selectedContent = selectedContent; + self.selectedStyle = selectedStyle; + } + return self; +} + ++ (instancetype)tagWithContent:(TTGTextTagContent *)content + style:(TTGTextTagStyle *)style { + return [[self alloc] initWithContent:content style:style]; +} + ++ (instancetype)tagWithContent:(TTGTextTagContent *)content + style:(TTGTextTagStyle *)style + selectedContent:(TTGTextTagContent *)selectedContent + selectedStyle:(TTGTextTagStyle *)selectedStyle { + return [[self alloc] initWithContent:content + style:style + selectedContent:selectedContent + selectedStyle:selectedStyle]; +} + +- (instancetype)init { + self = [super init]; + if (self) { + _tagId = TTGTextTagAutoIncreasedId++; + _attachment = nil; + } + return self; +} + +- (TTGTextTagContent *)selectedContent { + if (_selectedContent == nil) { + _selectedContent = [_content copy]; + } + return _selectedContent; +} + +- (TTGTextTagStyle *)selectedStyle { + if (_selectedStyle == nil) { + _selectedStyle = [_style copy]; + } + return _selectedStyle; +} + +- (TTGTextTagContent *)getRightfulContent { + return _selected ? self.selectedContent : self.content; +} + +- (TTGTextTagStyle *)getRightfulStyle { + return _selected ? self.selectedStyle : self.style; +} + +- (BOOL)isEqual:(id)other { + if (other == self) + return YES; + if (!other || ![[other class] isEqual:[self class]]) + return NO; + + return [self isEqualToTag:other]; +} + +- (BOOL)isEqualToTag:(TTGTextTag *)tag { + if (self == tag) + return YES; + if (tag == nil) + return NO; + if (self.tagId != tag.tagId) + return NO; + return YES; +} + +- (NSUInteger)hash { + return (NSUInteger)self.tagId; +} + +- (id)copyWithZone:(nullable NSZone *)zone { + TTGTextTag *copy = (TTGTextTag *)[[[self class] allocWithZone:zone] init]; + if (copy != nil) { + copy->_tagId = TTGTextTagAutoIncreasedId++; + copy.attachment = self.attachment; + copy.content = self.content; + copy.style = self.style; + copy.selected = self.selected; + copy.selectedContent = self.selectedContent; + copy.selectedStyle = self.selectedStyle; + } + return copy; +} + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagAttributedStringContent.h b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagAttributedStringContent.h new file mode 100644 index 0000000..1d62aae --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagAttributedStringContent.h @@ -0,0 +1,29 @@ +// +// TTGTextTagAttributedStringContent.h +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import "TTGTextTagContent.h" + +/** + Rich text content for tag + */ +@interface TTGTextTagAttributedStringContent : TTGTextTagContent + +/// Attributed text +@property (nonatomic, copy) NSAttributedString * _Nonnull attributedText; + +/// Init with rich text +- (instancetype _Nonnull)initWithAttributedText:(NSAttributedString *_Nonnull)attributedText; + +/// Content with rich text ++ (instancetype _Nonnull)contentWithAttributedText:(NSAttributedString *_Nonnull)attributedText; + +/// Base system methods +- (id _Nonnull)copyWithZone:(NSZone *_Nullable)zone; +- (NSString *_Nonnull)description; + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagAttributedStringContent.m b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagAttributedStringContent.m new file mode 100644 index 0000000..3a46e3e --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagAttributedStringContent.m @@ -0,0 +1,48 @@ +// +// TTGTextTagAttributedStringContent.m +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import "TTGTextTagAttributedStringContent.h" + +@implementation TTGTextTagAttributedStringContent + +- (instancetype)initWithAttributedText:(NSAttributedString *)attributedText { + self = [super init]; + if (self) { + self.attributedText = attributedText; + } + return self; +} + ++ (instancetype)contentWithAttributedText:(NSAttributedString *)attributedText { + return [[self alloc] initWithAttributedText:attributedText]; +} + +- (NSAttributedString *)getContentAttributedString { + return self.attributedText; +} + +- (NSAttributedString *)attributedText { + return _attributedText ?: [NSAttributedString new]; +} + +- (id)copyWithZone:(NSZone *)zone { + TTGTextTagAttributedStringContent *copy = (TTGTextTagAttributedStringContent *)[super copyWithZone:zone]; + if (copy != nil) { + copy.attributedText = self.attributedText; + } + return copy; +} + +- (NSString *)description { + NSMutableString *description = [NSMutableString stringWithFormat:@"<%@: ", NSStringFromClass([self class])]; + [description appendFormat:@"self.attributedText=%@", self.attributedText]; + [description appendString:@">"]; + return description; +} + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagCollectionView.h b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagCollectionView.h new file mode 100644 index 0000000..bfe6af0 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagCollectionView.h @@ -0,0 +1,124 @@ +// +// TTGTextTagCollectionView.h +// Pods +// +// Created by zekunyan on 15/12/26. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import + +#import "TTGTagCollectionView.h" +#import "TTGTextTag.h" +#import "TTGTextTagStringContent.h" +#import "TTGTextTagAttributedStringContent.h" + +/** + Highly useful for text tag display. + */ + +@class TTGTextTagCollectionView; + +/// Delegate +@protocol TTGTextTagCollectionViewDelegate +@optional + +- (BOOL)textTagCollectionView:(TTGTextTagCollectionView *)textTagCollectionView + canTapTag:(TTGTextTag *)tag + atIndex:(NSUInteger)index; + +- (void)textTagCollectionView:(TTGTextTagCollectionView *)textTagCollectionView + didTapTag:(TTGTextTag *)tag + atIndex:(NSUInteger)index; + +- (void)textTagCollectionView:(TTGTextTagCollectionView *)textTagCollectionView + updateContentSize:(CGSize)contentSize; +@end + +/// Main Class +@interface TTGTextTagCollectionView : UIView +/// Delegate +@property (weak, nonatomic) id delegate; + +/// Inside scrollView +@property (nonatomic, strong, readonly) UIScrollView *scrollView; + +/// Define if the tag can be selected. +@property (assign, nonatomic) BOOL enableTagSelection; + +/// Tags scroll direction, default is vertical. +@property (nonatomic, assign) TTGTagCollectionScrollDirection scrollDirection; + +/// Tags layout alignment, default is left. +@property (nonatomic, assign) TTGTagCollectionAlignment alignment; + +/// Number of lines. 0 means no limit, default is 0 for vertical and 1 for horizontal. +@property (nonatomic, assign) NSUInteger numberOfLines; +/// The real number of lines ignoring the numberOfLines value +@property (nonatomic, assign, readonly) NSUInteger actualNumberOfLines; + +/// Tag selection limit, default is 0, means no limit +@property (nonatomic, assign) NSUInteger selectionLimit; + +/// Horizontal and vertical space between tags, default is 4. +@property (assign, nonatomic) CGFloat horizontalSpacing; +@property (assign, nonatomic) CGFloat verticalSpacing; + +/// Content inset, like padding, default is UIEdgeInsetsMake(2, 2, 2, 2). +@property (nonatomic, assign) UIEdgeInsets contentInset; + +/// The true tags content size, readonly +@property (nonatomic, assign, readonly) CGSize contentSize; + +/// Manual content height +/// Default = NO, set will update content +@property (nonatomic, assign) BOOL manualCalculateHeight; +/// Default = 0, set will update content +@property (nonatomic, assign) CGFloat preferredMaxLayoutWidth; + +/// Scroll indicator +@property (nonatomic, assign) BOOL showsHorizontalScrollIndicator; +@property (nonatomic, assign) BOOL showsVerticalScrollIndicator; + +/// Tap blank area callback +@property (nonatomic, copy) void (^onTapBlankArea)(CGPoint location); +/// Tap all area callback +@property (nonatomic, copy) void (^onTapAllArea)(CGPoint location); + +/// Reload +- (void)reload; + +/// Add +- (void)addTag:(TTGTextTag *)tag; +- (void)addTags:(NSArray *)tags; + +/// Insert +- (void)insertTag:(TTGTextTag *)tag atIndex:(NSUInteger)index; +- (void)insertTags:(NSArray *)tags atIndex:(NSUInteger)index; + +/// Update +- (void)updateTagAtIndex:(NSUInteger)index selected:(BOOL)selected; +- (void)updateTagAtIndex:(NSUInteger)index withNewTag:(TTGTextTag *)tag; + +/// Remove +- (void)removeTag:(TTGTextTag *)tag; +- (void)removeTagById:(NSUInteger)tagId; +- (void)removeTagAtIndex:(NSUInteger)index; +- (void)removeAllTags; + +/// Get tag +- (TTGTextTag *)getTagAtIndex:(NSUInteger)index; +- (NSArray *)getTagsInRange:(NSRange)range; + +/// Get all +- (NSArray *)allTags; +- (NSArray *)allSelectedTags; +- (NSArray *)allNotSelectedTags; + +/** + * Returns the index of the tag located at the specified point. + * If item at point is not found, returns NSNotFound. + */ +- (NSInteger)indexOfTagAtPoint:(CGPoint)point; + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagCollectionView.m b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagCollectionView.m new file mode 100644 index 0000000..b1ef6a2 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagCollectionView.m @@ -0,0 +1,639 @@ +// +// TTGTextTagCollectionView.m +// Pods +// +// Created by zekunyan on 15/12/26. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import "TTGTextTagCollectionView.h" + +#pragma mark - TTGTextTagGradientLabel + +@interface TTGTextTagGradientLabel : UILabel +@end + +@implementation TTGTextTagGradientLabel ++ (Class)layerClass { + return [CAGradientLayer class]; +} +@end + +#pragma mark - TTGTextTagLabel + +@interface TTGTextTagComponentView : UIView +@property (nonatomic, strong) TTGTextTag *config; +@property (nonatomic, strong) TTGTextTagGradientLabel *label; +@property (nonatomic, strong) CAShapeLayer *borderLayer; + +- (BOOL)isEqual:(id)other; + +- (BOOL)isEqualToComponentView:(TTGTextTagComponentView *)label; + +- (NSUInteger)hash; +@end + +@implementation TTGTextTagComponentView + +- (instancetype)initWithFrame:(CGRect)frame { + self = [super initWithFrame:frame]; + if (self) { + [self commonInit]; + } + return self; +} + +- (void)commonInit { + _label = [[TTGTextTagGradientLabel alloc] initWithFrame:self.bounds]; + _label.textAlignment = NSTextAlignmentCenter; + _label.userInteractionEnabled = YES; + [self addSubview:_label]; +} + +#pragma mark - Layout + +- (void)layoutSubviews { + [super layoutSubviews]; + + // Update frame + _label.frame = self.bounds; + + // Get new path + UIBezierPath *path = [self getNewPath]; + // Mask + [self updateMaskWithPath:path]; + // Border + [self updateBorderWithPath:path]; + // Shadow + [self updateShadowWithPath:path]; +} + +#pragma mark - intrinsicContentSize + +- (CGSize)intrinsicContentSize { + return _label.intrinsicContentSize; +} + +#pragma mark - Apply config + +- (void)updateContent { + // Content + _label.attributedText = _config.getRightfulContent.getContentAttributedString; +} + +- (void)updateContentStyle { + // Normal background + _label.backgroundColor = _config.getRightfulStyle.backgroundColor; + + // Text alignment + _label.textAlignment = _config.getRightfulStyle.textAlignment; + + // Gradient background + if (_config.getRightfulStyle.enableGradientBackground) { + _label.backgroundColor = [UIColor clearColor]; + ((CAGradientLayer *)_label.layer).colors = @[(id)_config.getRightfulStyle.gradientBackgroundStartColor.CGColor, + (id)_config.getRightfulStyle.gradientBackgroundEndColor.CGColor]; + ((CAGradientLayer *)_label.layer).startPoint = _config.getRightfulStyle.gradientBackgroundStartPoint; + ((CAGradientLayer *)_label.layer).endPoint = _config.getRightfulStyle.gradientBackgroundEndPoint; + } +} + +- (void)updateFrameWithMaxSize:(CGSize)maxSize { + [_label sizeToFit]; + + CGSize finalSize = _label.frame.size; + + finalSize.width += _config.getRightfulStyle.extraSpace.width; + finalSize.height += _config.getRightfulStyle.extraSpace.height; + + if (_config.getRightfulStyle.maxWidth > 0 && finalSize.width > _config.getRightfulStyle.maxWidth) { + finalSize.width = _config.getRightfulStyle.maxWidth; + } + if (_config.getRightfulStyle.minWidth > 0 && finalSize.width < _config.getRightfulStyle.minWidth) { + finalSize.width = _config.getRightfulStyle.minWidth; + } + if (_config.getRightfulStyle.exactWidth > 0) { + finalSize.width = _config.getRightfulStyle.exactWidth; + } + if (_config.getRightfulStyle.exactHeight > 0) { + finalSize.height = _config.getRightfulStyle.exactHeight; + } + + if (maxSize.width > 0) { + finalSize.width = MIN(maxSize.width, finalSize.width); + } + if (maxSize.height > 0) { + finalSize.height = MIN(maxSize.height, finalSize.height); + } + + CGRect frame = self.frame; + frame.size = finalSize; + self.frame = frame; + _label.frame = self.bounds; +} + +- (void)updateShadowWithPath:(UIBezierPath *)path { + self.layer.shadowColor = _config.getRightfulStyle.shadowColor.CGColor; + self.layer.shadowOffset = _config.getRightfulStyle.shadowOffset; + self.layer.shadowRadius = _config.getRightfulStyle.shadowRadius; + self.layer.shadowOpacity = (float)_config.getRightfulStyle.shadowOpacity; + self.layer.shadowPath = path.CGPath; + self.layer.shouldRasterize = YES; + [self.layer setRasterizationScale:[[UIScreen mainScreen] scale]]; +} + +- (void)updateMaskWithPath:(UIBezierPath *)path { + CAShapeLayer *maskLayer = [CAShapeLayer layer]; + maskLayer.frame = self.bounds; + maskLayer.path = path.CGPath; + _label.layer.mask = maskLayer; +} + +- (void)updateBorderWithPath:(UIBezierPath *)path { + if (!_borderLayer) { + _borderLayer = [CAShapeLayer new]; + } + [_borderLayer removeFromSuperlayer]; + _borderLayer.frame = self.bounds; + _borderLayer.path = path.CGPath; + _borderLayer.fillColor = nil; + _borderLayer.opacity = 1; + _borderLayer.lineWidth = _config.getRightfulStyle.borderWidth; + _borderLayer.strokeColor = _config.getRightfulStyle.borderColor.CGColor; + _borderLayer.lineCap = kCALineCapRound; + _borderLayer.lineJoin = kCALineJoinRound; + [self.layer addSublayer:_borderLayer]; +} + +- (UIBezierPath *)getNewPath { + // Round corner + UIRectCorner corners = (UIRectCorner)-1; + if (_config.getRightfulStyle.cornerTopLeft) { + corners = UIRectCornerTopLeft; + } + if (_config.getRightfulStyle.cornerTopRight) { + if (corners == -1) { + corners = UIRectCornerTopRight; + } else { + corners = corners | UIRectCornerTopRight; + } + } + if (_config.getRightfulStyle.cornerBottomLeft) { + if (corners == -1) { + corners = UIRectCornerBottomLeft; + } else { + corners = corners | UIRectCornerBottomLeft; + } + } + if (_config.getRightfulStyle.cornerBottomRight) { + if (corners == -1) { + corners = UIRectCornerBottomRight; + } else { + corners = corners | UIRectCornerBottomRight; + } + } + + // Corner radius + CGFloat currentCornerRadius = _config.getRightfulStyle.cornerRadius; + + // Path + UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds + byRoundingCorners:corners + cornerRadii:CGSizeMake(currentCornerRadius, currentCornerRadius)]; + return path; +} + +#pragma mark - Base + +- (BOOL)isEqual:(id)other { + if (other == self) + return YES; + if (!other || ![[other class] isEqual:[self class]]) + return NO; + return [self isEqualToComponentView:other]; +} + +- (BOOL)isEqualToComponentView:(TTGTextTagComponentView *)label { + if (self == label) + return YES; + if (label == nil) + return NO; + if (self.config != label.config && ![self.config isEqualToTag:label.config]) + return NO; + return YES; +} + +- (NSUInteger)hash { + return [self.config hash]; +} + +@end + +#pragma mark - TTGTextTagCollectionView + +@interface TTGTextTagCollectionView () +@property (strong, atomic) NSMutableArray *tagLabels; +@property (strong, nonatomic) TTGTagCollectionView *tagCollectionView; +@end + +@implementation TTGTextTagCollectionView + +#pragma mark - Init + +- (instancetype)initWithFrame:(CGRect)frame { + self = [super initWithFrame:frame]; + if (self) { + [self commonInit]; + } + return self; +} + +- (instancetype)initWithCoder:(NSCoder *)coder { + self = [super initWithCoder:coder]; + if (self) { + [self commonInit]; + } + return self; +} + +- (void)commonInit { + if (_tagCollectionView) { + return; + } + + _enableTagSelection = YES; + _tagLabels = [NSMutableArray new]; + + _tagCollectionView = [[TTGTagCollectionView alloc] initWithFrame:self.bounds]; + _tagCollectionView.delegate = self; + _tagCollectionView.dataSource = self; + _tagCollectionView.horizontalSpacing = 8; + _tagCollectionView.verticalSpacing = 8; + [self addSubview:_tagCollectionView]; +} + +#pragma mark - Override + +- (CGSize)intrinsicContentSize { + return [_tagCollectionView intrinsicContentSize]; +} + +- (void)layoutSubviews { + [super layoutSubviews]; + if (!CGRectEqualToRect(_tagCollectionView.frame, self.bounds)) { + [self updateAllLabelStyleAndFrame]; + _tagCollectionView.frame = self.bounds; + [_tagCollectionView setNeedsLayout]; + [_tagCollectionView layoutIfNeeded]; + [self invalidateIntrinsicContentSize]; + } +} + +- (CGSize)sizeThatFits:(CGSize)size { + return self.contentSize; +} + +#pragma mark - Public methods + +- (void)reload { + [self updateAllLabelStyleAndFrame]; + [_tagCollectionView reload]; + [self invalidateIntrinsicContentSize]; +} + +- (void)addTag:(TTGTextTag *)tag { + [self insertTag:tag atIndex:_tagLabels.count]; +} + +- (void)addTags:(NSArray *)tags { + [self insertTags:tags atIndex:_tagLabels.count]; +} + +- (void)insertTag:(TTGTextTag *)tag atIndex:(NSUInteger)index { + if ([tag isKindOfClass:[TTGTextTag class]]) { + [self insertTags:@[tag] atIndex:index]; + } +} + +- (void)insertTags:(NSArray *)tags atIndex:(NSUInteger)index { + if (![tags isKindOfClass:[NSArray class]] || index > _tagLabels.count || tags.count == 0) { + return; + } + + NSMutableArray *newTagLabels = [NSMutableArray new]; + for (TTGTextTag *tag in tags) { + if ([tag isKindOfClass:[TTGTextTag class]]) { + TTGTextTagComponentView *label = [self newLabelWithConfig:tag]; + [newTagLabels addObject:label]; + } + } + [_tagLabels insertObjects:newTagLabels atIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(index, newTagLabels.count)]]; +} + +- (void)removeTag:(TTGTextTag *)tag { + if ([tag isKindOfClass:[TTGTextTag class]]) { + [self removeTagById:tag.tagId]; + } +} + +- (void)removeTagById:(NSUInteger)tagId { + TTGTextTagComponentView *labelToRemove = nil; + for (TTGTextTagComponentView *label in _tagLabels) { + if (label.config.tagId == tagId) { + labelToRemove = label; + } + } + if (labelToRemove) { + [_tagLabels removeObject:labelToRemove]; + } +} + +- (void)removeTagAtIndex:(NSUInteger)index { + if (index >= _tagLabels.count) { + return; + } + [_tagLabels removeObjectAtIndex:index]; +} + +- (void)removeAllTags { + [_tagLabels removeAllObjects]; +} + +- (void)updateTagAtIndex:(NSUInteger)index selected:(BOOL)selected { + TTGTextTag *tag = [self getTagAtIndex:index]; + tag.selected = selected; +} + +- (void)updateTagAtIndex:(NSUInteger)index withNewTag:(TTGTextTag *)tag { + if (index < _tagLabels.count && [tag isKindOfClass:[TTGTextTag class]]) { + TTGTextTagComponentView *label = _tagLabels[index]; + label.config = tag; + [label updateContent]; + } +} + +- (TTGTextTag *)getTagAtIndex:(NSUInteger)index { + if (index < _tagLabels.count) { + return _tagLabels[index].config; + } else { + return nil; + } +} + +- (NSArray *)getTagsInRange:(NSRange)range { + if (NSMaxRange(range) <= _tagLabels.count) { + NSMutableArray *tags = [NSMutableArray new]; + for (TTGTextTagComponentView *label in [_tagLabels subarrayWithRange:range]) { + if (label.config) { + [tags addObject:label.config]; + } + } + return [tags copy]; + } else { + return nil; + } +} + +- (NSArray *)allTags { + NSMutableArray *allTags = [NSMutableArray new]; + + for (TTGTextTagComponentView *label in _tagLabels) { + if (label.config) { + [allTags addObject:label.config]; + } + } + + return [allTags copy]; +} + +- (NSArray *)allSelectedTags { + NSMutableArray *allTags = [NSMutableArray new]; + + for (TTGTextTagComponentView *label in _tagLabels) { + if (label.config.selected) { + [allTags addObject:label.config]; + } + } + + return [allTags copy]; +} + +- (NSArray *)allNotSelectedTags { + NSMutableArray *allTags = [NSMutableArray new]; + + for (TTGTextTagComponentView *label in _tagLabels) { + if (label.config && !label.config.selected) { + [allTags addObject:label.config]; + } + } + + return [allTags copy]; +} + +- (NSInteger)indexOfTagAtPoint:(CGPoint)point { + CGPoint convertedPoint = [self convertPoint:point toView:_tagCollectionView]; + return [_tagCollectionView indexOfTagAt:convertedPoint]; +} + +#pragma mark - TTGTagCollectionViewDataSource + +- (NSUInteger)numberOfTagsInTagCollectionView:(TTGTagCollectionView *)tagCollectionView { + return _tagLabels.count; +} + +- (UIView *)tagCollectionView:(TTGTagCollectionView *)tagCollectionView tagViewForIndex:(NSUInteger)index { + return _tagLabels[index]; +} + +#pragma mark - TTGTagCollectionViewDelegate + +- (BOOL)tagCollectionView:(TTGTagCollectionView *)tagCollectionView shouldSelectTag:(UIView *)tagView atIndex:(NSUInteger)index { + if (_enableTagSelection) { + TTGTextTagComponentView *label = _tagLabels[index]; + + if ([self.delegate respondsToSelector:@selector(textTagCollectionView:canTapTag:atIndex:)]) { + return [self.delegate textTagCollectionView:self canTapTag:label.config atIndex:index]; + } else { + return YES; + } + } else { + return NO; + } +} + +- (void)tagCollectionView:(TTGTagCollectionView *)tagCollectionView didSelectTag:(UIView *)tagView atIndex:(NSUInteger)index { + if (_enableTagSelection) { + TTGTextTagComponentView *label = _tagLabels[index]; + + + if (_selectionLimit == 1) { + for (TTGTextTagComponentView *tag in _tagLabels) { + tag.config.selected = false; + } + } + + label.config.selected = !label.config.selected; + + if (self.alignment == TTGTagCollectionAlignmentFillByExpandingWidth || + self.alignment == TTGTagCollectionAlignmentFillByExpandingWidthExceptLastLine) { + [self reload]; + } else { + [self updateStyleAndFrameForLabel:label]; + } + + if ([_delegate respondsToSelector:@selector(textTagCollectionView:didTapTag:atIndex:)]) { + [_delegate textTagCollectionView:self didTapTag:label.config atIndex:index]; + } + } +} + +- (CGSize)tagCollectionView:(TTGTagCollectionView *)tagCollectionView sizeForTagAtIndex:(NSUInteger)index { + return _tagLabels[index].frame.size; +} + +- (void)tagCollectionView:(TTGTagCollectionView *)tagCollectionView updateContentSize:(CGSize)contentSize { + if ([_delegate respondsToSelector:@selector(textTagCollectionView:updateContentSize:)]) { + [_delegate textTagCollectionView:self updateContentSize:contentSize]; + } +} + +#pragma mark - Setter and Getter + +- (UIScrollView *)scrollView { + return _tagCollectionView.scrollView; +} + +- (CGFloat)horizontalSpacing { + return _tagCollectionView.horizontalSpacing; +} + +- (void)setHorizontalSpacing:(CGFloat)horizontalSpacing { + _tagCollectionView.horizontalSpacing = horizontalSpacing; +} + +- (CGFloat)verticalSpacing { + return _tagCollectionView.verticalSpacing; +} + +- (void)setVerticalSpacing:(CGFloat)verticalSpacing { + _tagCollectionView.verticalSpacing = verticalSpacing; +} + +- (CGSize)contentSize { + return _tagCollectionView.contentSize; +} + +- (TTGTagCollectionScrollDirection)scrollDirection { + return _tagCollectionView.scrollDirection; +} + +- (void)setScrollDirection:(TTGTagCollectionScrollDirection)scrollDirection { + _tagCollectionView.scrollDirection = scrollDirection; +} + +- (TTGTagCollectionAlignment)alignment { + return _tagCollectionView.alignment; +} + +- (void)setAlignment:(TTGTagCollectionAlignment)alignment { + _tagCollectionView.alignment = alignment; +} + +- (NSUInteger)numberOfLines { + return _tagCollectionView.numberOfLines; +} + +- (void)setNumberOfLines:(NSUInteger)numberOfLines { + _tagCollectionView.numberOfLines = numberOfLines; +} + +- (NSUInteger)actualNumberOfLines { + return _tagCollectionView.actualNumberOfLines; +} + +- (UIEdgeInsets)contentInset { + return _tagCollectionView.contentInset; +} + +- (void)setContentInset:(UIEdgeInsets)contentInset { + _tagCollectionView.contentInset = contentInset; +} + +- (BOOL)manualCalculateHeight { + return _tagCollectionView.manualCalculateHeight; +} + +- (void)setManualCalculateHeight:(BOOL)manualCalculateHeight { + _tagCollectionView.manualCalculateHeight = manualCalculateHeight; +} + +- (CGFloat)preferredMaxLayoutWidth { + return _tagCollectionView.preferredMaxLayoutWidth; +} + +- (void)setPreferredMaxLayoutWidth:(CGFloat)preferredMaxLayoutWidth { + _tagCollectionView.preferredMaxLayoutWidth = preferredMaxLayoutWidth; +} + +- (void)setShowsHorizontalScrollIndicator:(BOOL)showsHorizontalScrollIndicator { + _tagCollectionView.showsHorizontalScrollIndicator = showsHorizontalScrollIndicator; +} + +- (BOOL)showsHorizontalScrollIndicator { + return _tagCollectionView.showsHorizontalScrollIndicator; +} + +- (void)setShowsVerticalScrollIndicator:(BOOL)showsVerticalScrollIndicator { + _tagCollectionView.showsVerticalScrollIndicator = showsVerticalScrollIndicator; +} + +- (BOOL)showsVerticalScrollIndicator { + return _tagCollectionView.showsVerticalScrollIndicator; +} + +- (void)setOnTapBlankArea:(void (^)(CGPoint location))onTapBlankArea { + _tagCollectionView.onTapBlankArea = onTapBlankArea; +} + +- (void (^)(CGPoint location))onTapBlankArea { + return _tagCollectionView.onTapBlankArea; +} + +- (void)setOnTapAllArea:(void (^)(CGPoint location))onTapAllArea { + _tagCollectionView.onTapAllArea = onTapAllArea; +} + +- (void (^)(CGPoint location))onTapAllArea { + return _tagCollectionView.onTapAllArea; +} + +#pragma mark - Private methods + +- (void)updateAllLabelStyleAndFrame { + for (TTGTextTagComponentView *label in _tagLabels) { + [self updateStyleAndFrameForLabel:label]; + } +} + +- (void)updateStyleAndFrameForLabel:(TTGTextTagComponentView *)label { + // Update content + [label updateContent]; + // Update content style + [label updateContentStyle]; + // Width limit for vertical scroll direction + CGSize maxSize = CGSizeZero; + if (self.scrollDirection == TTGTagCollectionScrollDirectionVertical && + CGRectGetWidth(self.bounds) > 0) { + maxSize.width = (CGRectGetWidth(self.bounds) - self.contentInset.left - self.contentInset.right); + } + // Update frame + [label updateFrameWithMaxSize:maxSize]; +} + +- (TTGTextTagComponentView *)newLabelWithConfig:(TTGTextTag *)config { + TTGTextTagComponentView *label = [TTGTextTagComponentView new]; + label.config = config; + return label; +} + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagContent.h b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagContent.h new file mode 100644 index 0000000..5a54495 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagContent.h @@ -0,0 +1,23 @@ +// +// TTGTextTagContent.h +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import + +/** + Base content class. + Do not use this class directly! + */ +@interface TTGTextTagContent : NSObject + +/// Must be override by subClass +- (NSAttributedString *_Nonnull)getContentAttributedString; + +/// Must be override by subClass +- (id _Nonnull)copyWithZone:(NSZone *_Nullable)zone; + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagContent.m b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagContent.m new file mode 100644 index 0000000..0a98b11 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagContent.m @@ -0,0 +1,22 @@ +// +// TTGTextTagContent.m +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import "TTGTextTagContent.h" + +@implementation TTGTextTagContent + +- (NSAttributedString *)getContentAttributedString { + NSAssert(NO, @"Do not use TTGTextTagContent directly."); + return [NSAttributedString new]; +} + +- (id)copyWithZone:(NSZone *)zone { + return [[[self class] allocWithZone:zone] init]; +} + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStringContent.h b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStringContent.h new file mode 100644 index 0000000..f49e440 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStringContent.h @@ -0,0 +1,39 @@ +// +// TTGTextTagStringContent.h +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import "TTGTextTagContent.h" + +/** + Normal text content with custom font and color. + */ +@interface TTGTextTagStringContent : TTGTextTagContent + +/// Text +@property (nonatomic, copy) NSString * _Nonnull text; +/// Text font +@property (nonatomic, copy) UIFont * _Nonnull textFont; +/// Text color +@property (nonatomic, copy) UIColor * _Nonnull textColor; + +/// Init +- (instancetype _Nonnull)initWithText:(NSString *_Nonnull)text; +- (instancetype _Nonnull)initWithText:(NSString *_Nonnull)text + textFont:(UIFont *_Nullable)textFont + textColor:(UIColor *_Nullable)textColor; + +/// Content ++ (instancetype _Nonnull)contentWithText:(NSString *_Nonnull)text; ++ (instancetype _Nonnull)contentWithText:(NSString *_Nonnull)text + textFont:(UIFont *_Nullable)textFont + textColor:(UIColor *_Nullable)textColor; + +/// Base system methods +- (id _Nonnull)copyWithZone:(NSZone *_Nullable)zone; +- (NSString *_Nonnull)description; + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStringContent.m b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStringContent.m new file mode 100644 index 0000000..a36ba59 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStringContent.m @@ -0,0 +1,80 @@ +// +// TTGTextTagStringContent.m +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import "TTGTextTagStringContent.h" + +@implementation TTGTextTagStringContent + +- (instancetype)initWithText:(NSString *)text { + self = [super init]; + if (self) { + self.text = text; + } + return self; +} + ++ (instancetype)contentWithText:(NSString *)text { + return [[self alloc] initWithText:text]; +} + +- (instancetype)initWithText:(NSString *)text + textFont:(UIFont *)textFont + textColor:(UIColor *)textColor { + self = [super init]; + if (self) { + self.text = text; + self.textFont = textFont; + self.textColor = textColor; + } + return self; +} + ++ (instancetype)contentWithText:(NSString *)text + textFont:(UIFont *)textFont + textColor:(UIColor *)textColor { + return [[self alloc] initWithText:text + textFont:textFont + textColor:textColor]; +} + +- (NSAttributedString *)getContentAttributedString { + return [[NSAttributedString alloc] initWithString:self.text + attributes:@{NSForegroundColorAttributeName: self.textColor, + NSFontAttributeName: self.textFont}]; +} + +- (NSString *)text { + return _text ?: @""; +} + +- (UIFont *)textFont { + return _textFont ?: [UIFont systemFontOfSize:14]; +} + +- (UIColor *)textColor { + return _textColor ?: [UIColor blackColor]; +} + +- (id)copyWithZone:(NSZone *)zone { + TTGTextTagStringContent *copy = (TTGTextTagStringContent *)[super copyWithZone:zone]; + if (copy != nil) { + copy.text = self.text; + copy.textFont = self.textFont; + copy.textColor = self.textColor; + } + return copy; +} + +- (NSString *)description { + NSMutableString *description = [NSMutableString stringWithFormat:@"<%@: ", NSStringFromClass([self class])]; + [description appendFormat:@"self.text=%@", self.text]; + [description appendString:@">"]; + return description; +} + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStyle.h b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStyle.h new file mode 100644 index 0000000..ddffdeb --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStyle.h @@ -0,0 +1,65 @@ +// +// TTGTextTagStyle.h +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import +#import + +@interface TTGTextTagStyle : NSObject + +/// Background color +@property (nonatomic, copy) UIColor * _Nonnull backgroundColor; // Default is [UIColor lightGrayColor] + +/// Text alignment +@property (nonatomic, assign) NSTextAlignment textAlignment; // Default is NSTextAlignmentCenter + +/// Gradient background color +@property (nonatomic, assign) BOOL enableGradientBackground; // Default is NO +@property (nonatomic, copy) UIColor * _Nonnull gradientBackgroundStartColor; +@property (nonatomic, copy) UIColor * _Nonnull gradientBackgroundEndColor; +@property (nonatomic, assign) CGPoint gradientBackgroundStartPoint; +@property (nonatomic, assign) CGPoint gradientBackgroundEndPoint; + +/// Corner radius +@property (nonatomic, assign) CGFloat cornerRadius; // Default is 4 +@property (nonatomic, assign) Boolean cornerTopRight; +@property (nonatomic, assign) Boolean cornerTopLeft; +@property (nonatomic, assign) Boolean cornerBottomRight; +@property (nonatomic, assign) Boolean cornerBottomLeft; + +/// Border +@property (nonatomic, assign) CGFloat borderWidth; // Default is [UIColor whiteColor] +@property (nonatomic, copy) UIColor * _Nonnull borderColor; // Default is 1 + +/// Shadow. +@property (nonatomic, copy) UIColor * _Nonnull shadowColor; // Default is [UIColor blackColor] +@property (nonatomic, assign) CGSize shadowOffset; // Default is (2, 2) +@property (nonatomic, assign) CGFloat shadowRadius; // Default is 2f +@property (nonatomic, assign) CGFloat shadowOpacity; // Default is 0.3f + +/// Extra space in width and height, will expand each tag's size +@property (nonatomic, assign) CGSize extraSpace; + +/// Max width for a text tag. 0 and below means no max width. +@property (nonatomic, assign) CGFloat maxWidth; +/// Min width for a text tag. 0 and below means no min width. +@property (nonatomic, assign) CGFloat minWidth; + +/// Max height for a text tag. 0 and below means no max height. +@property (nonatomic, assign) CGFloat maxHeight; +/// Min height for a text tag. 0 and below means no min height. +@property (nonatomic, assign) CGFloat minHeight; + +/// Exact width. 0 and below means no work +@property (nonatomic, assign) CGFloat exactWidth; +/// Exact height. 0 and below means no work +@property (nonatomic, assign) CGFloat exactHeight; + +/// Copy +- (id _Nonnull)copyWithZone:(NSZone *_Nullable)zone; + +@end diff --git a/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStyle.m b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStyle.m new file mode 100644 index 0000000..43629e5 --- /dev/null +++ b/QuickLocation/UIKit/TTGTagCollectionView/TTGTextTagStyle.m @@ -0,0 +1,84 @@ +// +// TTGTextTagStyle.m +// TTGTagCollectionView +// +// Created by zekunyan on 2019/5/24. +// Copyright (c) 2021 zekunyan. All rights reserved. +// + +#import "TTGTextTagStyle.h" + +@implementation TTGTextTagStyle + +- (instancetype)init { + self = [super init]; + if (self) { + _backgroundColor = [UIColor lightGrayColor]; + _textAlignment = NSTextAlignmentCenter; + _enableGradientBackground = NO; + _cornerRadius = 4; + _borderColor = [UIColor whiteColor]; + _borderWidth = 1; + _shadowColor = [UIColor blackColor]; + _shadowOffset = CGSizeMake(2, 2); + _shadowRadius = 2; + _shadowOpacity = 0.3; + } + return self; +} + +- (id)copyWithZone:(NSZone *)zone { + TTGTextTagStyle *copy = (TTGTextTagStyle *)[[[self class] allocWithZone:zone] init]; + + if (copy != nil) { + copy.backgroundColor = self.backgroundColor; + copy.textAlignment = self.textAlignment; + copy.enableGradientBackground = self.enableGradientBackground; + copy.gradientBackgroundStartColor = self.gradientBackgroundStartColor; + copy.gradientBackgroundEndColor = self.gradientBackgroundEndColor; + copy.gradientBackgroundStartPoint = self.gradientBackgroundStartPoint; + copy.gradientBackgroundEndPoint = self.gradientBackgroundEndPoint; + copy.cornerRadius = self.cornerRadius; + copy.cornerTopRight = self.cornerTopRight; + copy.cornerTopLeft = self.cornerTopLeft; + copy.cornerBottomRight = self.cornerBottomRight; + copy.cornerBottomLeft = self.cornerBottomLeft; + copy.borderWidth = self.borderWidth; + copy.borderColor = self.borderColor; + copy.shadowColor = self.shadowColor; + copy.shadowOffset = self.shadowOffset; + copy.shadowRadius = self.shadowRadius; + copy.shadowOpacity = self.shadowOpacity; + copy.extraSpace = self.extraSpace; + copy.maxWidth = self.maxWidth; + copy.minWidth = self.minWidth; + copy.maxHeight = self.maxHeight; + copy.minHeight = self.minHeight; + copy.exactWidth = self.exactWidth; + copy.exactHeight = self.exactHeight; + } + + return copy; +} + +- (UIColor *)backgroundColor { + return _backgroundColor ?: [UIColor clearColor]; +} + +- (UIColor *)gradientBackgroundStartColor { + return _gradientBackgroundStartColor ?: [UIColor clearColor]; +} + +- (UIColor *)gradientBackgroundEndColor { + return _gradientBackgroundEndColor ?: [UIColor clearColor]; +} + +- (UIColor *)borderColor { + return _borderColor ?: [UIColor clearColor]; +} + +- (UIColor *)shadowColor { + return _shadowColor ?: [UIColor clearColor]; +} + +@end