Fixed Location & Storage issues

This commit is contained in:
2024-05-25 11:05:02 +09:00
parent e55674e1b9
commit 6a49aed98d
861 changed files with 80074 additions and 402 deletions

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AvailableLibraries</key>
<array>
<dict>
<key>BinaryPath</key>
<string>Reachability.framework/Reachability</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>Reachability.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>Reachability.framework/Reachability</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Reachability.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>XCFrameworkFormatVersion</key>
<string>1.0</string>
</dict>
</plist>

View File

@ -0,0 +1,311 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef REACHABILITY_SWIFT_H
#define REACHABILITY_SWIFT_H
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
# define __has_attribute(x) 0
#endif
#if !defined(__has_feature)
# define __has_feature(x) 0
#endif
#if !defined(__has_warning)
# define __has_warning(x) 0
#endif
#if __has_include(<swift/objc-prologue.h>)
# include <swift/objc-prologue.h>
#endif
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include <Foundation/Foundation.h>
#endif
#if defined(__cplusplus)
#include <cstdint>
#include <cstddef>
#include <cstdbool>
#include <cstring>
#include <stdlib.h>
#include <new>
#include <type_traits>
#else
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <string.h>
#endif
#if defined(__cplusplus)
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
# if __has_include(<uchar.h>)
# include <uchar.h>
# elif !defined(__cplusplus)
typedef uint_least16_t char16_t;
typedef uint_least32_t char32_t;
# endif
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#if !defined(SWIFT_PASTE)
# define SWIFT_PASTE_HELPER(x, y) x##y
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
#endif
#if !defined(SWIFT_METATYPE)
# define SWIFT_METATYPE(X) Class
#endif
#if !defined(SWIFT_CLASS_PROPERTY)
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
#if !defined(SWIFT_RUNTIME_NAME)
# if __has_attribute(objc_runtime_name)
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
# else
# define SWIFT_RUNTIME_NAME(X)
# endif
#endif
#if !defined(SWIFT_COMPILE_NAME)
# if __has_attribute(swift_name)
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
# else
# define SWIFT_COMPILE_NAME(X)
# endif
#endif
#if !defined(SWIFT_METHOD_FAMILY)
# if __has_attribute(objc_method_family)
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
# else
# define SWIFT_METHOD_FAMILY(X)
# endif
#endif
#if !defined(SWIFT_NOESCAPE)
# if __has_attribute(noescape)
# define SWIFT_NOESCAPE __attribute__((noescape))
# else
# define SWIFT_NOESCAPE
# endif
#endif
#if !defined(SWIFT_RELEASES_ARGUMENT)
# if __has_attribute(ns_consumed)
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
# else
# define SWIFT_RELEASES_ARGUMENT
# endif
#endif
#if !defined(SWIFT_WARN_UNUSED_RESULT)
# if __has_attribute(warn_unused_result)
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
# else
# define SWIFT_WARN_UNUSED_RESULT
# endif
#endif
#if !defined(SWIFT_NORETURN)
# if __has_attribute(noreturn)
# define SWIFT_NORETURN __attribute__((noreturn))
# else
# define SWIFT_NORETURN
# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# else
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# endif
#endif
#if !defined(SWIFT_RESILIENT_CLASS)
# if __has_attribute(objc_class_stub)
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
# else
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# if __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# else
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
# endif
#endif
#if !defined(SWIFT_UNAVAILABLE)
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
#endif
#if !defined(SWIFT_UNAVAILABLE_MSG)
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
#endif
#if !defined(SWIFT_AVAILABILITY)
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
#endif
#if !defined(SWIFT_WEAK_IMPORT)
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
#endif
#if !defined(SWIFT_DEPRECATED)
# define SWIFT_DEPRECATED __attribute__((deprecated))
#endif
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
#if !defined(SWIFT_DEPRECATED_OBJC)
# if __has_feature(attribute_diagnose_if_objc)
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
# else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
#if !defined(SWIFT_INDIRECT_RESULT)
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
#endif
#if !defined(SWIFT_CONTEXT)
# define SWIFT_CONTEXT __attribute__((swift_context))
#endif
#if !defined(SWIFT_ERROR_RESULT)
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
#endif
#if defined(__cplusplus)
# define SWIFT_NOEXCEPT noexcept
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
#endif
#else
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
#endif
#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
# undef any
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Reachability",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
# pragma pop_macro("any")
#endif
#if defined(__OBJC__)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif
#else
#error unsupported Swift architecture
#endif

View File

@ -0,0 +1,16 @@
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double ReachabilityVersionNumber;
FOUNDATION_EXPORT const unsigned char ReachabilityVersionString[];

View File

@ -0,0 +1,98 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Reachability
// swift-module-flags-ignorable: -enable-bare-slash-regex
import Foundation
@_exported import Reachability
import Swift
import SystemConfiguration
import _Concurrency
import _StringProcessing
import _SwiftConcurrencyShims
public enum ReachabilityError : Swift.Error {
case failedToCreateWithAddress(Darwin.sockaddr, Swift.Int32)
case failedToCreateWithHostname(Swift.String, Swift.Int32)
case unableToSetCallback(Swift.Int32)
case unableToSetDispatchQueue(Swift.Int32)
case unableToGetFlags(Swift.Int32)
}
@available(*, unavailable, renamed: "Notification.Name.reachabilityChanged")
public let ReachabilityChangedNotification: Foundation.NSNotification.Name
extension Foundation.NSNotification.Name {
public static let reachabilityChanged: Foundation.Notification.Name
}
public class Reachability {
public typealias NetworkReachable = (Reachability.Reachability) -> ()
public typealias NetworkUnreachable = (Reachability.Reachability) -> ()
@available(*, unavailable, renamed: "Connection")
public enum NetworkStatus : Swift.CustomStringConvertible {
case notReachable, reachableViaWiFi, reachableViaWWAN
public var description: Swift.String {
get
}
public static func == (a: Reachability.Reachability.NetworkStatus, b: Reachability.Reachability.NetworkStatus) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public enum Connection : Swift.CustomStringConvertible {
case unavailable, wifi, cellular
public var description: Swift.String {
get
}
@available(*, deprecated, renamed: "unavailable")
public static let none: Reachability.Reachability.Connection
public static func == (a: Reachability.Reachability.Connection, b: Reachability.Reachability.Connection) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public var whenReachable: Reachability.Reachability.NetworkReachable?
public var whenUnreachable: Reachability.Reachability.NetworkUnreachable?
@available(*, deprecated, renamed: "allowsCellularConnection")
final public let reachableOnWWAN: Swift.Bool
public var allowsCellularConnection: Swift.Bool
public var notificationCenter: Foundation.NotificationCenter
@available(*, deprecated, renamed: "connection.description")
public var currentReachabilityString: Swift.String {
get
}
@available(*, unavailable, renamed: "connection")
public var currentReachabilityStatus: Reachability.Reachability.Connection {
get
}
public var connection: Reachability.Reachability.Connection {
get
}
required public init(reachabilityRef: SystemConfiguration.SCNetworkReachability, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main)
convenience public init(hostname: Swift.String, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
convenience public init(queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
@objc deinit
}
extension Reachability.Reachability {
public func startNotifier() throws
public func stopNotifier()
@available(*, deprecated, message: "Please use `connection != .none`")
public var isReachable: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .cellular`")
public var isReachableViaWWAN: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .wifi`")
public var isReachableViaWiFi: Swift.Bool {
get
}
public var description: Swift.String {
get
}
}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Equatable {}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Hashable {}
extension Reachability.Reachability.Connection : Swift.Equatable {}
extension Reachability.Reachability.Connection : Swift.Hashable {}

View File

@ -0,0 +1,98 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Reachability
// swift-module-flags-ignorable: -enable-bare-slash-regex
import Foundation
@_exported import Reachability
import Swift
import SystemConfiguration
import _Concurrency
import _StringProcessing
import _SwiftConcurrencyShims
public enum ReachabilityError : Swift.Error {
case failedToCreateWithAddress(Darwin.sockaddr, Swift.Int32)
case failedToCreateWithHostname(Swift.String, Swift.Int32)
case unableToSetCallback(Swift.Int32)
case unableToSetDispatchQueue(Swift.Int32)
case unableToGetFlags(Swift.Int32)
}
@available(*, unavailable, renamed: "Notification.Name.reachabilityChanged")
public let ReachabilityChangedNotification: Foundation.NSNotification.Name
extension Foundation.NSNotification.Name {
public static let reachabilityChanged: Foundation.Notification.Name
}
public class Reachability {
public typealias NetworkReachable = (Reachability.Reachability) -> ()
public typealias NetworkUnreachable = (Reachability.Reachability) -> ()
@available(*, unavailable, renamed: "Connection")
public enum NetworkStatus : Swift.CustomStringConvertible {
case notReachable, reachableViaWiFi, reachableViaWWAN
public var description: Swift.String {
get
}
public static func == (a: Reachability.Reachability.NetworkStatus, b: Reachability.Reachability.NetworkStatus) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public enum Connection : Swift.CustomStringConvertible {
case unavailable, wifi, cellular
public var description: Swift.String {
get
}
@available(*, deprecated, renamed: "unavailable")
public static let none: Reachability.Reachability.Connection
public static func == (a: Reachability.Reachability.Connection, b: Reachability.Reachability.Connection) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public var whenReachable: Reachability.Reachability.NetworkReachable?
public var whenUnreachable: Reachability.Reachability.NetworkUnreachable?
@available(*, deprecated, renamed: "allowsCellularConnection")
final public let reachableOnWWAN: Swift.Bool
public var allowsCellularConnection: Swift.Bool
public var notificationCenter: Foundation.NotificationCenter
@available(*, deprecated, renamed: "connection.description")
public var currentReachabilityString: Swift.String {
get
}
@available(*, unavailable, renamed: "connection")
public var currentReachabilityStatus: Reachability.Reachability.Connection {
get
}
public var connection: Reachability.Reachability.Connection {
get
}
required public init(reachabilityRef: SystemConfiguration.SCNetworkReachability, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main)
convenience public init(hostname: Swift.String, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
convenience public init(queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
@objc deinit
}
extension Reachability.Reachability {
public func startNotifier() throws
public func stopNotifier()
@available(*, deprecated, message: "Please use `connection != .none`")
public var isReachable: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .cellular`")
public var isReachableViaWWAN: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .wifi`")
public var isReachableViaWiFi: Swift.Bool {
get
}
public var description: Swift.String {
get
}
}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Equatable {}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Hashable {}
extension Reachability.Reachability.Connection : Swift.Equatable {}
extension Reachability.Reachability.Connection : Swift.Hashable {}

View File

@ -0,0 +1,11 @@
framework module Reachability {
umbrella header "ReachabilitySwift-umbrella.h"
export *
module * { export * }
}
module Reachability.Swift {
header "Reachability-Swift.h"
requires objc
}

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
</dict>
</plist>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.org.cocoapods.Reachability</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>5.2.1</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

View File

@ -0,0 +1,154 @@
---
triple: 'arm64-apple-darwin'
binary-path: '/Volumes/PortableSSD1TB/main/GifuTabi/rog_app/Flutter/Release/iphoneos/Release-iphoneos/ReachabilitySwift/Reachability.framework/Reachability'
relocations:
- { offsetInCU: 0x34, offset: 0x541DF, size: 0x8, addend: 0x0, symName: _ReachabilityVersionString, symObjAddr: 0x0, symBinAddr: 0x90B0, symSize: 0x0 }
- { offsetInCU: 0x69, offset: 0x54214, size: 0x8, addend: 0x0, symName: _ReachabilityVersionNumber, symObjAddr: 0x30, symBinAddr: 0x90E0, symSize: 0x0 }
- { offsetInCU: 0x4F, offset: 0x54279, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A19ChangedNotificationSo18NSNotificationNameavp.0', symObjAddr: 0x13018, symBinAddr: 0xD3E8, symSize: 0x0 }
- { offsetInCU: 0x69, offset: 0x54293, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea12ReachabilityE19reachabilityChangedABvpZ.0', symObjAddr: 0x13028, symBinAddr: 0xD3F8, symSize: 0x0 }
- { offsetInCU: 0x8F, offset: 0x542B9, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x412C, symSize: 0x24 }
- { offsetInCU: 0xAA, offset: 0x542D4, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionO4noneADvgZ', symObjAddr: 0x154, symBinAddr: 0x4154, symSize: 0x48 }
- { offsetInCU: 0xE2, offset: 0x5430C, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionO2eeoiySbAD_ADtFZ', symObjAddr: 0x19C, symBinAddr: 0x419C, symSize: 0x14 }
- { offsetInCU: 0x115, offset: 0x5433F, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x1B0, symBinAddr: 0x41B0, symSize: 0x28 }
- { offsetInCU: 0x1A6, offset: 0x543D0, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x220, symBinAddr: 0x4220, symSize: 0x14 }
- { offsetInCU: 0x1C6, offset: 0x543F0, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x220, symBinAddr: 0x4220, symSize: 0x14 }
- { offsetInCU: 0x210, offset: 0x5443A, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x27C, symBinAddr: 0x427C, symSize: 0x28 }
- { offsetInCU: 0x28A, offset: 0x544B4, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOs23CustomStringConvertibleAAsAEP11descriptionSSvgTW', symObjAddr: 0x2E8, symBinAddr: 0x42E8, symSize: 0x4 }
- { offsetInCU: 0x2D8, offset: 0x54502, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x40F8, symSize: 0x24 }
- { offsetInCU: 0x303, offset: 0x5452D, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13NetworkStatusOs23CustomStringConvertibleAAsAEP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x4128, symSize: 0x4 }
- { offsetInCU: 0x320, offset: 0x5454A, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionO4none_WZ', symObjAddr: 0x150, symBinAddr: 0x4150, symSize: 0x4 }
- { offsetInCU: 0x393, offset: 0x545BD, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13whenReachableyABcSgvg', symObjAddr: 0x420, symBinAddr: 0x4420, symSize: 0x4C }
- { offsetInCU: 0x3B2, offset: 0x545DC, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13whenReachableyABcSgvs', symObjAddr: 0x47C, symBinAddr: 0x447C, symSize: 0x50 }
- { offsetInCU: 0x3DB, offset: 0x54605, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13whenReachableyABcSgvM', symObjAddr: 0x4DC, symBinAddr: 0x44DC, symSize: 0x3C }
- { offsetInCU: 0x40A, offset: 0x54634, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13whenReachableyABcSgvM.resume.0', symObjAddr: 0x518, symBinAddr: 0x4518, symSize: 0x4 }
- { offsetInCU: 0x47D, offset: 0x546A7, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC15whenUnreachableyABcSgvg', symObjAddr: 0x650, symBinAddr: 0x4650, symSize: 0x4C }
- { offsetInCU: 0x49C, offset: 0x546C6, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC15whenUnreachableyABcSgvs', symObjAddr: 0x69C, symBinAddr: 0x469C, symSize: 0x50 }
- { offsetInCU: 0x4C5, offset: 0x546EF, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC15whenUnreachableyABcSgvM', symObjAddr: 0x6EC, symBinAddr: 0x46EC, symSize: 0x3C }
- { offsetInCU: 0x4F4, offset: 0x5471E, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC15reachableOnWWANSbvg', symObjAddr: 0x728, symBinAddr: 0x4728, symSize: 0x8 }
- { offsetInCU: 0x567, offset: 0x54791, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC24allowsCellularConnectionSbvg', symObjAddr: 0x7B4, symBinAddr: 0x47B4, symSize: 0x30 }
- { offsetInCU: 0x584, offset: 0x547AE, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC24allowsCellularConnectionSbvs', symObjAddr: 0x7E4, symBinAddr: 0x47E4, symSize: 0x3C }
- { offsetInCU: 0x5A9, offset: 0x547D3, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC24allowsCellularConnectionSbvM', symObjAddr: 0x820, symBinAddr: 0x4820, symSize: 0x3C }
- { offsetInCU: 0x620, offset: 0x5484A, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC18notificationCenterSo014NSNotificationC0Cvg', symObjAddr: 0x8FC, symBinAddr: 0x48FC, symSize: 0x30 }
- { offsetInCU: 0x63D, offset: 0x54867, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC18notificationCenterSo014NSNotificationC0Cvs', symObjAddr: 0x92C, symBinAddr: 0x492C, symSize: 0x44 }
- { offsetInCU: 0x666, offset: 0x54890, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC18notificationCenterSo014NSNotificationC0CvM', symObjAddr: 0x970, symBinAddr: 0x4970, symSize: 0x3C }
- { offsetInCU: 0x695, offset: 0x548BF, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC07currentA6StringSSvg', symObjAddr: 0x9AC, symBinAddr: 0x49AC, symSize: 0x68 }
- { offsetInCU: 0x704, offset: 0x5492E, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC07currentA6StatusAB10ConnectionOvg', symObjAddr: 0xA14, symBinAddr: 0x4A14, symSize: 0x4 }
- { offsetInCU: 0x74F, offset: 0x54979, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10connectionAB10ConnectionOvg', symObjAddr: 0xA18, symBinAddr: 0x4A18, symSize: 0x110 }
- { offsetInCU: 0x82B, offset: 0x54A55, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC15reachabilityRef8queueQoS11targetQueue012notificationG0ABSo09SCNetworkaC0a_8Dispatch0jE1SVSo012OS_dispatch_D0CSgANtcfC', symObjAddr: 0xD3C, symBinAddr: 0x4D3C, symSize: 0x70 }
- { offsetInCU: 0x855, offset: 0x54A7F, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC15reachabilityRef8queueQoS11targetQueue012notificationG0ABSo09SCNetworkaC0a_8Dispatch0jE1SVSo012OS_dispatch_D0CSgANtcfc', symObjAddr: 0xDAC, symBinAddr: 0x4DAC, symSize: 0x30 }
- { offsetInCU: 0x87A, offset: 0x54AA4, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC8hostname8queueQoS11targetQueue012notificationF0ABSS_8Dispatch0hD1SVSo012OS_dispatch_C0CSgALtKcfC', symObjAddr: 0xDDC, symBinAddr: 0x4DDC, symSize: 0x188 }
- { offsetInCU: 0x92F, offset: 0x54B59, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC8queueQoS11targetQueue012notificationE0AB8Dispatch0gC1SV_So012OS_dispatch_B0CSgAKtKcfC', symObjAddr: 0xF64, symBinAddr: 0x4F64, symSize: 0x190 }
- { offsetInCU: 0xA00, offset: 0x54C2A, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAACfd', symObjAddr: 0x10F4, symBinAddr: 0x50F4, symSize: 0x64 }
- { offsetInCU: 0xA9C, offset: 0x54CC6, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAACfD', symObjAddr: 0x1188, symBinAddr: 0x5188, symSize: 0x6C }
- { offsetInCU: 0xBB2, offset: 0x54DDC, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC15reachabilityRef8queueQoS11targetQueue012notificationG0ABSo09SCNetworkaC0a_8Dispatch0jE1SVSo012OS_dispatch_D0CSgANtcfcTf4gnnnn_n', symObjAddr: 0x1C28, symBinAddr: 0x5C28, symSize: 0x240 }
- { offsetInCU: 0xC44, offset: 0x54E6E, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A19ChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x4010, symSize: 0x34 }
- { offsetInCU: 0xC80, offset: 0x54EAA, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A19ChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x4044, symSize: 0x40 }
- { offsetInCU: 0xCB6, offset: 0x54EE0, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea12ReachabilityE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x4084, symSize: 0x34 }
- { offsetInCU: 0xCE1, offset: 0x54F0B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea12ReachabilityE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x40B8, symSize: 0x40 }
- { offsetInCU: 0xD2F, offset: 0x54F59, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13whenReachableyABcSgvpABTK', symObjAddr: 0x2EC, symBinAddr: 0x42EC, symSize: 0x88 }
- { offsetInCU: 0xD65, offset: 0x54F8F, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13whenReachableyABcSgvpABTk', symObjAddr: 0x374, symBinAddr: 0x4374, symSize: 0xAC }
- { offsetInCU: 0xDA5, offset: 0x54FCF, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAACIegg_SgWOy', symObjAddr: 0x46C, symBinAddr: 0x446C, symSize: 0x10 }
- { offsetInCU: 0xDB9, offset: 0x54FE3, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAACIegg_SgWOe', symObjAddr: 0x4CC, symBinAddr: 0x44CC, symSize: 0x10 }
- { offsetInCU: 0xDCD, offset: 0x54FF7, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC15whenUnreachableyABcSgvpABTK', symObjAddr: 0x51C, symBinAddr: 0x451C, symSize: 0x88 }
- { offsetInCU: 0xE03, offset: 0x5502D, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC15whenUnreachableyABcSgvpABTk', symObjAddr: 0x5A4, symBinAddr: 0x45A4, symSize: 0xAC }
- { offsetInCU: 0xE43, offset: 0x5506D, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC24allowsCellularConnectionSbvpABTK', symObjAddr: 0x730, symBinAddr: 0x4730, symSize: 0x44 }
- { offsetInCU: 0xE79, offset: 0x550A3, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC24allowsCellularConnectionSbvpABTk', symObjAddr: 0x774, symBinAddr: 0x4774, symSize: 0x40 }
- { offsetInCU: 0xEAF, offset: 0x550D9, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC18notificationCenterSo014NSNotificationC0CvpABTK', symObjAddr: 0x85C, symBinAddr: 0x485C, symSize: 0x44 }
- { offsetInCU: 0xEE5, offset: 0x5510F, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC18notificationCenterSo014NSNotificationC0CvpABTk', symObjAddr: 0x8A0, symBinAddr: 0x48A0, symSize: 0x5C }
- { offsetInCU: 0xF86, offset: 0x551B0, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC06notifyA7Changed33_40784B9DE2E4DD004D0E5525CB465FEDLLyyF', symObjAddr: 0xB28, symBinAddr: 0x4B28, symSize: 0x214 }
- { offsetInCU: 0xFF2, offset: 0x5521C, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC06notifyA7Changed33_40784B9DE2E4DD004D0E5525CB465FEDLLyyFyycfU_', symObjAddr: 0x188C, symBinAddr: 0x588C, symSize: 0x138 }
- { offsetInCU: 0x10BC, offset: 0x552E6, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC12stopNotifieryyF', symObjAddr: 0x1158, symBinAddr: 0x5158, symSize: 0x30 }
- { offsetInCU: 0x11AB, offset: 0x553D5, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A9Weakifier33_40784B9DE2E4DD004D0E5525CB465FEDLLCfD', symObjAddr: 0x19F0, symBinAddr: 0x59F0, symSize: 0x24 }
- { offsetInCU: 0x11FB, offset: 0x55425, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13startNotifieryyKF', symObjAddr: 0x11F4, symBinAddr: 0x51F4, symSize: 0x218 }
- { offsetInCU: 0x13ED, offset: 0x55617, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13startNotifieryyKFySo09SCNetworkA3Refa_So0dA5FlagsVSvSgtcfU_To', symObjAddr: 0x140C, symBinAddr: 0x540C, symSize: 0xC }
- { offsetInCU: 0x1444, offset: 0x5566E, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x1418, symBinAddr: 0x5418, symSize: 0x4 }
- { offsetInCU: 0x1460, offset: 0x5568A, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x1418, symBinAddr: 0x5418, symSize: 0x4 }
- { offsetInCU: 0x1479, offset: 0x556A3, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x1418, symBinAddr: 0x5418, symSize: 0x4 }
- { offsetInCU: 0x1492, offset: 0x556BC, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x141C, symBinAddr: 0x541C, symSize: 0x4 }
- { offsetInCU: 0x14AA, offset: 0x556D4, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1420, symBinAddr: 0x5420, symSize: 0xB8 }
- { offsetInCU: 0x154A, offset: 0x55774, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1518, symBinAddr: 0x5518, symSize: 0x4 }
- { offsetInCU: 0x1562, offset: 0x5578C, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13startNotifieryyKFySo09SCNetworkA3Refa_So0dA5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x262C, symBinAddr: 0x662C, symSize: 0x7C }
- { offsetInCU: 0x163F, offset: 0x55869, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC11descriptionSSvg', symObjAddr: 0x14D8, symBinAddr: 0x54D8, symSize: 0x40 }
- { offsetInCU: 0x1674, offset: 0x5589E, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC11isReachableSbvg', symObjAddr: 0x151C, symBinAddr: 0x551C, symSize: 0x2C }
- { offsetInCU: 0x16BF, offset: 0x558E9, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC18isReachableViaWWANSbvg', symObjAddr: 0x1548, symBinAddr: 0x5548, symSize: 0x2C }
- { offsetInCU: 0x170A, offset: 0x55934, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC18isReachableViaWiFiSbvg', symObjAddr: 0x1574, symBinAddr: 0x5574, symSize: 0x2C }
- { offsetInCU: 0x1797, offset: 0x559C1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV0B0E11descriptionSSvg', symObjAddr: 0x15A0, symBinAddr: 0x55A0, symSize: 0x198 }
- { offsetInCU: 0x1C46, offset: 0x55E70, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC03setA5Flags33_40784B9DE2E4DD004D0E5525CB465FEDLLyyKFyyKXEfU_', symObjAddr: 0x1738, symBinAddr: 0x5738, symSize: 0x13C }
- { offsetInCU: 0x1D44, offset: 0x55F6E, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC03setA5Flags33_40784B9DE2E4DD004D0E5525CB465FEDLLyyKFyyKXEfU_TA', symObjAddr: 0x1874, symBinAddr: 0x5874, symSize: 0x18 }
- { offsetInCU: 0x1D58, offset: 0x55F82, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x19C4, symBinAddr: 0x59C4, symSize: 0x2C }
- { offsetInCU: 0x1D9C, offset: 0x55FC6, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOACs0B0AAWl', symObjAddr: 0x1E68, symBinAddr: 0x5E68, symSize: 0x44 }
- { offsetInCU: 0x1DB0, offset: 0x55FDA, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAACMa', symObjAddr: 0x1EAC, symBinAddr: 0x5EAC, symSize: 0x20 }
- { offsetInCU: 0x1DC4, offset: 0x55FEE, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A9Weakifier33_40784B9DE2E4DD004D0E5525CB465FEDLLCMa', symObjAddr: 0x1ECC, symBinAddr: 0x5ECC, symSize: 0x20 }
- { offsetInCU: 0x1DD8, offset: 0x56002, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13NetworkStatusOSHAASQWb', symObjAddr: 0x1EEC, symBinAddr: 0x5EEC, symSize: 0x4 }
- { offsetInCU: 0x1DEC, offset: 0x56016, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13NetworkStatusOADSQAAWl', symObjAddr: 0x1EF0, symBinAddr: 0x5EF0, symSize: 0x44 }
- { offsetInCU: 0x1E00, offset: 0x5602A, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOSHAASQWb', symObjAddr: 0x1F34, symBinAddr: 0x5F34, symSize: 0x4 }
- { offsetInCU: 0x1E14, offset: 0x5603E, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOADSQAAWl', symObjAddr: 0x1F38, symBinAddr: 0x5F38, symSize: 0x44 }
- { offsetInCU: 0x1E28, offset: 0x56052, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwCP', symObjAddr: 0x1F7C, symBinAddr: 0x5F7C, symSize: 0x5C }
- { offsetInCU: 0x1E3C, offset: 0x56066, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOWOy', symObjAddr: 0x1FD8, symBinAddr: 0x5FD8, symSize: 0x18 }
- { offsetInCU: 0x1E50, offset: 0x5607A, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwxx', symObjAddr: 0x1FF0, symBinAddr: 0x5FF0, symSize: 0x14 }
- { offsetInCU: 0x1E64, offset: 0x5608E, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOWOe', symObjAddr: 0x2004, symBinAddr: 0x6004, symSize: 0x18 }
- { offsetInCU: 0x1E78, offset: 0x560A2, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwcp', symObjAddr: 0x201C, symBinAddr: 0x601C, symSize: 0x5C }
- { offsetInCU: 0x1E8C, offset: 0x560B6, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwca', symObjAddr: 0x2078, symBinAddr: 0x6078, symSize: 0x6C }
- { offsetInCU: 0x1EA0, offset: 0x560CA, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x20E4, symBinAddr: 0x60E4, symSize: 0x14 }
- { offsetInCU: 0x1EB4, offset: 0x560DE, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwta', symObjAddr: 0x20F8, symBinAddr: 0x60F8, symSize: 0x50 }
- { offsetInCU: 0x1EC8, offset: 0x560F2, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwet', symObjAddr: 0x2148, symBinAddr: 0x6148, symSize: 0x48 }
- { offsetInCU: 0x1EDC, offset: 0x56106, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwst', symObjAddr: 0x2190, symBinAddr: 0x6190, symSize: 0x48 }
- { offsetInCU: 0x1EF0, offset: 0x5611A, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwug', symObjAddr: 0x21D8, symBinAddr: 0x61D8, symSize: 0x8 }
- { offsetInCU: 0x1F04, offset: 0x5612E, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwup', symObjAddr: 0x21E0, symBinAddr: 0x61E0, symSize: 0x4 }
- { offsetInCU: 0x1F18, offset: 0x56142, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOwui', symObjAddr: 0x21E4, symBinAddr: 0x61E4, symSize: 0x8 }
- { offsetInCU: 0x1F2C, offset: 0x56156, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOMa', symObjAddr: 0x21EC, symBinAddr: 0x61EC, symSize: 0x10 }
- { offsetInCU: 0x1F40, offset: 0x5616A, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x22C4, symBinAddr: 0x62C4, symSize: 0xC }
- { offsetInCU: 0x1F54, offset: 0x5617E, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x22D0, symBinAddr: 0x62D0, symSize: 0x4 }
- { offsetInCU: 0x1F68, offset: 0x56192, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13NetworkStatusOwup', symObjAddr: 0x22DC, symBinAddr: 0x62DC, symSize: 0x4 }
- { offsetInCU: 0x1F7C, offset: 0x561A6, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC13NetworkStatusOMa', symObjAddr: 0x22E0, symBinAddr: 0x62E0, symSize: 0x10 }
- { offsetInCU: 0x1F90, offset: 0x561BA, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOwug', symObjAddr: 0x2444, symBinAddr: 0x6444, symSize: 0x8 }
- { offsetInCU: 0x1FA4, offset: 0x561CE, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOwup', symObjAddr: 0x244C, symBinAddr: 0x644C, symSize: 0x4 }
- { offsetInCU: 0x1FB8, offset: 0x561E2, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOwui', symObjAddr: 0x2450, symBinAddr: 0x6450, symSize: 0x8 }
- { offsetInCU: 0x1FCC, offset: 0x561F6, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC10ConnectionOMa', symObjAddr: 0x2458, symBinAddr: 0x6458, symSize: 0x10 }
- { offsetInCU: 0x1FE0, offset: 0x5620A, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x2490, symBinAddr: 0x6490, symSize: 0xC }
- { offsetInCU: 0x1FF4, offset: 0x5621E, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x249C, symBinAddr: 0x649C, symSize: 0x20 }
- { offsetInCU: 0x2008, offset: 0x56232, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x24BC, symBinAddr: 0x64BC, symSize: 0x28 }
- { offsetInCU: 0x201C, offset: 0x56246, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x253C, symBinAddr: 0x653C, symSize: 0x2C }
- { offsetInCU: 0x2030, offset: 0x5625A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x2568, symBinAddr: 0x6568, symSize: 0x2C }
- { offsetInCU: 0x2044, offset: 0x5626E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x25D4, symBinAddr: 0x65D4, symSize: 0x2C }
- { offsetInCU: 0x2058, offset: 0x56282, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x2600, symBinAddr: 0x6600, symSize: 0x2C }
- { offsetInCU: 0x20E5, offset: 0x5630F, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAACIegg_ABytIegnr_TRTA', symObjAddr: 0x2708, symBinAddr: 0x6708, symSize: 0x24 }
- { offsetInCU: 0x210E, offset: 0x56338, size: 0x8, addend: 0x0, symName: '_$s12ReachabilityAAC06notifyA7Changed33_40784B9DE2E4DD004D0E5525CB465FEDLLyyFyycfU_TA', symObjAddr: 0x2798, symBinAddr: 0x6798, symSize: 0x8 }
- { offsetInCU: 0x2122, offset: 0x5634C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x27A0, symBinAddr: 0x67A0, symSize: 0x10 }
- { offsetInCU: 0x2136, offset: 0x56360, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x27B0, symBinAddr: 0x67B0, symSize: 0x8 }
- { offsetInCU: 0x214A, offset: 0x56374, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x27B8, symBinAddr: 0x67B8, symSize: 0x40 }
- { offsetInCU: 0x215E, offset: 0x56388, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2838, symBinAddr: 0x6838, symSize: 0x3C }
- { offsetInCU: 0x21E5, offset: 0x5640F, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOs0B0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x4 }
- { offsetInCU: 0x2201, offset: 0x5642B, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOs0B0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x4004, symSize: 0x4 }
- { offsetInCU: 0x221D, offset: 0x56447, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOs0B0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x4008, symSize: 0x4 }
- { offsetInCU: 0x2239, offset: 0x56463, size: 0x8, addend: 0x0, symName: '_$s12Reachability0A5ErrorOs0B0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x400C, symSize: 0x4 }
- { offsetInCU: 0x2354, offset: 0x5657E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x1A14, symBinAddr: 0x5A14, symSize: 0x14 }
- { offsetInCU: 0x2392, offset: 0x565BC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x1A34, symBinAddr: 0x5A34, symSize: 0x8 }
- { offsetInCU: 0x23E1, offset: 0x5660B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x1A3C, symBinAddr: 0x5A3C, symSize: 0x14 }
- { offsetInCU: 0x247E, offset: 0x566A8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x1A50, symBinAddr: 0x5A50, symSize: 0x14 }
- { offsetInCU: 0x2513, offset: 0x5673D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x1A64, symBinAddr: 0x5A64, symSize: 0x14 }
- { offsetInCU: 0x25B0, offset: 0x567DA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x1A78, symBinAddr: 0x5A78, symSize: 0x30 }
- { offsetInCU: 0x271D, offset: 0x56947, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x1AA8, symBinAddr: 0x5AA8, symSize: 0x2C }
- { offsetInCU: 0x28AA, offset: 0x56AD4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x1AD4, symBinAddr: 0x5AD4, symSize: 0x24 }
- { offsetInCU: 0x2996, offset: 0x56BC0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x1AF8, symBinAddr: 0x5AF8, symSize: 0x14 }
- { offsetInCU: 0x29FC, offset: 0x56C26, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x1B0C, symBinAddr: 0x5B0C, symSize: 0x14 }
- { offsetInCU: 0x2A62, offset: 0x56C8C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x1B20, symBinAddr: 0x5B20, symSize: 0x14 }
- { offsetInCU: 0x2AD7, offset: 0x56D01, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x1B34, symBinAddr: 0x5B34, symSize: 0x14 }
- { offsetInCU: 0x2B80, offset: 0x56DAA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x1B48, symBinAddr: 0x5B48, symSize: 0x14 }
- { offsetInCU: 0x2BF7, offset: 0x56E21, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x1B5C, symBinAddr: 0x5B5C, symSize: 0x14 }
- { offsetInCU: 0x2CAF, offset: 0x56ED9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x1B70, symBinAddr: 0x5B70, symSize: 0x14 }
- { offsetInCU: 0x2D49, offset: 0x56F73, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x1B84, symBinAddr: 0x5B84, symSize: 0x10 }
- { offsetInCU: 0x2DB1, offset: 0x56FDB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x1B94, symBinAddr: 0x5B94, symSize: 0x28 }
- { offsetInCU: 0x2DCD, offset: 0x56FF7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x1BBC, symBinAddr: 0x5BBC, symSize: 0x14 }
- { offsetInCU: 0x2E58, offset: 0x57082, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x1BEC, symBinAddr: 0x5BEC, symSize: 0x3C }
- { offsetInCU: 0x2EBC, offset: 0x570E6, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0x26A8, symBinAddr: 0x66A8, symSize: 0x38 }
- { offsetInCU: 0x2EDC, offset: 0x57106, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0x26A8, symBinAddr: 0x66A8, symSize: 0x38 }
- { offsetInCU: 0x2EF0, offset: 0x5711A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0x26A8, symBinAddr: 0x66A8, symSize: 0x38 }
- { offsetInCU: 0x2F10, offset: 0x5713A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0x26A8, symBinAddr: 0x66A8, symSize: 0x38 }
- { offsetInCU: 0x2F24, offset: 0x5714E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0x26A8, symBinAddr: 0x66A8, symSize: 0x38 }
- { offsetInCU: 0x2F38, offset: 0x57162, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0x26A8, symBinAddr: 0x66A8, symSize: 0x38 }
- { offsetInCU: 0x2F4C, offset: 0x57176, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0x26A8, symBinAddr: 0x66A8, symSize: 0x38 }
- { offsetInCU: 0x3088, offset: 0x572B2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x1A28, symBinAddr: 0x5A28, symSize: 0xC }
- { offsetInCU: 0x30BA, offset: 0x572E4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x5BD0, symSize: 0x10 }
- { offsetInCU: 0x30D6, offset: 0x57300, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x1BE0, symBinAddr: 0x5BE0, symSize: 0xC }
...

View File

@ -0,0 +1,618 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef REACHABILITY_SWIFT_H
#define REACHABILITY_SWIFT_H
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
# define __has_attribute(x) 0
#endif
#if !defined(__has_feature)
# define __has_feature(x) 0
#endif
#if !defined(__has_warning)
# define __has_warning(x) 0
#endif
#if __has_include(<swift/objc-prologue.h>)
# include <swift/objc-prologue.h>
#endif
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include <Foundation/Foundation.h>
#endif
#if defined(__cplusplus)
#include <cstdint>
#include <cstddef>
#include <cstdbool>
#include <cstring>
#include <stdlib.h>
#include <new>
#include <type_traits>
#else
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <string.h>
#endif
#if defined(__cplusplus)
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
# if __has_include(<uchar.h>)
# include <uchar.h>
# elif !defined(__cplusplus)
typedef uint_least16_t char16_t;
typedef uint_least32_t char32_t;
# endif
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#if !defined(SWIFT_PASTE)
# define SWIFT_PASTE_HELPER(x, y) x##y
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
#endif
#if !defined(SWIFT_METATYPE)
# define SWIFT_METATYPE(X) Class
#endif
#if !defined(SWIFT_CLASS_PROPERTY)
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
#if !defined(SWIFT_RUNTIME_NAME)
# if __has_attribute(objc_runtime_name)
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
# else
# define SWIFT_RUNTIME_NAME(X)
# endif
#endif
#if !defined(SWIFT_COMPILE_NAME)
# if __has_attribute(swift_name)
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
# else
# define SWIFT_COMPILE_NAME(X)
# endif
#endif
#if !defined(SWIFT_METHOD_FAMILY)
# if __has_attribute(objc_method_family)
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
# else
# define SWIFT_METHOD_FAMILY(X)
# endif
#endif
#if !defined(SWIFT_NOESCAPE)
# if __has_attribute(noescape)
# define SWIFT_NOESCAPE __attribute__((noescape))
# else
# define SWIFT_NOESCAPE
# endif
#endif
#if !defined(SWIFT_RELEASES_ARGUMENT)
# if __has_attribute(ns_consumed)
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
# else
# define SWIFT_RELEASES_ARGUMENT
# endif
#endif
#if !defined(SWIFT_WARN_UNUSED_RESULT)
# if __has_attribute(warn_unused_result)
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
# else
# define SWIFT_WARN_UNUSED_RESULT
# endif
#endif
#if !defined(SWIFT_NORETURN)
# if __has_attribute(noreturn)
# define SWIFT_NORETURN __attribute__((noreturn))
# else
# define SWIFT_NORETURN
# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# else
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# endif
#endif
#if !defined(SWIFT_RESILIENT_CLASS)
# if __has_attribute(objc_class_stub)
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
# else
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# if __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# else
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
# endif
#endif
#if !defined(SWIFT_UNAVAILABLE)
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
#endif
#if !defined(SWIFT_UNAVAILABLE_MSG)
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
#endif
#if !defined(SWIFT_AVAILABILITY)
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
#endif
#if !defined(SWIFT_WEAK_IMPORT)
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
#endif
#if !defined(SWIFT_DEPRECATED)
# define SWIFT_DEPRECATED __attribute__((deprecated))
#endif
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
#if !defined(SWIFT_DEPRECATED_OBJC)
# if __has_feature(attribute_diagnose_if_objc)
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
# else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
#if !defined(SWIFT_INDIRECT_RESULT)
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
#endif
#if !defined(SWIFT_CONTEXT)
# define SWIFT_CONTEXT __attribute__((swift_context))
#endif
#if !defined(SWIFT_ERROR_RESULT)
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
#endif
#if defined(__cplusplus)
# define SWIFT_NOEXCEPT noexcept
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
#endif
#else
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
#endif
#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
# undef any
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Reachability",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
# pragma pop_macro("any")
#endif
#if defined(__OBJC__)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif
#elif defined(__x86_64__) && __x86_64__
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef REACHABILITY_SWIFT_H
#define REACHABILITY_SWIFT_H
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
# define __has_attribute(x) 0
#endif
#if !defined(__has_feature)
# define __has_feature(x) 0
#endif
#if !defined(__has_warning)
# define __has_warning(x) 0
#endif
#if __has_include(<swift/objc-prologue.h>)
# include <swift/objc-prologue.h>
#endif
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include <Foundation/Foundation.h>
#endif
#if defined(__cplusplus)
#include <cstdint>
#include <cstddef>
#include <cstdbool>
#include <cstring>
#include <stdlib.h>
#include <new>
#include <type_traits>
#else
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <string.h>
#endif
#if defined(__cplusplus)
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
# if __has_include(<uchar.h>)
# include <uchar.h>
# elif !defined(__cplusplus)
typedef uint_least16_t char16_t;
typedef uint_least32_t char32_t;
# endif
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#if !defined(SWIFT_PASTE)
# define SWIFT_PASTE_HELPER(x, y) x##y
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
#endif
#if !defined(SWIFT_METATYPE)
# define SWIFT_METATYPE(X) Class
#endif
#if !defined(SWIFT_CLASS_PROPERTY)
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
#if !defined(SWIFT_RUNTIME_NAME)
# if __has_attribute(objc_runtime_name)
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
# else
# define SWIFT_RUNTIME_NAME(X)
# endif
#endif
#if !defined(SWIFT_COMPILE_NAME)
# if __has_attribute(swift_name)
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
# else
# define SWIFT_COMPILE_NAME(X)
# endif
#endif
#if !defined(SWIFT_METHOD_FAMILY)
# if __has_attribute(objc_method_family)
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
# else
# define SWIFT_METHOD_FAMILY(X)
# endif
#endif
#if !defined(SWIFT_NOESCAPE)
# if __has_attribute(noescape)
# define SWIFT_NOESCAPE __attribute__((noescape))
# else
# define SWIFT_NOESCAPE
# endif
#endif
#if !defined(SWIFT_RELEASES_ARGUMENT)
# if __has_attribute(ns_consumed)
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
# else
# define SWIFT_RELEASES_ARGUMENT
# endif
#endif
#if !defined(SWIFT_WARN_UNUSED_RESULT)
# if __has_attribute(warn_unused_result)
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
# else
# define SWIFT_WARN_UNUSED_RESULT
# endif
#endif
#if !defined(SWIFT_NORETURN)
# if __has_attribute(noreturn)
# define SWIFT_NORETURN __attribute__((noreturn))
# else
# define SWIFT_NORETURN
# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# else
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# endif
#endif
#if !defined(SWIFT_RESILIENT_CLASS)
# if __has_attribute(objc_class_stub)
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
# else
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# if __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# else
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
# endif
#endif
#if !defined(SWIFT_UNAVAILABLE)
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
#endif
#if !defined(SWIFT_UNAVAILABLE_MSG)
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
#endif
#if !defined(SWIFT_AVAILABILITY)
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
#endif
#if !defined(SWIFT_WEAK_IMPORT)
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
#endif
#if !defined(SWIFT_DEPRECATED)
# define SWIFT_DEPRECATED __attribute__((deprecated))
#endif
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
#if !defined(SWIFT_DEPRECATED_OBJC)
# if __has_feature(attribute_diagnose_if_objc)
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
# else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
#if !defined(SWIFT_INDIRECT_RESULT)
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
#endif
#if !defined(SWIFT_CONTEXT)
# define SWIFT_CONTEXT __attribute__((swift_context))
#endif
#if !defined(SWIFT_ERROR_RESULT)
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
#endif
#if defined(__cplusplus)
# define SWIFT_NOEXCEPT noexcept
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
#endif
#else
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
#endif
#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
# undef any
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Reachability",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
# pragma pop_macro("any")
#endif
#if defined(__OBJC__)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif
#else
#error unsupported Swift architecture
#endif

View File

@ -0,0 +1,16 @@
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double ReachabilityVersionNumber;
FOUNDATION_EXPORT const unsigned char ReachabilityVersionString[];

View File

@ -0,0 +1,98 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name Reachability
// swift-module-flags-ignorable: -enable-bare-slash-regex
import Foundation
@_exported import Reachability
import Swift
import SystemConfiguration
import _Concurrency
import _StringProcessing
import _SwiftConcurrencyShims
public enum ReachabilityError : Swift.Error {
case failedToCreateWithAddress(Darwin.sockaddr, Swift.Int32)
case failedToCreateWithHostname(Swift.String, Swift.Int32)
case unableToSetCallback(Swift.Int32)
case unableToSetDispatchQueue(Swift.Int32)
case unableToGetFlags(Swift.Int32)
}
@available(*, unavailable, renamed: "Notification.Name.reachabilityChanged")
public let ReachabilityChangedNotification: Foundation.NSNotification.Name
extension Foundation.NSNotification.Name {
public static let reachabilityChanged: Foundation.Notification.Name
}
public class Reachability {
public typealias NetworkReachable = (Reachability.Reachability) -> ()
public typealias NetworkUnreachable = (Reachability.Reachability) -> ()
@available(*, unavailable, renamed: "Connection")
public enum NetworkStatus : Swift.CustomStringConvertible {
case notReachable, reachableViaWiFi, reachableViaWWAN
public var description: Swift.String {
get
}
public static func == (a: Reachability.Reachability.NetworkStatus, b: Reachability.Reachability.NetworkStatus) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public enum Connection : Swift.CustomStringConvertible {
case unavailable, wifi, cellular
public var description: Swift.String {
get
}
@available(*, deprecated, renamed: "unavailable")
public static let none: Reachability.Reachability.Connection
public static func == (a: Reachability.Reachability.Connection, b: Reachability.Reachability.Connection) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public var whenReachable: Reachability.Reachability.NetworkReachable?
public var whenUnreachable: Reachability.Reachability.NetworkUnreachable?
@available(*, deprecated, renamed: "allowsCellularConnection")
final public let reachableOnWWAN: Swift.Bool
public var allowsCellularConnection: Swift.Bool
public var notificationCenter: Foundation.NotificationCenter
@available(*, deprecated, renamed: "connection.description")
public var currentReachabilityString: Swift.String {
get
}
@available(*, unavailable, renamed: "connection")
public var currentReachabilityStatus: Reachability.Reachability.Connection {
get
}
public var connection: Reachability.Reachability.Connection {
get
}
required public init(reachabilityRef: SystemConfiguration.SCNetworkReachability, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main)
convenience public init(hostname: Swift.String, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
convenience public init(queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
@objc deinit
}
extension Reachability.Reachability {
public func startNotifier() throws
public func stopNotifier()
@available(*, deprecated, message: "Please use `connection != .none`")
public var isReachable: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .cellular`")
public var isReachableViaWWAN: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .wifi`")
public var isReachableViaWiFi: Swift.Bool {
get
}
public var description: Swift.String {
get
}
}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Equatable {}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Hashable {}
extension Reachability.Reachability.Connection : Swift.Equatable {}
extension Reachability.Reachability.Connection : Swift.Hashable {}

View File

@ -0,0 +1,98 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name Reachability
// swift-module-flags-ignorable: -enable-bare-slash-regex
import Foundation
@_exported import Reachability
import Swift
import SystemConfiguration
import _Concurrency
import _StringProcessing
import _SwiftConcurrencyShims
public enum ReachabilityError : Swift.Error {
case failedToCreateWithAddress(Darwin.sockaddr, Swift.Int32)
case failedToCreateWithHostname(Swift.String, Swift.Int32)
case unableToSetCallback(Swift.Int32)
case unableToSetDispatchQueue(Swift.Int32)
case unableToGetFlags(Swift.Int32)
}
@available(*, unavailable, renamed: "Notification.Name.reachabilityChanged")
public let ReachabilityChangedNotification: Foundation.NSNotification.Name
extension Foundation.NSNotification.Name {
public static let reachabilityChanged: Foundation.Notification.Name
}
public class Reachability {
public typealias NetworkReachable = (Reachability.Reachability) -> ()
public typealias NetworkUnreachable = (Reachability.Reachability) -> ()
@available(*, unavailable, renamed: "Connection")
public enum NetworkStatus : Swift.CustomStringConvertible {
case notReachable, reachableViaWiFi, reachableViaWWAN
public var description: Swift.String {
get
}
public static func == (a: Reachability.Reachability.NetworkStatus, b: Reachability.Reachability.NetworkStatus) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public enum Connection : Swift.CustomStringConvertible {
case unavailable, wifi, cellular
public var description: Swift.String {
get
}
@available(*, deprecated, renamed: "unavailable")
public static let none: Reachability.Reachability.Connection
public static func == (a: Reachability.Reachability.Connection, b: Reachability.Reachability.Connection) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public var whenReachable: Reachability.Reachability.NetworkReachable?
public var whenUnreachable: Reachability.Reachability.NetworkUnreachable?
@available(*, deprecated, renamed: "allowsCellularConnection")
final public let reachableOnWWAN: Swift.Bool
public var allowsCellularConnection: Swift.Bool
public var notificationCenter: Foundation.NotificationCenter
@available(*, deprecated, renamed: "connection.description")
public var currentReachabilityString: Swift.String {
get
}
@available(*, unavailable, renamed: "connection")
public var currentReachabilityStatus: Reachability.Reachability.Connection {
get
}
public var connection: Reachability.Reachability.Connection {
get
}
required public init(reachabilityRef: SystemConfiguration.SCNetworkReachability, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main)
convenience public init(hostname: Swift.String, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
convenience public init(queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
@objc deinit
}
extension Reachability.Reachability {
public func startNotifier() throws
public func stopNotifier()
@available(*, deprecated, message: "Please use `connection != .none`")
public var isReachable: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .cellular`")
public var isReachableViaWWAN: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .wifi`")
public var isReachableViaWiFi: Swift.Bool {
get
}
public var description: Swift.String {
get
}
}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Equatable {}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Hashable {}
extension Reachability.Reachability.Connection : Swift.Equatable {}
extension Reachability.Reachability.Connection : Swift.Hashable {}

View File

@ -0,0 +1,98 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name Reachability
// swift-module-flags-ignorable: -enable-bare-slash-regex
import Foundation
@_exported import Reachability
import Swift
import SystemConfiguration
import _Concurrency
import _StringProcessing
import _SwiftConcurrencyShims
public enum ReachabilityError : Swift.Error {
case failedToCreateWithAddress(Darwin.sockaddr, Swift.Int32)
case failedToCreateWithHostname(Swift.String, Swift.Int32)
case unableToSetCallback(Swift.Int32)
case unableToSetDispatchQueue(Swift.Int32)
case unableToGetFlags(Swift.Int32)
}
@available(*, unavailable, renamed: "Notification.Name.reachabilityChanged")
public let ReachabilityChangedNotification: Foundation.NSNotification.Name
extension Foundation.NSNotification.Name {
public static let reachabilityChanged: Foundation.Notification.Name
}
public class Reachability {
public typealias NetworkReachable = (Reachability.Reachability) -> ()
public typealias NetworkUnreachable = (Reachability.Reachability) -> ()
@available(*, unavailable, renamed: "Connection")
public enum NetworkStatus : Swift.CustomStringConvertible {
case notReachable, reachableViaWiFi, reachableViaWWAN
public var description: Swift.String {
get
}
public static func == (a: Reachability.Reachability.NetworkStatus, b: Reachability.Reachability.NetworkStatus) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public enum Connection : Swift.CustomStringConvertible {
case unavailable, wifi, cellular
public var description: Swift.String {
get
}
@available(*, deprecated, renamed: "unavailable")
public static let none: Reachability.Reachability.Connection
public static func == (a: Reachability.Reachability.Connection, b: Reachability.Reachability.Connection) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public var whenReachable: Reachability.Reachability.NetworkReachable?
public var whenUnreachable: Reachability.Reachability.NetworkUnreachable?
@available(*, deprecated, renamed: "allowsCellularConnection")
final public let reachableOnWWAN: Swift.Bool
public var allowsCellularConnection: Swift.Bool
public var notificationCenter: Foundation.NotificationCenter
@available(*, deprecated, renamed: "connection.description")
public var currentReachabilityString: Swift.String {
get
}
@available(*, unavailable, renamed: "connection")
public var currentReachabilityStatus: Reachability.Reachability.Connection {
get
}
public var connection: Reachability.Reachability.Connection {
get
}
required public init(reachabilityRef: SystemConfiguration.SCNetworkReachability, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main)
convenience public init(hostname: Swift.String, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
convenience public init(queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
@objc deinit
}
extension Reachability.Reachability {
public func startNotifier() throws
public func stopNotifier()
@available(*, deprecated, message: "Please use `connection != .none`")
public var isReachable: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .cellular`")
public var isReachableViaWWAN: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .wifi`")
public var isReachableViaWiFi: Swift.Bool {
get
}
public var description: Swift.String {
get
}
}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Equatable {}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Hashable {}
extension Reachability.Reachability.Connection : Swift.Equatable {}
extension Reachability.Reachability.Connection : Swift.Hashable {}

View File

@ -0,0 +1,98 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name Reachability
// swift-module-flags-ignorable: -enable-bare-slash-regex
import Foundation
@_exported import Reachability
import Swift
import SystemConfiguration
import _Concurrency
import _StringProcessing
import _SwiftConcurrencyShims
public enum ReachabilityError : Swift.Error {
case failedToCreateWithAddress(Darwin.sockaddr, Swift.Int32)
case failedToCreateWithHostname(Swift.String, Swift.Int32)
case unableToSetCallback(Swift.Int32)
case unableToSetDispatchQueue(Swift.Int32)
case unableToGetFlags(Swift.Int32)
}
@available(*, unavailable, renamed: "Notification.Name.reachabilityChanged")
public let ReachabilityChangedNotification: Foundation.NSNotification.Name
extension Foundation.NSNotification.Name {
public static let reachabilityChanged: Foundation.Notification.Name
}
public class Reachability {
public typealias NetworkReachable = (Reachability.Reachability) -> ()
public typealias NetworkUnreachable = (Reachability.Reachability) -> ()
@available(*, unavailable, renamed: "Connection")
public enum NetworkStatus : Swift.CustomStringConvertible {
case notReachable, reachableViaWiFi, reachableViaWWAN
public var description: Swift.String {
get
}
public static func == (a: Reachability.Reachability.NetworkStatus, b: Reachability.Reachability.NetworkStatus) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public enum Connection : Swift.CustomStringConvertible {
case unavailable, wifi, cellular
public var description: Swift.String {
get
}
@available(*, deprecated, renamed: "unavailable")
public static let none: Reachability.Reachability.Connection
public static func == (a: Reachability.Reachability.Connection, b: Reachability.Reachability.Connection) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
public var whenReachable: Reachability.Reachability.NetworkReachable?
public var whenUnreachable: Reachability.Reachability.NetworkUnreachable?
@available(*, deprecated, renamed: "allowsCellularConnection")
final public let reachableOnWWAN: Swift.Bool
public var allowsCellularConnection: Swift.Bool
public var notificationCenter: Foundation.NotificationCenter
@available(*, deprecated, renamed: "connection.description")
public var currentReachabilityString: Swift.String {
get
}
@available(*, unavailable, renamed: "connection")
public var currentReachabilityStatus: Reachability.Reachability.Connection {
get
}
public var connection: Reachability.Reachability.Connection {
get
}
required public init(reachabilityRef: SystemConfiguration.SCNetworkReachability, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main)
convenience public init(hostname: Swift.String, queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
convenience public init(queueQoS: Dispatch.DispatchQoS = .default, targetQueue: Dispatch.DispatchQueue? = nil, notificationQueue: Dispatch.DispatchQueue? = .main) throws
@objc deinit
}
extension Reachability.Reachability {
public func startNotifier() throws
public func stopNotifier()
@available(*, deprecated, message: "Please use `connection != .none`")
public var isReachable: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .cellular`")
public var isReachableViaWWAN: Swift.Bool {
get
}
@available(*, deprecated, message: "Please use `connection == .wifi`")
public var isReachableViaWiFi: Swift.Bool {
get
}
public var description: Swift.String {
get
}
}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Equatable {}
@available(*, unavailable, renamed: "Connection")
extension Reachability.Reachability.NetworkStatus : Swift.Hashable {}
extension Reachability.Reachability.Connection : Swift.Equatable {}
extension Reachability.Reachability.Connection : Swift.Hashable {}

View File

@ -0,0 +1,11 @@
framework module Reachability {
umbrella header "ReachabilitySwift-umbrella.h"
export *
module * { export * }
}
module Reachability.Swift {
header "Reachability-Swift.h"
requires objc
}

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
</dict>
</plist>

View File

@ -0,0 +1,289 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>Headers/Reachability-Swift.h</key>
<data>
QIRZsfhgrsg7rZrxuOcb1RIsA2M=
</data>
<key>Headers/ReachabilitySwift-umbrella.h</key>
<data>
dv1d3sDf44xfErNJ558NbccQdS4=
</data>
<key>Info.plist</key>
<data>
qtPBFsOoj0y9KVmJE2nIqw45G8Q=
</data>
<key>Modules/Reachability.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo</key>
<data>
/a4y7Ahv1M/jCKMHumfyv5eRO/s=
</data>
<key>Modules/Reachability.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
<data>
Igac2eafnoMW/E3JrMhZc0MRI6M=
</data>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
<data>
K2mDkUAxGU9yRnS6JkYlk3pywlA=
</data>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
<data>
xdUJpy2v9lZ1KTFgAIPUNGjJdMU=
</data>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
3jIHPmJF1meywkUE81FeDVT/lkQ=
</data>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<data>
xdUJpy2v9lZ1KTFgAIPUNGjJdMU=
</data>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
GXLkpu9jdbXyMf8y14f6BmXiBJw=
</data>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<data>
K2mDkUAxGU9yRnS6JkYlk3pywlA=
</data>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
<data>
hbhXjFmfAEr5wj8iGs+r0iqBbXE=
</data>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
iABxIS77i/gjJR6RFALYyCTx6zc=
</data>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
hbhXjFmfAEr5wj8iGs+r0iqBbXE=
</data>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
h9FJYnpJ1hn/y/YtrxATEPn/YUM=
</data>
<key>Modules/module.modulemap</key>
<data>
Bl/EyqzAD0AYQbxSCDX8RFUdhu0=
</data>
<key>ReachabilitySwift.bundle/Info.plist</key>
<data>
YUkzx8xvAuOg1GyMxIEGkfIPkIA=
</data>
<key>ReachabilitySwift.bundle/PrivacyInfo.xcprivacy</key>
<data>
ucg9pita0v8d353x3NuGfxweQYU=
</data>
</dict>
<key>files2</key>
<dict>
<key>Headers/Reachability-Swift.h</key>
<dict>
<key>hash2</key>
<data>
k35kArHgtMBGK7vcm/sIA9p/Q8g/mBjneqBmHDTKMGc=
</data>
</dict>
<key>Headers/ReachabilitySwift-umbrella.h</key>
<dict>
<key>hash2</key>
<data>
M52wzf0GUYnLn+S7XPakRsaY+bs7XttfBVFQKOkapRI=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo</key>
<dict>
<key>hash2</key>
<data>
nMeyFNqIVbM164hJb8w/ty+6cW1pvyrKrTb7NBMqVsw=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
<dict>
<key>hash2</key>
<data>
ywSnbbn7FK87/MAazLMJJOVCXhWQJPJ1Ta+nJaiXeDQ=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
<dict>
<key>hash2</key>
<data>
tmiv7kjpxaoueG9WsUj1Licb2PWaSUyNQY8HnCL5qFs=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
noh8bCVwfTXxDSBerC2QDMYA7afosL/f+G0PJ5Cpnrc=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
KYR/Qn0JpVRawlp8avhUeRZ+LUqqk36sug45yLg7ubc=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
noh8bCVwfTXxDSBerC2QDMYA7afosL/f+G0PJ5Cpnrc=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
0osmrPhxNIw83L/EpdzU0n8ZUHEklq7fzrRIbE0/rPc=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<dict>
<key>hash2</key>
<data>
tmiv7kjpxaoueG9WsUj1Licb2PWaSUyNQY8HnCL5qFs=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
1eNZtRASgDUHUtjbXtMdO3D4tbtCIfaxGDmqWyWTics=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
V81LDN9hObjhiPIA1YLBsI5yfffgenKrxw5DzXIru7I=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
1eNZtRASgDUHUtjbXtMdO3D4tbtCIfaxGDmqWyWTics=
</data>
</dict>
<key>Modules/Reachability.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
TuADm6hE0rjV5x1e0hBAOrOz+IsTaGsI4VMTbfclHSc=
</data>
</dict>
<key>Modules/module.modulemap</key>
<dict>
<key>hash2</key>
<data>
qtgp/Wi7zcUv1p7LtJVupyvE5BPy5laMlVq9G85sXUs=
</data>
</dict>
<key>ReachabilitySwift.bundle/Info.plist</key>
<dict>
<key>hash2</key>
<data>
SqxmAft+nVA6Dob2zNh8nZjGhfYxiuvswFSYB71vy/w=
</data>
</dict>
<key>ReachabilitySwift.bundle/PrivacyInfo.xcprivacy</key>
<dict>
<key>hash2</key>
<data>
Uh6274Qwdz5cAQ4YOP6d2PpdYre3bRzqjX2NqtyxROI=
</data>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^.*</key>
<true/>
<key>^.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^.*</key>
<true/>
<key>^.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>