diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1a1d6c9..2151b52 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,9 +52,9 @@ Publishing is automated based on the branch committed to. When a commit or merge | Branch Name | Build Type | NPM Tag | Example NPM Version | |---|---|---|---| -| dev | dev | dev | @capacitor/os-inappbrowser@1.0.0-dev.1 | -| next | next (these are betas/alphas) | next | @capacitor/os-inappbrowser@1.0.1-next.1 | -| main | latest | latest | @capacitor/os-inappbrowser@1.0.2 | +| dev | dev | dev | @capacitor/inappbrowser@1.0.0-dev.1 | +| next | next (these are betas/alphas) | next | @capacitor/inappbrowser@1.0.1-next.1 | +| main | latest | latest | @capacitor/inappbrowser@1.0.2 | Dev work should be done by creating and merging PR's into the `dev` branch until a feature set is complete enough to then merge the `dev` branch into the `next` branch where it becomes a beta/alpha tagged under `next` for testing teams to use before full release. Upon completed testing the `next` branch is merged into `main` for a full release to be made. The `main` branch should then be merged into `dev` and `next` to keep them up to date with the latest code base. diff --git a/CapacitorInappbrowser.podspec b/CapacitorInappbrowser.podspec index 01c0ede..36e0b9f 100644 --- a/CapacitorInappbrowser.podspec +++ b/CapacitorInappbrowser.podspec @@ -10,10 +10,9 @@ Pod::Spec.new do |s| s.homepage = package['repository']['url'] s.author = package['author'] s.source = { :git => package['repository']['url'], :tag => s.version.to_s } - #s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}' s.source_files = 'ios/Sources/InAppBrowserPlugin/*.{swift,h,m,c,cc,mm,cpp}' - s.vendored_frameworks = 'ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework' s.ios.deployment_target = '13.0' + s.dependency 'OSInAppBrowserLib', spec='~> 1.0' s.dependency 'Capacitor' s.swift_version = '5.1' end diff --git a/android/build.gradle b/android/build.gradle index 3f7bda5..95f23cf 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -75,9 +75,8 @@ repositories { dependencies { // implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation "com.github.outsystems:osinappbrowser-android:0.+@aar" implementation project(':capacitor-android') - implementation "com.github.outsystems:osinappbrowser-android:0.0.29@aar" + implementation "com.github.outsystems:osinappbrowser-android:1.+@aar" implementation 'androidx.browser:browser:1.8.0' implementation "androidx.constraintlayout:constraintlayout:2.2.0-alpha13" implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion" diff --git a/example-app/android/app/capacitor.build.gradle b/example-app/android/app/capacitor.build.gradle index c4a0670..99f157e 100644 --- a/example-app/android/app/capacitor.build.gradle +++ b/example-app/android/app/capacitor.build.gradle @@ -12,7 +12,7 @@ dependencies { implementation project(':capacitor-app') implementation project(':capacitor-haptics') implementation project(':capacitor-keyboard') - implementation project(':capacitor-os-inappbrowser') + implementation project(':capacitor-inappbrowser') implementation project(':capacitor-status-bar') } diff --git a/example-app/android/capacitor.settings.gradle b/example-app/android/capacitor.settings.gradle index e13cddf..2f026c5 100644 --- a/example-app/android/capacitor.settings.gradle +++ b/example-app/android/capacitor.settings.gradle @@ -11,8 +11,8 @@ project(':capacitor-haptics').projectDir = new File('../node_modules/@capacitor/ include ':capacitor-keyboard' project(':capacitor-keyboard').projectDir = new File('../node_modules/@capacitor/keyboard/android') -include ':capacitor-os-inappbrowser' -project(':capacitor-os-inappbrowser').projectDir = new File('../node_modules/@capacitor/os-inappbrowser/android') +include ':capacitor-inappbrowser' +project(':capacitor-inappbrowser').projectDir = new File('../node_modules/@capacitor/inappbrowser/android') include ':capacitor-status-bar' project(':capacitor-status-bar').projectDir = new File('../node_modules/@capacitor/status-bar/android') diff --git a/example-app/ios/App/App.xcodeproj/project.pbxproj b/example-app/ios/App/App.xcodeproj/project.pbxproj index 75cb521..c42a56f 100644 --- a/example-app/ios/App/App.xcodeproj/project.pbxproj +++ b/example-app/ios/App/App.xcodeproj/project.pbxproj @@ -349,12 +349,13 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = EVSWK8BA55; INFOPLIST_FILE = App/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MARKETING_VERSION = 1.0; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; - PRODUCT_BUNDLE_IDENTIFIER = io.ionic.starter; + PRODUCT_BUNDLE_IDENTIFIER = com.outsystems.rd; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_VERSION = 5.0; @@ -367,14 +368,17 @@ baseConfigurationReference = AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = F898TC6427; INFOPLIST_FILE = App/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = io.ionic.starter; + PRODUCT_BUNDLE_IDENTIFIER = com.outsystems.rd; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_ACTIVE_COMPILATION_CONDITIONS = ""; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; diff --git a/example-app/ios/App/App/Info.plist b/example-app/ios/App/App/Info.plist index cf1affd..109d36e 100644 --- a/example-app/ios/App/App/Info.plist +++ b/example-app/ios/App/App/Info.plist @@ -5,7 +5,7 @@ CFBundleDevelopmentRegion en CFBundleDisplayName - example-app + example-app CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier diff --git a/example-app/ios/App/Podfile b/example-app/ios/App/Podfile index 1d4a0cc..eec530b 100644 --- a/example-app/ios/App/Podfile +++ b/example-app/ios/App/Podfile @@ -14,7 +14,7 @@ def capacitor_pods pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app' pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics' pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard' - pod 'CapacitorOsInappbrowser', :path => '../../..' + pod 'CapacitorInappbrowser', :path => '../../..' pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar' end diff --git a/example-app/package-lock.json b/example-app/package-lock.json index 80d217f..188c8bc 100644 --- a/example-app/package-lock.json +++ b/example-app/package-lock.json @@ -10,11 +10,11 @@ "dependencies": { "@capacitor/android": "^6.0.0", "@capacitor/app": "6.0.0", - "@capacitor/core": "6.0.0", + "@capacitor/core": "^6.0.0", "@capacitor/haptics": "6.0.0", + "@capacitor/inappbrowser": "file:../", "@capacitor/ios": "^6.0.0", "@capacitor/keyboard": "6.0.0", - "@capacitor/os-inappbrowser": "file:../", "@capacitor/status-bar": "6.0.0", "@ionic/react": "^8.0.0", "@ionic/react-router": "^8.0.0", @@ -47,22 +47,30 @@ } }, "..": { - "name": "@capacitor/os-inappbrowser", - "version": "0.0.1", + "name": "@capacitor/inappbrowser", + "version": "1.0.0-dev.5", "license": "MIT", "devDependencies": { "@capacitor/android": "^6.0.0", "@capacitor/core": "^6.0.0", "@capacitor/docgen": "^0.2.2", "@capacitor/ios": "^6.0.0", - "@ionic/eslint-config": "^0.3.0", - "@ionic/prettier-config": "^1.0.1", - "@ionic/swiftlint-config": "^1.1.2", - "eslint": "^7.11.0", - "prettier": "~2.3.0", - "prettier-plugin-java": "~1.0.2", + "@eslint/js": "^8.56.0", + "@rollup/wasm-node": "~4.19.0", + "@semantic-release/changelog": "^6.0.3", + "@semantic-release/git": "^10.0.1", + "@semantic-release/github": "^10.1.2", + "@semantic-release/npm": "^12.0.1", + "@typescript-eslint/eslint-plugin": "~7.17.0", + "@typescript-eslint/parser": "~7.17.0", + "eslint": "^8.56.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-prettier": "^5.2.1", + "prettier": "~3.3.3", + "prettier-plugin-java": "~2.6.4", "rimraf": "^3.0.2", - "swiftlint": "^1.0.1", + "semantic-release": "^24.0.0", + "swiftlint": "^1.0.2", "typescript": "~5.4.5", "vite": "^5.2.11", "vite-plugin-dts": "^3.9.1" @@ -72,16 +80,18 @@ } }, "node_modules/@adobe/css-tools": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.3.tgz", - "integrity": "sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==", - "dev": true + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.0.tgz", + "integrity": "sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==", + "dev": true, + "license": "MIT" }, "node_modules/@ampproject/remapping": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" @@ -91,12 +101,13 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", - "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/highlight": "^7.24.2", + "@babel/highlight": "^7.24.7", "picocolors": "^1.0.0" }, "engines": { @@ -104,30 +115,32 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", - "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", + "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", - "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", "dev": true, + "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.24.5", - "@babel/helpers": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-module-transforms": "^7.25.2", + "@babel/helpers": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.2", + "@babel/types": "^7.25.2", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -147,17 +160,19 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", - "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", + "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.5", + "@babel/types": "^7.25.0", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" @@ -167,38 +182,42 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", - "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", + "@babel/compat-data": "^7.25.2", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -211,24 +230,24 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz", - "integrity": "sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.24.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.24.5", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.0.tgz", + "integrity": "sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/traverse": "^7.25.0", "semver": "^6.3.1" }, "engines": { @@ -243,17 +262,19 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", - "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz", + "integrity": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.7", "regexpu-core": "^5.3.1", "semver": "^6.3.1" }, @@ -269,6 +290,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } @@ -278,6 +300,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", @@ -289,75 +312,45 @@ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dev": true, - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz", - "integrity": "sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.5" + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", - "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.0" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz", - "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.24.3", - "@babel/helper-simple-access": "^7.24.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/helper-validator-identifier": "^7.24.5" + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.2" }, "engines": { "node": ">=6.9.0" @@ -367,35 +360,38 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz", - "integrity": "sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", + "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-wrap-function": "^7.25.0", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -405,14 +401,15 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", - "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5" + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -422,103 +419,100 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz", - "integrity": "sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", - "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", - "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", - "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.5.tgz", - "integrity": "sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", + "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-function-name": "^7.23.0", - "@babel/template": "^7.24.0", - "@babel/types": "^7.24.5" + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.0", + "@babel/types": "^7.25.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", - "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", + "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5" + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", - "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.24.5", + "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" @@ -532,6 +526,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, @@ -544,6 +539,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -558,6 +554,7 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "1.1.3" } @@ -566,13 +563,15 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@babel/highlight/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -582,6 +581,7 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -591,6 +591,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, @@ -599,10 +600,14 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz", - "integrity": "sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==", + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", + "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.2" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -611,13 +616,30 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.5.tgz", - "integrity": "sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==", + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz", + "integrity": "sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz", + "integrity": "sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -627,12 +649,13 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", - "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz", + "integrity": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -642,14 +665,15 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", - "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -659,13 +683,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", - "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz", + "integrity": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -679,6 +704,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" }, @@ -691,6 +717,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -703,6 +730,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -715,6 +743,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -730,6 +759,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -742,6 +772,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" }, @@ -750,12 +781,13 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", - "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -765,12 +797,13 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", - "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -784,6 +817,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -796,6 +830,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -808,6 +843,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -820,6 +856,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -832,6 +869,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -844,6 +882,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -856,6 +895,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -868,6 +908,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -880,6 +921,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -895,6 +937,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -910,6 +953,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -922,12 +966,13 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", - "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -937,15 +982,16 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", - "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz", + "integrity": "sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-remap-async-to-generator": "^7.25.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -955,14 +1001,15 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", - "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20" + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -972,12 +1019,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", - "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -987,12 +1035,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.5.tgz", - "integrity": "sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", + "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1002,13 +1051,14 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", - "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1018,13 +1068,14 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz", - "integrity": "sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.4", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -1035,18 +1086,17 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.5.tgz", - "integrity": "sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-split-export-declaration": "^7.24.5", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.0.tgz", + "integrity": "sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/traverse": "^7.25.0", "globals": "^11.1.0" }, "engines": { @@ -1057,13 +1107,14 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", - "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/template": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1073,12 +1124,13 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.5.tgz", - "integrity": "sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", + "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1088,13 +1140,14 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", - "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1104,12 +1157,13 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", - "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1118,13 +1172,31 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz", + "integrity": "sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", - "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -1135,13 +1207,14 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", - "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1151,12 +1224,13 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", - "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -1167,13 +1241,14 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", - "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1183,14 +1258,15 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", - "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", + "version": "7.25.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz", + "integrity": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.1" }, "engines": { "node": ">=6.9.0" @@ -1200,12 +1276,13 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", - "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -1216,12 +1293,13 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", - "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz", + "integrity": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1231,12 +1309,13 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", - "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -1247,12 +1326,13 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", - "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1262,13 +1342,14 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", - "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1278,14 +1359,15 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", - "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-simple-access": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-simple-access": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1295,15 +1377,16 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", - "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", + "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-module-transforms": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -1313,13 +1396,14 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", - "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1329,13 +1413,14 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1345,12 +1430,13 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", - "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1360,12 +1446,13 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", - "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -1376,12 +1463,13 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", - "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -1392,15 +1480,16 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.5.tgz", - "integrity": "sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.5" + "@babel/plugin-transform-parameters": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1410,13 +1499,14 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", - "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1426,12 +1516,13 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", - "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -1442,13 +1533,14 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.5.tgz", - "integrity": "sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", + "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -1459,12 +1551,13 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.5.tgz", - "integrity": "sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1474,13 +1567,14 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", - "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1490,14 +1584,15 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.5.tgz", - "integrity": "sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.5", - "@babel/helper-plugin-utils": "^7.24.5", + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -1508,12 +1603,13 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", - "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1523,12 +1619,13 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.5.tgz", - "integrity": "sha512-RtCJoUO2oYrYwFPtR1/jkoBEcFuI1ae9a9IMxeyAVa3a1Ap4AnxmyIKG2b2FaJKqkidw/0cxRbWN+HOs6ZWd1w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", + "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1538,12 +1635,13 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.1.tgz", - "integrity": "sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", + "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1553,12 +1651,13 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", - "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "regenerator-transform": "^0.15.2" }, "engines": { @@ -1569,12 +1668,13 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", - "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1584,12 +1684,13 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", - "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1599,13 +1700,14 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", - "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1615,12 +1717,13 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", - "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1630,12 +1733,13 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", - "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1645,12 +1749,13 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.5.tgz", - "integrity": "sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", + "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1660,12 +1765,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", - "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1675,13 +1781,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", - "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1691,13 +1798,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", - "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1707,13 +1815,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", - "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1723,27 +1832,29 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.5.tgz", - "integrity": "sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.24.4", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.3.tgz", + "integrity": "sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.25.2", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.3", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.1", - "@babel/plugin-syntax-import-attributes": "^7.24.1", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -1755,59 +1866,60 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.1", - "@babel/plugin-transform-async-generator-functions": "^7.24.3", - "@babel/plugin-transform-async-to-generator": "^7.24.1", - "@babel/plugin-transform-block-scoped-functions": "^7.24.1", - "@babel/plugin-transform-block-scoping": "^7.24.5", - "@babel/plugin-transform-class-properties": "^7.24.1", - "@babel/plugin-transform-class-static-block": "^7.24.4", - "@babel/plugin-transform-classes": "^7.24.5", - "@babel/plugin-transform-computed-properties": "^7.24.1", - "@babel/plugin-transform-destructuring": "^7.24.5", - "@babel/plugin-transform-dotall-regex": "^7.24.1", - "@babel/plugin-transform-duplicate-keys": "^7.24.1", - "@babel/plugin-transform-dynamic-import": "^7.24.1", - "@babel/plugin-transform-exponentiation-operator": "^7.24.1", - "@babel/plugin-transform-export-namespace-from": "^7.24.1", - "@babel/plugin-transform-for-of": "^7.24.1", - "@babel/plugin-transform-function-name": "^7.24.1", - "@babel/plugin-transform-json-strings": "^7.24.1", - "@babel/plugin-transform-literals": "^7.24.1", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", - "@babel/plugin-transform-member-expression-literals": "^7.24.1", - "@babel/plugin-transform-modules-amd": "^7.24.1", - "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/plugin-transform-modules-systemjs": "^7.24.1", - "@babel/plugin-transform-modules-umd": "^7.24.1", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.24.1", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", - "@babel/plugin-transform-numeric-separator": "^7.24.1", - "@babel/plugin-transform-object-rest-spread": "^7.24.5", - "@babel/plugin-transform-object-super": "^7.24.1", - "@babel/plugin-transform-optional-catch-binding": "^7.24.1", - "@babel/plugin-transform-optional-chaining": "^7.24.5", - "@babel/plugin-transform-parameters": "^7.24.5", - "@babel/plugin-transform-private-methods": "^7.24.1", - "@babel/plugin-transform-private-property-in-object": "^7.24.5", - "@babel/plugin-transform-property-literals": "^7.24.1", - "@babel/plugin-transform-regenerator": "^7.24.1", - "@babel/plugin-transform-reserved-words": "^7.24.1", - "@babel/plugin-transform-shorthand-properties": "^7.24.1", - "@babel/plugin-transform-spread": "^7.24.1", - "@babel/plugin-transform-sticky-regex": "^7.24.1", - "@babel/plugin-transform-template-literals": "^7.24.1", - "@babel/plugin-transform-typeof-symbol": "^7.24.5", - "@babel/plugin-transform-unicode-escapes": "^7.24.1", - "@babel/plugin-transform-unicode-property-regex": "^7.24.1", - "@babel/plugin-transform-unicode-regex": "^7.24.1", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.0", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.25.0", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.25.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.25.0", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.10.4", "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.31.0", + "core-js-compat": "^3.37.1", "semver": "^6.3.1" }, "engines": { @@ -1822,6 +1934,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } @@ -1831,6 +1944,7 @@ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", @@ -1844,12 +1958,14 @@ "version": "0.8.0", "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@babel/runtime": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.5.tgz", - "integrity": "sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", + "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", + "license": "MIT", "dependencies": { "regenerator-runtime": "^0.14.0" }, @@ -1858,33 +1974,32 @@ } }, "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.5.tgz", - "integrity": "sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/types": "^7.24.5", + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", + "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.3", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.2", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -1893,13 +2008,14 @@ } }, "node_modules/@babel/types": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz", - "integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", + "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.24.1", - "@babel/helper-validator-identifier": "^7.24.5", + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, "engines": { @@ -1907,17 +2023,19 @@ } }, "node_modules/@capacitor/android": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@capacitor/android/-/android-6.0.0.tgz", - "integrity": "sha512-NwL87VO9F1WY/EgvJZN9pIhjejq688k2fRW6XWNLVe3cgGE6nUb9J34KI68fhx3139cf2LVGPUYs+mwZC8esiQ==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/@capacitor/android/-/android-6.1.2.tgz", + "integrity": "sha512-Yh0gQDY1bgRrL25J6ecIlvvs2kF8iNSwIPXjyw6Yz9mnwYxBazF5KZbjpKtGPnJgicJhFkYGsqOkEtxrve0EoQ==", + "license": "MIT", "peerDependencies": { - "@capacitor/core": "^6.0.0" + "@capacitor/core": "^6.1.0" } }, "node_modules/@capacitor/app": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/@capacitor/app/-/app-6.0.0.tgz", "integrity": "sha512-X5UGd90Jh5p9rmoPyMqFyFWqOypdJgVJhYcM5X1YyDVJJGzmJ5MuYv1+ajj5DW9Qyh+5a3th9WYptdGby8jidA==", + "license": "MIT", "peerDependencies": { "@capacitor/core": "^6.0.0" } @@ -1927,6 +2045,7 @@ "resolved": "https://registry.npmjs.org/@capacitor/cli/-/cli-6.0.0.tgz", "integrity": "sha512-6z30P0mr53l0VXPwFjzDVuKIt1991bqUSSfShTT2efWN+rBSGSAH2bPID6qSZornH1n5R5Lh/UHq/aGuW523MQ==", "dev": true, + "license": "MIT", "dependencies": { "@ionic/cli-framework-output": "^2.2.5", "@ionic/utils-fs": "^3.1.6", @@ -1956,9 +2075,10 @@ } }, "node_modules/@capacitor/core": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@capacitor/core/-/core-6.0.0.tgz", - "integrity": "sha512-NvxIQsJcMiIV+Le1DilR2GGyQQbDInfXK1UywGROQ5mycdFlW5XoAPZ+MKnFGB123RoEgE3uhDGgwTXUmSlX9A==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/@capacitor/core/-/core-6.1.2.tgz", + "integrity": "sha512-xFy1/4qLFLp5WCIzIhtwUuVNNoz36+V7/BzHmLqgVJcvotc4MMjswW/TshnPQaLLujEOaLkA4h8ZJ0uoK3ImGg==", + "license": "MIT", "dependencies": { "tslib": "^2.1.0" } @@ -1967,34 +2087,38 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/@capacitor/haptics/-/haptics-6.0.0.tgz", "integrity": "sha512-z2TmB+pTbd98Il2I1xpZGClCFwORxxP2m9f1a0rh70c2ubj2atVyZctgxrx1fuoExZTNGSxHaylWfrmjmtelVg==", + "license": "MIT", "peerDependencies": { "@capacitor/core": "^6.0.0" } }, + "node_modules/@capacitor/inappbrowser": { + "resolved": "..", + "link": true + }, "node_modules/@capacitor/ios": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@capacitor/ios/-/ios-6.0.0.tgz", - "integrity": "sha512-7mAs3gjWiE5DPM4AGPduqFSDGXCPwwqQRMzbohVway7/cTWnHomHV8mIojMZE4GILeWO2fILbyu3C8q9pHg2vg==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/@capacitor/ios/-/ios-6.1.2.tgz", + "integrity": "sha512-HaeW68KisBd/7TmavzPDlL2bpoDK5AjR2ZYrqU4TlGwM88GtQfvduBCAlSCj20X0w/4+rWMkseD9dAAkacjiyQ==", + "license": "MIT", "peerDependencies": { - "@capacitor/core": "^6.0.0" + "@capacitor/core": "^6.1.0" } }, "node_modules/@capacitor/keyboard": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/@capacitor/keyboard/-/keyboard-6.0.0.tgz", "integrity": "sha512-pPX/PQWWjw5ce47kHEYv6IWlHzuhAxgXihqEAAAGLdwK3u3srgGWCljXrYS9juVBPi/lA1uK7UaUzYI0XrgxVQ==", + "license": "MIT", "peerDependencies": { "@capacitor/core": "^6.0.0" } }, - "node_modules/@capacitor/os-inappbrowser": { - "resolved": "..", - "link": true - }, "node_modules/@capacitor/status-bar": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/@capacitor/status-bar/-/status-bar-6.0.0.tgz", "integrity": "sha512-Wo0ILugYlmENegKDgTzVCPjbvP8h1ObgHslLdgeVG643ViMS/diausHIq8e104WIKCXtKIELmQeYVp9mX7932g==", + "license": "MIT", "peerDependencies": { "@capacitor/core": "^6.0.0" } @@ -2004,6 +2128,7 @@ "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "dev": true, + "license": "MIT", "optional": true, "engines": { "node": ">=0.1.90" @@ -2014,6 +2139,7 @@ "resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.1.tgz", "integrity": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", @@ -2043,6 +2169,7 @@ "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^3.1.0", "lodash.once": "^4.1.1" @@ -2053,18 +2180,20 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", - "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", "cpu": [ "ppc64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "aix" @@ -2074,13 +2203,14 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" @@ -2090,13 +2220,14 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" @@ -2106,13 +2237,14 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" @@ -2122,13 +2254,14 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" @@ -2138,13 +2271,14 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" @@ -2154,13 +2288,14 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "freebsd" @@ -2170,13 +2305,14 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "freebsd" @@ -2186,13 +2322,14 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -2202,13 +2339,14 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -2218,13 +2356,14 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -2234,13 +2373,14 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", "cpu": [ "loong64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -2250,13 +2390,14 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", "cpu": [ "mips64el" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -2266,13 +2407,14 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", "cpu": [ "ppc64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -2282,13 +2424,14 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", "cpu": [ "riscv64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -2298,13 +2441,14 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", "cpu": [ "s390x" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -2314,13 +2458,14 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -2330,13 +2475,14 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "netbsd" @@ -2346,13 +2492,14 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "openbsd" @@ -2362,13 +2509,14 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "sunos" @@ -2378,13 +2526,14 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" @@ -2394,13 +2543,14 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" @@ -2410,13 +2560,14 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" @@ -2430,6 +2581,7 @@ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", "dev": true, + "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.3.0" }, @@ -2441,10 +2593,11 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", "dev": true, + "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } @@ -2454,6 +2607,7 @@ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -2477,6 +2631,7 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, + "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, @@ -2492,6 +2647,7 @@ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -2504,6 +2660,7 @@ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", "dev": true, + "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } @@ -2512,7 +2669,9 @@ "version": "0.11.14", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "deprecated": "Use @eslint/config-array instead", "dev": true, + "license": "Apache-2.0", "dependencies": { "@humanwhocodes/object-schema": "^2.0.2", "debug": "^4.3.1", @@ -2527,6 +2686,7 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=12.22" }, @@ -2539,13 +2699,16 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", - "dev": true + "deprecated": "Use @eslint/object-schema instead", + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/@ionic/cli-framework-output": { "version": "2.2.8", "resolved": "https://registry.npmjs.org/@ionic/cli-framework-output/-/cli-framework-output-2.2.8.tgz", "integrity": "sha512-TshtaFQsovB4NWRBydbNFawql6yul7d5bMiW1WYYf17hd99V6xdDdk3vtF51bw6sLkxON3bDQpWsnUc9/hVo3g==", "dev": true, + "license": "MIT", "dependencies": { "@ionic/utils-terminal": "2.3.5", "debug": "^4.0.0", @@ -2556,21 +2719,23 @@ } }, "node_modules/@ionic/core": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-8.2.0.tgz", - "integrity": "sha512-+TjHDFluiGYVNiQZOLsETCE+om5FKYbaOKkfmCQYvRGxlg4WtOwaX6YCrpP4MMuerGt36PA196oh/JTcVe9ByA==", + "version": "8.2.7", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-8.2.7.tgz", + "integrity": "sha512-pi7cGjgUcX3dMiku7mO/wh1mQ6yHsHZaUQKKor+fabmoL04YSRJCSJfqf9vImMwmegeon9xU6VPZuiJh2HV8YQ==", + "license": "MIT", "dependencies": { - "@stencil/core": "^4.17.2", + "@stencil/core": "^4.19.2", "ionicons": "^7.2.2", "tslib": "^2.1.0" } }, "node_modules/@ionic/react": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@ionic/react/-/react-8.2.0.tgz", - "integrity": "sha512-vFuRgzuR+Q6XOqmpVIukPSEG55HbYk7K+2l6QI95c+8m89qKB5NsMhsGLEhG6qHzgmZSO4DJK7/dw8dcxVev4w==", + "version": "8.2.7", + "resolved": "https://registry.npmjs.org/@ionic/react/-/react-8.2.7.tgz", + "integrity": "sha512-f4ZI2rqImQgSb0n3irD7SRcs9xTCNbaUyo1mMoA6sX31zRjFlB0ryadaXL9GDubxaFLc1fxFt7MOBiWi911mlg==", + "license": "MIT", "dependencies": { - "@ionic/core": "8.2.0", + "@ionic/core": "8.2.7", "ionicons": "^7.0.0", "tslib": "*" }, @@ -2580,11 +2745,12 @@ } }, "node_modules/@ionic/react-router": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@ionic/react-router/-/react-router-8.2.0.tgz", - "integrity": "sha512-BMtzTEeRvySJxrtjjJgKvFBF4VpJ/I3sdyIyBcZG3/VT3zYL+9FnNiAe65s5+nK6FH67iQiZFvVVMqJNNgi7fA==", + "version": "8.2.7", + "resolved": "https://registry.npmjs.org/@ionic/react-router/-/react-router-8.2.7.tgz", + "integrity": "sha512-OfQGQUwHBSlvLpwrGzZUd6Ndj305TCxFMeUEtvxHK//bXDHOkaIoHgJYs9etqwgSk3meK9qXzzf9Nx9nvFeqXA==", + "license": "MIT", "dependencies": { - "@ionic/react": "8.2.0", + "@ionic/react": "8.2.7", "tslib": "*" }, "peerDependencies": { @@ -2599,6 +2765,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-array/-/utils-array-2.1.5.tgz", "integrity": "sha512-HD72a71IQVBmQckDwmA8RxNVMTbxnaLbgFOl+dO5tbvW9CkkSFCv41h6fUuNsSEVgngfkn0i98HDuZC8mk+lTA==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^4.0.0", "tslib": "^2.0.1" @@ -2612,6 +2779,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-fs/-/utils-fs-3.1.7.tgz", "integrity": "sha512-2EknRvMVfhnyhL1VhFkSLa5gOcycK91VnjfrTB0kbqkTFCOXyXgVLI5whzq7SLrgD9t1aqos3lMMQyVzaQ5gVA==", "dev": true, + "license": "MIT", "dependencies": { "@types/fs-extra": "^8.0.0", "debug": "^4.0.0", @@ -2627,6 +2795,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-object/-/utils-object-2.1.6.tgz", "integrity": "sha512-vCl7sl6JjBHFw99CuAqHljYJpcE88YaH2ZW4ELiC/Zwxl5tiwn4kbdP/gxi2OT3MQb1vOtgAmSNRtusvgxI8ww==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^4.0.0", "tslib": "^2.0.1" @@ -2640,6 +2809,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-process/-/utils-process-2.1.12.tgz", "integrity": "sha512-Jqkgyq7zBs/v/J3YvKtQQiIcxfJyplPgECMWgdO0E1fKrrH8EF0QGHNJ9mJCn6PYe2UtHNS8JJf5G21e09DfYg==", "dev": true, + "license": "MIT", "dependencies": { "@ionic/utils-object": "2.1.6", "@ionic/utils-terminal": "2.3.5", @@ -2657,6 +2827,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-stream/-/utils-stream-3.1.5.tgz", "integrity": "sha512-hkm46uHvEC05X/8PHgdJi4l4zv9VQDELZTM+Kz69odtO9zZYfnt8DkfXHJqJ+PxmtiE5mk/ehJWLnn/XAczTUw==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^4.0.0", "tslib": "^2.0.1" @@ -2670,6 +2841,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-subprocess/-/utils-subprocess-2.1.11.tgz", "integrity": "sha512-6zCDixNmZCbMCy5np8klSxOZF85kuDyzZSTTQKQP90ZtYNCcPYmuFSzaqDwApJT4r5L3MY3JrqK1gLkc6xiUPw==", "dev": true, + "license": "MIT", "dependencies": { "@ionic/utils-array": "2.1.5", "@ionic/utils-fs": "3.1.6", @@ -2689,6 +2861,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-fs/-/utils-fs-3.1.6.tgz", "integrity": "sha512-eikrNkK89CfGPmexjTfSWl4EYqsPSBh0Ka7by4F0PLc1hJZYtJxUZV3X4r5ecA8ikjicUmcbU7zJmAjmqutG/w==", "dev": true, + "license": "MIT", "dependencies": { "@types/fs-extra": "^8.0.0", "debug": "^4.0.0", @@ -2704,6 +2877,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-object/-/utils-object-2.1.5.tgz", "integrity": "sha512-XnYNSwfewUqxq+yjER1hxTKggftpNjFLJH0s37jcrNDwbzmbpFTQTVAp4ikNK4rd9DOebX/jbeZb8jfD86IYxw==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^4.0.0", "tslib": "^2.0.1" @@ -2717,6 +2891,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-process/-/utils-process-2.1.10.tgz", "integrity": "sha512-mZ7JEowcuGQK+SKsJXi0liYTcXd2bNMR3nE0CyTROpMECUpJeAvvaBaPGZf5ERQUPeWBVuwqAqjUmIdxhz5bxw==", "dev": true, + "license": "MIT", "dependencies": { "@ionic/utils-object": "2.1.5", "@ionic/utils-terminal": "2.3.3", @@ -2734,6 +2909,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-terminal/-/utils-terminal-2.3.3.tgz", "integrity": "sha512-RnuSfNZ5fLEyX3R5mtcMY97cGD1A0NVBbarsSQ6yMMfRJ5YHU7hHVyUfvZeClbqkBC/pAqI/rYJuXKCT9YeMCQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/slice-ansi": "^4.0.0", "debug": "^4.0.0", @@ -2754,6 +2930,7 @@ "resolved": "https://registry.npmjs.org/@ionic/utils-terminal/-/utils-terminal-2.3.5.tgz", "integrity": "sha512-3cKScz9Jx2/Pr9ijj1OzGlBDfcmx7OMVBt4+P1uRR0SSW4cm1/y3Mo4OY3lfkuaYifMNBW8Wz6lQHbs1bihr7A==", "dev": true, + "license": "MIT", "dependencies": { "@types/slice-ansi": "^4.0.0", "debug": "^4.0.0", @@ -2774,6 +2951,7 @@ "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, + "license": "MIT", "dependencies": { "jest-get-type": "^29.6.3" }, @@ -2786,6 +2964,7 @@ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, + "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.27.8" }, @@ -2798,6 +2977,7 @@ "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -2815,6 +2995,7 @@ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", @@ -2829,6 +3010,7 @@ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.0.0" } @@ -2838,6 +3020,7 @@ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.0.0" } @@ -2847,22 +3030,25 @@ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true, + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -2873,6 +3059,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -2886,6 +3073,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 8" } @@ -2895,6 +3083,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -2904,208 +3093,224 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz", - "integrity": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.0.tgz", + "integrity": "sha512-WTWD8PfoSAJ+qL87lE7votj3syLavxunWhzCnx3XFxFiI/BA/r3X7MUM8dVrH8rb2r4AiO8jJsr3ZjdaftmnfA==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz", - "integrity": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.0.tgz", + "integrity": "sha512-a1sR2zSK1B4eYkiZu17ZUZhmUQcKjk2/j9Me2IDjk1GHW7LB5Z35LEzj9iJch6gtUfsnvZs1ZNyDW2oZSThrkA==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz", - "integrity": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.0.tgz", + "integrity": "sha512-zOnKWLgDld/svhKO5PD9ozmL6roy5OQ5T4ThvdYZLpiOhEGY+dp2NwUmxK0Ld91LrbjrvtNAE0ERBwjqhZTRAA==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz", - "integrity": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.0.tgz", + "integrity": "sha512-7doS8br0xAkg48SKE2QNtMSFPFUlRdw9+votl27MvT46vo44ATBmdZdGysOevNELmZlfd+NEa0UYOA8f01WSrg==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz", - "integrity": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.0.tgz", + "integrity": "sha512-pWJsfQjNWNGsoCq53KjMtwdJDmh/6NubwQcz52aEwLEuvx08bzcy6tOUuawAOncPnxz/3siRtd8hiQ32G1y8VA==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz", - "integrity": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.0.tgz", + "integrity": "sha512-efRIANsz3UHZrnZXuEvxS9LoCOWMGD1rweciD6uJQIx2myN3a8Im1FafZBzh7zk1RJ6oKcR16dU3UPldaKd83w==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz", - "integrity": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.0.tgz", + "integrity": "sha512-ZrPhydkTVhyeGTW94WJ8pnl1uroqVHM3j3hjdquwAcWnmivjAwOYjTEAuEDeJvGX7xv3Z9GAvrBkEzCgHq9U1w==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz", - "integrity": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.0.tgz", + "integrity": "sha512-cfaupqd+UEFeURmqNP2eEvXqgbSox/LHOyN9/d2pSdV8xTrjdg3NgOFJCtc1vQ/jEke1qD0IejbBfxleBPHnPw==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz", - "integrity": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.0.tgz", + "integrity": "sha512-ZKPan1/RvAhrUylwBXC9t7B2hXdpb/ufeu22pG2psV7RN8roOfGurEghw1ySmX/CmDDHNTDDjY3lo9hRlgtaHg==", "cpu": [ "ppc64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz", - "integrity": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.0.tgz", + "integrity": "sha512-H1eRaCwd5E8eS8leiS+o/NqMdljkcb1d6r2h4fKSsCXQilLKArq6WS7XBLDu80Yz+nMqHVFDquwcVrQmGr28rg==", "cpu": [ "riscv64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz", - "integrity": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.0.tgz", + "integrity": "sha512-zJ4hA+3b5tu8u7L58CCSI0A9N1vkfwPhWd/puGXwtZlsB5bTkwDNW/+JCU84+3QYmKpLi+XvHdmrlwUwDA6kqw==", "cpu": [ "s390x" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz", - "integrity": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.0.tgz", + "integrity": "sha512-e2hrvElFIh6kW/UNBQK/kzqMNY5mO+67YtEh9OA65RM5IJXYTWiXjX6fjIiPaqOkBthYF1EqgiZ6OXKcQsM0hg==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz", - "integrity": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.0.tgz", + "integrity": "sha512-1vvmgDdUSebVGXWX2lIcgRebqfQSff0hMEkLJyakQ9JQUbLDkEaMsPTLOmyccyC6IJ/l3FZuJbmrBw/u0A0uCQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz", - "integrity": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.0.tgz", + "integrity": "sha512-s5oFkZ/hFcrlAyBTONFY1TWndfyre1wOMwU+6KCpm/iatybvrRgmZVM+vCFwxmC5ZhdlgfE0N4XorsDpi7/4XQ==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz", - "integrity": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.0.tgz", + "integrity": "sha512-G9+TEqRnAA6nbpqyUqgTiopmnfgnMkR3kMukFBDsiyy23LZvUCpiUwjTRx6ezYCjJODXrh52rBR9oXvm+Fp5wg==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz", - "integrity": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.0.tgz", + "integrity": "sha512-2jsCDZwtQvRhejHLfZ1JY6w6kEuEtfF9nzYsZxzSlNVKDX+DpsDJ+Rbjkm74nvg2rdx0gwBS+IMdvwJuq3S9pQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" @@ -3115,12 +3320,14 @@ "version": "0.27.8", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@stencil/core": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.18.2.tgz", - "integrity": "sha512-GLYbzv3Bq/oUbQk3CH09zkjISANccyE5/A1C7+1JZhdnWUx1MRuWQR9/2uzSPR7kF0sdppwzXvArl7VqYCxLOQ==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.20.0.tgz", + "integrity": "sha512-WPrTHFngvN081RY+dJPneKQLwnOFD60OMCOQGmmSHfCW0f4ujPMzzhwWU1gcSwXPWXz5O+8cBiiCaxAbJU7kAg==", + "license": "MIT", "bin": { "stencil": "bin/stencil" }, @@ -3130,10 +3337,11 @@ } }, "node_modules/@testing-library/dom": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.1.0.tgz", - "integrity": "sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==", + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz", + "integrity": "sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", @@ -3153,6 +3361,7 @@ "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz", "integrity": "sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==", "dev": true, + "license": "MIT", "dependencies": { "@adobe/css-tools": "^4.0.1", "@babel/runtime": "^7.9.2", @@ -3175,6 +3384,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3188,6 +3398,7 @@ "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-14.3.1.tgz", "integrity": "sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.5", "@testing-library/dom": "^9.0.0", @@ -3206,6 +3417,7 @@ "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.4.tgz", "integrity": "sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", @@ -3225,6 +3437,7 @@ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { "deep-equal": "^2.0.5" } @@ -3234,6 +3447,7 @@ "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.2.tgz", "integrity": "sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=12", "npm": ">=6" @@ -3247,6 +3461,7 @@ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 10" } @@ -3255,13 +3470,15 @@ "version": "5.0.4", "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", @@ -3275,6 +3492,7 @@ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" } @@ -3284,6 +3502,7 @@ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, + "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" @@ -3294,21 +3513,24 @@ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.20.7" } }, "node_modules/@types/chai": { - "version": "4.3.16", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.16.tgz", - "integrity": "sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==", - "dev": true + "version": "4.3.17", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.17.tgz", + "integrity": "sha512-zmZ21EWzR71B4Sscphjief5djsLre50M6lI622OSySTmn9DB3j+C3kWroHfBQWXbOBwbgg/M8CG/hUxDLIloow==", + "dev": true, + "license": "MIT" }, "node_modules/@types/chai-subset": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/chai-subset/-/chai-subset-1.3.5.tgz", "integrity": "sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==", "dev": true, + "license": "MIT", "dependencies": { "@types/chai": "*" } @@ -3317,13 +3539,15 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/fs-extra": { "version": "8.1.5", "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.5.tgz", "integrity": "sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } @@ -3331,19 +3555,22 @@ "node_modules/@types/history": { "version": "4.7.11", "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", - "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", + "license": "MIT" }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dev": true, + "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" } @@ -3353,6 +3580,7 @@ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" } @@ -3362,6 +3590,7 @@ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", "dev": true, + "license": "MIT", "dependencies": { "expect": "^29.0.0", "pretty-format": "^29.0.0" @@ -3372,6 +3601,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -3384,6 +3614,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", @@ -3397,26 +3628,30 @@ "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/node": { - "version": "20.12.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz", - "integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==", + "version": "22.4.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.4.2.tgz", + "integrity": "sha512-nAvM3Ey230/XzxtyDcJ+VjvlzpzoHwLsF7JaDRfoI0ytO0mVheerNmM45CtA0yOILXwXXxOrcUWH3wltX+7PSw==", "dev": true, + "license": "MIT", "dependencies": { - "undici-types": "~5.26.4" + "undici-types": "~6.19.2" } }, "node_modules/@types/prop-types": { "version": "15.7.12", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", - "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" + "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==", + "license": "MIT" }, "node_modules/@types/react": { - "version": "18.3.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz", - "integrity": "sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==", + "version": "18.3.4", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.4.tgz", + "integrity": "sha512-J7W30FTdfCxDDjmfRM+/JqLHBIyl7xUIp9kwK637FGmY7+mkSFSe6L4jpZzhj5QMfLssSDP4/i75AKkrdC7/Jw==", + "license": "MIT", "dependencies": { "@types/prop-types": "*", "csstype": "^3.0.2" @@ -3427,6 +3662,7 @@ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", "dev": true, + "license": "MIT", "dependencies": { "@types/react": "*" } @@ -3435,6 +3671,7 @@ "version": "5.1.20", "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz", "integrity": "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==", + "license": "MIT", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*" @@ -3444,6 +3681,7 @@ "version": "5.3.3", "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", + "license": "MIT", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*", @@ -3454,40 +3692,46 @@ "version": "8.1.1", "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/sizzle": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.8.tgz", "integrity": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/slice-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@types/slice-ansi/-/slice-ansi-4.0.0.tgz", "integrity": "sha512-+OpjSaq85gvlZAYINyzKpLeiFkSC4EsC6IIiT6v6TLSU5k5U83fHGj9Lel8oKEXM0HqgrMVCjXPDPVICtxF7EQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/stack-utils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/testing-library__jest-dom": { "version": "5.14.9", "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz", "integrity": "sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==", "dev": true, + "license": "MIT", "dependencies": { "@types/jest": "*" } }, "node_modules/@types/yargs": { - "version": "17.0.32", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", - "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", "dev": true, + "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } @@ -3496,13 +3740,15 @@ "version": "21.0.3", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/yauzl": { "version": "2.10.3", "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", "dev": true, + "license": "MIT", "optional": true, "dependencies": { "@types/node": "*" @@ -3512,20 +3758,22 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/@vitejs/plugin-legacy": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-5.4.0.tgz", - "integrity": "sha512-Z7o44IbOIir/appjqtVzxnmLeGD8DjWGNm48lfPWZn4hxjzUjTkMX7BDwncpauWAQ/0VIz6uPeMHl3Za0Rw7wA==", + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-5.4.2.tgz", + "integrity": "sha512-hlyyQL+wEIyOWdwsUKX+0g3kBU4AbHmVzHarLvVKiGGGqLIYjttMvvjk6zGY8RD9dab6QuFNhDoxg0YFhQ26xA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/core": "^7.24.5", - "@babel/preset-env": "^7.24.5", - "browserslist": "^4.23.0", + "@babel/core": "^7.25.2", + "@babel/preset-env": "^7.25.3", + "browserslist": "^4.23.3", "browserslist-to-esbuild": "^2.1.1", - "core-js": "^3.37.0", - "magic-string": "^0.30.10", + "core-js": "^3.38.0", + "magic-string": "^0.30.11", "regenerator-runtime": "^0.14.1", "systemjs": "^6.15.1" }, @@ -3541,10 +3789,11 @@ } }, "node_modules/@vitejs/plugin-react": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.0.tgz", - "integrity": "sha512-KcEbMsn4Dpk+LIbHMj7gDPRKaTMStxxWRkRmxsg/jVdFdJCZWt1SchZcf0M4t8lIKdwwMsEyzhrcOXRrDPtOBw==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.1.tgz", + "integrity": "sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/core": "^7.24.5", "@babel/plugin-transform-react-jsx-self": "^7.24.5", @@ -3564,6 +3813,7 @@ "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-0.34.6.tgz", "integrity": "sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==", "dev": true, + "license": "MIT", "dependencies": { "@vitest/spy": "0.34.6", "@vitest/utils": "0.34.6", @@ -3578,6 +3828,7 @@ "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-0.34.6.tgz", "integrity": "sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==", "dev": true, + "license": "MIT", "dependencies": { "@vitest/utils": "0.34.6", "p-limit": "^4.0.0", @@ -3592,6 +3843,7 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, + "license": "MIT", "dependencies": { "yocto-queue": "^1.0.0" }, @@ -3603,10 +3855,11 @@ } }, "node_modules/@vitest/runner/node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", "dev": true, + "license": "MIT", "engines": { "node": ">=12.20" }, @@ -3619,6 +3872,7 @@ "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-0.34.6.tgz", "integrity": "sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==", "dev": true, + "license": "MIT", "dependencies": { "magic-string": "^0.30.1", "pathe": "^1.1.1", @@ -3633,6 +3887,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -3645,6 +3900,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", @@ -3658,13 +3914,15 @@ "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@vitest/spy": { "version": "0.34.6", "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-0.34.6.tgz", "integrity": "sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==", "dev": true, + "license": "MIT", "dependencies": { "tinyspy": "^2.1.1" }, @@ -3677,6 +3935,7 @@ "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.34.6.tgz", "integrity": "sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A==", "dev": true, + "license": "MIT", "dependencies": { "diff-sequences": "^29.4.3", "loupe": "^2.3.6", @@ -3691,6 +3950,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -3703,6 +3963,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", @@ -3716,13 +3977,15 @@ "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@xmldom/xmldom": { "version": "0.8.10", "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.0.0" } @@ -3732,13 +3995,15 @@ "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", "deprecated": "Use your platform's native atob() and btoa() methods instead", - "dev": true + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", "dev": true, + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -3751,15 +4016,20 @@ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, + "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", - "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", + "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, "engines": { "node": ">=0.4.0" } @@ -3769,6 +4039,7 @@ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, + "license": "MIT", "dependencies": { "debug": "4" }, @@ -3781,6 +4052,7 @@ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, + "license": "MIT", "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" @@ -3794,6 +4066,7 @@ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -3810,6 +4083,7 @@ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -3819,6 +4093,7 @@ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, + "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, @@ -3834,6 +4109,7 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -3843,6 +4119,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3871,19 +4148,22 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "dev": true, + "license": "Python-2.0" }, "node_modules/aria-query": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", "dev": true, + "license": "Apache-2.0", "dependencies": { "dequal": "^2.0.3" } @@ -3893,6 +4173,7 @@ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.5", "is-array-buffer": "^3.0.4" @@ -3909,6 +4190,7 @@ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -3929,6 +4211,7 @@ "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -3949,6 +4232,7 @@ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", @@ -3967,6 +4251,7 @@ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", @@ -3980,29 +4265,21 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.toreversed": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz", - "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - } - }, "node_modules/array.prototype.tosorted": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", - "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.5", + "call-bind": "^1.0.7", "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.1.0", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/arraybuffer.prototype.slice": { @@ -4010,6 +4287,7 @@ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.5", @@ -4032,6 +4310,7 @@ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, + "license": "MIT", "dependencies": { "safer-buffer": "~2.1.0" } @@ -4041,6 +4320,7 @@ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8" } @@ -4050,6 +4330,7 @@ "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", "dev": true, + "license": "MIT", "engines": { "node": "*" } @@ -4059,27 +4340,31 @@ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "dev": true + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "dev": true, + "license": "MIT" }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/at-least-node": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, + "license": "ISC", "engines": { "node": ">= 4.0.0" } @@ -4089,6 +4374,7 @@ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, + "license": "MIT", "dependencies": { "possible-typed-array-names": "^1.0.0" }, @@ -4104,21 +4390,24 @@ "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/aws4": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.0.tgz", - "integrity": "sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==", - "dev": true + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.1.tgz", + "integrity": "sha512-u5w79Rd7SU4JaIlA/zFqG+gOiuq25q5VLyZ8E+ijJeILuTxVzZgp2CaGw/UTw6pXYN9XMO9yiqj/nEHmhTG5CA==", + "dev": true, + "license": "MIT" }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.4.11", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", "dev": true, + "license": "MIT", "dependencies": { "@babel/compat-data": "^7.22.6", "@babel/helper-define-polyfill-provider": "^0.6.2", @@ -4133,18 +4422,20 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", - "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.1", - "core-js-compat": "^3.36.1" + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -4155,6 +4446,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.2" }, @@ -4166,7 +4458,8 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", @@ -4186,13 +4479,15 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "tweetnacl": "^0.14.3" } @@ -4202,6 +4497,7 @@ "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", "dev": true, + "license": "Unlicense", "engines": { "node": ">=0.6" } @@ -4210,19 +4506,22 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/bplist-parser": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz", "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==", "dev": true, + "license": "MIT", "dependencies": { "big-integer": "1.6.x" }, @@ -4235,6 +4534,7 @@ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -4245,6 +4545,7 @@ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, + "license": "MIT", "dependencies": { "fill-range": "^7.1.1" }, @@ -4253,9 +4554,9 @@ } }, "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "version": "4.23.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", + "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", "dev": true, "funding": [ { @@ -4271,11 +4572,12 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001646", + "electron-to-chromium": "^1.5.4", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" }, "bin": { "browserslist": "cli.js" @@ -4289,6 +4591,7 @@ "resolved": "https://registry.npmjs.org/browserslist-to-esbuild/-/browserslist-to-esbuild-2.1.1.tgz", "integrity": "sha512-KN+mty6C3e9AN8Z5dI1xeN15ExcRNeISoC3g7V0Kax/MMF9MSoYA2G7lkTTcVUFntiEjkpI0HNgqJC1NjdyNUw==", "dev": true, + "license": "MIT", "dependencies": { "meow": "^13.0.0" }, @@ -4321,6 +4624,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" @@ -4331,6 +4635,7 @@ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "dev": true, + "license": "MIT", "engines": { "node": "*" } @@ -4339,13 +4644,15 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cac": { "version": "6.7.14", "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -4355,6 +4662,7 @@ "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.4.0.tgz", "integrity": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -4364,6 +4672,7 @@ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, + "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -4383,14 +4692,15 @@ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/caniuse-lite": { - "version": "1.0.30001621", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001621.tgz", - "integrity": "sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==", + "version": "1.0.30001651", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz", + "integrity": "sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==", "dev": true, "funding": [ { @@ -4405,19 +4715,22 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/chai": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", - "integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.5.0.tgz", + "integrity": "sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==", "dev": true, + "license": "MIT", "dependencies": { "assertion-error": "^1.1.0", "check-error": "^1.0.3", @@ -4425,7 +4738,7 @@ "get-func-name": "^2.0.2", "loupe": "^2.3.6", "pathval": "^1.1.1", - "type-detect": "^4.0.8" + "type-detect": "^4.1.0" }, "engines": { "node": ">=4" @@ -4436,6 +4749,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -4452,6 +4766,7 @@ "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", "dev": true, + "license": "MIT", "dependencies": { "get-func-name": "^2.0.2" }, @@ -4464,6 +4779,7 @@ "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8.0" } @@ -4473,6 +4789,7 @@ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true, + "license": "ISC", "engines": { "node": ">=10" } @@ -4488,6 +4805,7 @@ "url": "https://github.com/sponsors/sibiraj-s" } ], + "license": "MIT", "engines": { "node": ">=8" } @@ -4497,6 +4815,7 @@ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -4506,6 +4825,7 @@ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, + "license": "MIT", "dependencies": { "restore-cursor": "^3.1.0" }, @@ -4518,6 +4838,7 @@ "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", "dev": true, + "license": "MIT", "dependencies": { "string-width": "^4.2.0" }, @@ -4533,6 +4854,7 @@ "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, + "license": "MIT", "dependencies": { "slice-ansi": "^3.0.0", "string-width": "^4.2.0" @@ -4549,6 +4871,7 @@ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", @@ -4563,6 +4886,7 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -4574,19 +4898,22 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/colorette": { "version": "2.0.20", "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, + "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" }, @@ -4599,6 +4926,7 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", "dev": true, + "license": "MIT", "engines": { "node": "^12.20.0 || >=14" } @@ -4608,6 +4936,7 @@ "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4.0.0" } @@ -4616,38 +4945,43 @@ "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/confbox": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/core-js": { - "version": "3.37.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.37.1.tgz", - "integrity": "sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==", + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.38.1.tgz", + "integrity": "sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==", "dev": true, "hasInstallScript": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, "node_modules/core-js-compat": { - "version": "3.37.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", - "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", + "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", "dev": true, + "license": "MIT", "dependencies": { - "browserslist": "^4.23.0" + "browserslist": "^4.23.3" }, "funding": { "type": "opencollective", @@ -4658,13 +4992,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -4678,13 +5014,15 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cssstyle": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-3.0.0.tgz", "integrity": "sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==", "dev": true, + "license": "MIT", "dependencies": { "rrweb-cssom": "^0.6.0" }, @@ -4695,16 +5033,18 @@ "node_modules/csstype": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" }, "node_modules/cypress": { - "version": "13.10.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.10.0.tgz", - "integrity": "sha512-tOhwRlurVOQbMduX+KonoMeQILs2cwR3yHGGENoFvvSoLUBHmJ8b9/n21gFSDqjlOJ+SRVcwuh+fG/JDsHsT6Q==", + "version": "13.13.3", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.13.3.tgz", + "integrity": "sha512-hUxPrdbJXhUOTzuML+y9Av7CKoYznbD83pt8g3klgpioEha0emfx4WNIuVRx0C76r0xV2MIwAW9WYiXfVJYFQw==", "dev": true, "hasInstallScript": true, + "license": "MIT", "dependencies": { - "@cypress/request": "^3.0.0", + "@cypress/request": "^3.0.1", "@cypress/xvfb": "^1.2.4", "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", @@ -4743,7 +5083,7 @@ "request-progress": "^3.0.0", "semver": "^7.5.3", "supports-color": "^8.1.1", - "tmp": "~0.2.1", + "tmp": "~0.2.3", "untildify": "^4.0.0", "yauzl": "^2.10.0" }, @@ -4759,6 +5099,7 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 6" } @@ -4768,6 +5109,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -4783,6 +5125,7 @@ "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "dev": true, + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" }, @@ -4795,6 +5138,7 @@ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-4.0.0.tgz", "integrity": "sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==", "dev": true, + "license": "MIT", "dependencies": { "abab": "^2.0.6", "whatwg-mimetype": "^3.0.0", @@ -4809,6 +5153,7 @@ "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", @@ -4826,6 +5171,7 @@ "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -4843,6 +5189,7 @@ "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", @@ -4856,16 +5203,18 @@ } }, "node_modules/dayjs": { - "version": "1.11.11", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.11.tgz", - "integrity": "sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==", - "dev": true + "version": "1.11.13", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", + "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==", + "dev": true, + "license": "MIT" }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -4882,13 +5231,15 @@ "version": "10.4.3", "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/deep-eql": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", - "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.4.tgz", + "integrity": "sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==", "dev": true, + "license": "MIT", "dependencies": { "type-detect": "^4.0.0" }, @@ -4901,6 +5252,7 @@ "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", "dev": true, + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.0", "call-bind": "^1.0.5", @@ -4932,19 +5284,22 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/define-data-property": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, + "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -4962,6 +5317,7 @@ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -4971,6 +5327,7 @@ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", @@ -4988,6 +5345,7 @@ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.4.0" } @@ -4997,6 +5355,7 @@ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -5006,6 +5365,7 @@ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } @@ -5015,6 +5375,7 @@ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, + "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -5026,7 +5387,8 @@ "version": "0.5.16", "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/domexception": { "version": "4.0.0", @@ -5034,6 +5396,7 @@ "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", "deprecated": "Use your platform's native DOMException instead", "dev": true, + "license": "MIT", "dependencies": { "webidl-conversions": "^7.0.0" }, @@ -5046,22 +5409,25 @@ "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, + "license": "MIT", "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" } }, "node_modules/electron-to-chromium": { - "version": "1.4.779", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.779.tgz", - "integrity": "sha512-oaTiIcszNfySXVJzKcjxd2YjPxziAd+GmXyb2HbidCeFo6Z88ygOT7EimlrEQhM2U08VhSrbKhLOXP0kKUCZ6g==", - "dev": true + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz", + "integrity": "sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==", + "dev": true, + "license": "ISC" }, "node_modules/elementtree": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/elementtree/-/elementtree-0.1.7.tgz", "integrity": "sha512-wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg==", "dev": true, + "license": "Apache-2.0", "dependencies": { "sax": "1.1.4" }, @@ -5073,13 +5439,15 @@ "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, + "license": "MIT", "dependencies": { "once": "^1.4.0" } @@ -5089,6 +5457,7 @@ "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-colors": "^4.1.1", "strip-ansi": "^6.0.1" @@ -5102,6 +5471,7 @@ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=0.12" }, @@ -5114,6 +5484,7 @@ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -5123,6 +5494,7 @@ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", "dev": true, + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", "arraybuffer.prototype.slice": "^1.0.3", @@ -5183,6 +5555,7 @@ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", "dev": true, + "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.4" }, @@ -5195,6 +5568,7 @@ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -5204,6 +5578,7 @@ "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", @@ -5223,13 +5598,15 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/es-iterator-helpers": { "version": "1.0.19", "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -5255,6 +5632,7 @@ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0" }, @@ -5267,6 +5645,7 @@ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, + "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.4", "has-tostringtag": "^1.0.2", @@ -5281,6 +5660,7 @@ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dev": true, + "license": "MIT", "dependencies": { "hasown": "^2.0.0" } @@ -5290,6 +5670,7 @@ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, + "license": "MIT", "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -5303,11 +5684,12 @@ } }, "node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", "dev": true, "hasInstallScript": true, + "license": "MIT", "bin": { "esbuild": "bin/esbuild" }, @@ -5315,29 +5697,29 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" } }, "node_modules/escalade": { @@ -5345,6 +5727,7 @@ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -5354,6 +5737,7 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -5366,6 +5750,7 @@ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", @@ -5417,35 +5802,36 @@ } }, "node_modules/eslint-plugin-react": { - "version": "7.34.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz", - "integrity": "sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==", + "version": "7.35.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz", + "integrity": "sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==", "dev": true, + "license": "MIT", "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlast": "^1.2.4", + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", "array.prototype.flatmap": "^1.3.2", - "array.prototype.toreversed": "^1.1.2", - "array.prototype.tosorted": "^1.1.3", + "array.prototype.tosorted": "^1.1.4", "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.17", + "es-iterator-helpers": "^1.0.19", "estraverse": "^5.3.0", + "hasown": "^2.0.2", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7", - "object.hasown": "^1.1.3", - "object.values": "^1.1.7", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.0", "prop-types": "^15.8.1", "resolve": "^2.0.0-next.5", "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.10" + "string.prototype.matchall": "^4.0.11", + "string.prototype.repeat": "^1.0.0" }, "engines": { "node": ">=4" }, "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" } }, "node_modules/eslint-plugin-react/node_modules/doctrine": { @@ -5453,6 +5839,7 @@ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -5465,6 +5852,7 @@ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", "dev": true, + "license": "MIT", "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", @@ -5482,6 +5870,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } @@ -5491,6 +5880,7 @@ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" @@ -5507,6 +5897,7 @@ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -5519,6 +5910,7 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, + "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, @@ -5534,6 +5926,7 @@ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -5546,6 +5939,7 @@ "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", @@ -5559,10 +5953,11 @@ } }, "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, @@ -5575,6 +5970,7 @@ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -5587,6 +5983,7 @@ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -5596,6 +5993,7 @@ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } @@ -5604,13 +6002,15 @@ "version": "6.4.7", "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/execa": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", "dev": true, + "license": "MIT", "dependencies": { "cross-spawn": "^7.0.0", "get-stream": "^5.0.0", @@ -5634,6 +6034,7 @@ "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", "dev": true, + "license": "MIT", "dependencies": { "pify": "^2.2.0" }, @@ -5646,6 +6047,7 @@ "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", @@ -5661,13 +6063,15 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/extract-zip": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "debug": "^4.1.1", "get-stream": "^5.1.0", @@ -5690,31 +6094,36 @@ "dev": true, "engines": [ "node >=0.6.0" - ] + ], + "license": "MIT" }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fastq": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, + "license": "ISC", "dependencies": { "reusify": "^1.0.4" } @@ -5724,6 +6133,7 @@ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "dev": true, + "license": "MIT", "dependencies": { "pend": "~1.2.0" } @@ -5733,6 +6143,7 @@ "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, + "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" }, @@ -5748,6 +6159,7 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -5757,6 +6169,7 @@ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, + "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" }, @@ -5769,6 +6182,7 @@ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, + "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -5781,6 +6195,7 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -5797,6 +6212,7 @@ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, + "license": "MIT", "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.3", @@ -5810,7 +6226,9 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -5830,7 +6248,9 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -5845,13 +6265,15 @@ "version": "3.3.1", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/for-each": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, + "license": "MIT", "dependencies": { "is-callable": "^1.1.3" } @@ -5861,6 +6283,7 @@ "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "*" } @@ -5870,6 +6293,7 @@ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "dev": true, + "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.6", @@ -5884,6 +6308,7 @@ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, + "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -5899,6 +6324,7 @@ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, + "license": "ISC", "dependencies": { "minipass": "^3.0.0" }, @@ -5911,6 +6337,7 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, @@ -5922,13 +6349,15 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.3", @@ -5936,6 +6365,7 @@ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, + "license": "MIT", "optional": true, "os": [ "darwin" @@ -5949,6 +6379,7 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -5958,6 +6389,7 @@ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", @@ -5976,6 +6408,7 @@ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -5985,6 +6418,7 @@ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -5994,6 +6428,7 @@ "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", "dev": true, + "license": "MIT", "engines": { "node": "*" } @@ -6003,6 +6438,7 @@ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", @@ -6022,6 +6458,7 @@ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, + "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -6037,6 +6474,7 @@ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.5", "es-errors": "^1.3.0", @@ -6054,6 +6492,7 @@ "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", "dev": true, + "license": "MIT", "dependencies": { "async": "^3.2.0" } @@ -6063,6 +6502,7 @@ "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" } @@ -6072,6 +6512,7 @@ "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", "dev": true, + "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "minimatch": "^8.0.2", @@ -6090,6 +6531,7 @@ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, + "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, @@ -6102,6 +6544,7 @@ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } @@ -6111,6 +6554,7 @@ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", "dev": true, + "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, @@ -6126,6 +6570,7 @@ "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, + "license": "MIT", "dependencies": { "ini": "2.0.0" }, @@ -6141,6 +6586,7 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -6150,6 +6596,7 @@ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "dev": true, + "license": "MIT", "dependencies": { "define-properties": "^1.2.1", "gopd": "^1.0.1" @@ -6166,6 +6613,7 @@ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, + "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -6177,19 +6625,22 @@ "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/has-bigints": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -6199,6 +6650,7 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -6208,6 +6660,7 @@ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, + "license": "MIT", "dependencies": { "es-define-property": "^1.0.0" }, @@ -6220,6 +6673,7 @@ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -6232,6 +6686,7 @@ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -6244,6 +6699,7 @@ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, + "license": "MIT", "dependencies": { "has-symbols": "^1.0.3" }, @@ -6259,6 +6715,7 @@ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, + "license": "MIT", "dependencies": { "function-bind": "^1.1.2" }, @@ -6270,6 +6727,7 @@ "version": "4.10.1", "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.1.2", "loose-envify": "^1.2.0", @@ -6283,6 +6741,7 @@ "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", "dependencies": { "react-is": "^16.7.0" } @@ -6290,13 +6749,15 @@ "node_modules/hoist-non-react-statics/node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" }, "node_modules/html-encoding-sniffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", "dev": true, + "license": "MIT", "dependencies": { "whatwg-encoding": "^2.0.0" }, @@ -6309,6 +6770,7 @@ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, + "license": "MIT", "dependencies": { "@tootallnate/once": "2", "agent-base": "6", @@ -6323,6 +6785,7 @@ "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", "dev": true, + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^2.0.2", @@ -6337,6 +6800,7 @@ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, + "license": "MIT", "dependencies": { "agent-base": "6", "debug": "4" @@ -6350,6 +6814,7 @@ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=8.12.0" } @@ -6359,6 +6824,7 @@ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, @@ -6384,13 +6850,15 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "BSD-3-Clause" }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4" } @@ -6400,6 +6868,7 @@ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, + "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -6416,6 +6885,7 @@ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.19" } @@ -6425,6 +6895,7 @@ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -6435,6 +6906,7 @@ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, + "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -6444,13 +6916,15 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/ini": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true, + "license": "ISC", "engines": { "node": ">=10" } @@ -6460,6 +6934,7 @@ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "hasown": "^2.0.0", @@ -6473,6 +6948,7 @@ "version": "7.4.0", "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.4.0.tgz", "integrity": "sha512-ZK94MMqgzMCPPMhmk8Ouu6goyVHFIlw/ACP6oe3FrikcI0N7CX0xcwVaEbUc0G/v3W0shI93vo+9ve/KpvcNhQ==", + "license": "MIT", "dependencies": { "@stencil/core": "^4.0.3" } @@ -6482,6 +6958,7 @@ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -6498,6 +6975,7 @@ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.1" @@ -6514,6 +6992,7 @@ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", "dev": true, + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -6529,6 +7008,7 @@ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, + "license": "MIT", "dependencies": { "has-bigints": "^1.0.1" }, @@ -6541,6 +7021,7 @@ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -6557,6 +7038,7 @@ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -6569,6 +7051,7 @@ "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, + "license": "MIT", "dependencies": { "ci-info": "^3.2.0" }, @@ -6577,12 +7060,16 @@ } }, "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", + "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", "dev": true, + "license": "MIT", "dependencies": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -6593,6 +7080,7 @@ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", "dev": true, + "license": "MIT", "dependencies": { "is-typed-array": "^1.1.13" }, @@ -6608,6 +7096,7 @@ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -6623,6 +7112,7 @@ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, + "license": "MIT", "bin": { "is-docker": "cli.js" }, @@ -6638,6 +7128,7 @@ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -6647,6 +7138,7 @@ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2" }, @@ -6659,6 +7151,7 @@ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -6668,6 +7161,7 @@ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dev": true, + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -6683,6 +7177,7 @@ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -6695,6 +7190,7 @@ "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "dev": true, + "license": "MIT", "dependencies": { "global-dirs": "^3.0.0", "is-path-inside": "^3.0.2" @@ -6711,6 +7207,7 @@ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -6723,6 +7220,7 @@ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -6735,6 +7233,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.12.0" } @@ -6744,6 +7243,7 @@ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -6759,6 +7259,7 @@ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -6767,13 +7268,15 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -6790,6 +7293,7 @@ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -6802,6 +7306,7 @@ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7" }, @@ -6817,6 +7322,7 @@ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -6829,6 +7335,7 @@ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -6844,6 +7351,7 @@ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, + "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" }, @@ -6859,6 +7367,7 @@ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, + "license": "MIT", "dependencies": { "which-typed-array": "^1.1.14" }, @@ -6873,13 +7382,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -6892,6 +7403,7 @@ "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -6904,6 +7416,7 @@ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2" }, @@ -6916,6 +7429,7 @@ "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "get-intrinsic": "^1.2.4" @@ -6932,6 +7446,7 @@ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, + "license": "MIT", "dependencies": { "is-docker": "^2.0.0" }, @@ -6942,25 +7457,29 @@ "node_modules/isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/iterator.prototype": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", "dev": true, + "license": "MIT", "dependencies": { "define-properties": "^1.2.1", "get-intrinsic": "^1.2.1", @@ -6974,6 +7493,7 @@ "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", @@ -6989,6 +7509,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -7001,6 +7522,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", @@ -7014,13 +7536,15 @@ "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-get-type": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } @@ -7030,6 +7554,7 @@ "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^4.0.0", "jest-diff": "^29.7.0", @@ -7045,6 +7570,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -7057,6 +7583,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", @@ -7070,13 +7597,15 @@ "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-message-util": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.12.13", "@jest/types": "^29.6.3", @@ -7097,6 +7626,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -7109,6 +7639,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", @@ -7122,13 +7653,15 @@ "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-util": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", @@ -7144,13 +7677,15 @@ "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" }, "node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -7162,13 +7697,15 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jsdom": { "version": "22.1.0", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-22.1.0.tgz", "integrity": "sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==", "dev": true, + "license": "MIT", "dependencies": { "abab": "^2.0.6", "cssstyle": "^3.0.0", @@ -7211,6 +7748,7 @@ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, + "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -7225,6 +7763,7 @@ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, + "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, @@ -7236,37 +7775,43 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-schema": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "dev": true + "dev": true, + "license": "(AFL-2.1 OR BSD-3-Clause)" }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, + "license": "MIT", "bin": { "json5": "lib/cli.js" }, @@ -7279,6 +7824,7 @@ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, + "license": "MIT", "dependencies": { "universalify": "^2.0.0" }, @@ -7294,6 +7840,7 @@ "engines": [ "node >=0.6.0" ], + "license": "MIT", "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", @@ -7306,6 +7853,7 @@ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dev": true, + "license": "MIT", "dependencies": { "array-includes": "^3.1.6", "array.prototype.flat": "^1.3.1", @@ -7321,6 +7869,7 @@ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, + "license": "MIT", "dependencies": { "json-buffer": "3.0.1" } @@ -7330,6 +7879,7 @@ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -7339,6 +7889,7 @@ "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", "dev": true, + "license": "MIT", "engines": { "node": "> 0.8" } @@ -7348,6 +7899,7 @@ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" @@ -7361,6 +7913,7 @@ "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", "dev": true, + "license": "MIT", "dependencies": { "cli-truncate": "^2.1.0", "colorette": "^2.0.16", @@ -7388,6 +7941,7 @@ "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", "dev": true, + "license": "MIT", "engines": { "node": ">=14" }, @@ -7400,6 +7954,7 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -7414,31 +7969,36 @@ "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.once": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" @@ -7455,6 +8015,7 @@ "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", "dev": true, + "license": "MIT", "dependencies": { "ansi-escapes": "^4.3.0", "cli-cursor": "^3.1.0", @@ -7473,6 +8034,7 @@ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -7486,6 +8048,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, @@ -7498,6 +8061,7 @@ "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", "dev": true, + "license": "MIT", "dependencies": { "get-func-name": "^2.0.1" } @@ -7507,6 +8071,7 @@ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, + "license": "ISC", "dependencies": { "yallist": "^3.0.2" } @@ -7516,17 +8081,19 @@ "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "dev": true, + "license": "MIT", "bin": { "lz-string": "bin/bin.js" } }, "node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "version": "0.30.11", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", "dev": true, + "license": "MIT", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "@jridgewell/sourcemap-codec": "^1.5.0" } }, "node_modules/meow": { @@ -7534,6 +8101,7 @@ "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", "dev": true, + "license": "MIT", "engines": { "node": ">=18" }, @@ -7545,13 +8113,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/micromatch": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", "dev": true, + "license": "MIT", "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" @@ -7565,6 +8135,7 @@ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -7574,6 +8145,7 @@ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, + "license": "MIT", "dependencies": { "mime-db": "1.52.0" }, @@ -7586,6 +8158,7 @@ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -7595,6 +8168,7 @@ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -7604,6 +8178,7 @@ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, + "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -7616,6 +8191,7 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -7625,6 +8201,7 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz", "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==", "dev": true, + "license": "ISC", "engines": { "node": ">=8" } @@ -7634,6 +8211,7 @@ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, + "license": "MIT", "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" @@ -7647,6 +8225,7 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, @@ -7658,13 +8237,15 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/mkdirp": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, + "license": "MIT", "bin": { "mkdirp": "bin/cmd.js" }, @@ -7673,14 +8254,15 @@ } }, "node_modules/mlly": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.0.tgz", - "integrity": "sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==", + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.1.tgz", + "integrity": "sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==", "dev": true, + "license": "MIT", "dependencies": { "acorn": "^8.11.3", "pathe": "^1.1.2", - "pkg-types": "^1.1.0", + "pkg-types": "^1.1.1", "ufo": "^1.5.3" } }, @@ -7688,7 +8270,8 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/nanoid": { "version": "3.3.7", @@ -7701,6 +8284,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -7713,6 +8297,7 @@ "resolved": "https://registry.npmjs.org/native-run/-/native-run-2.0.1.tgz", "integrity": "sha512-XfG1FBZLM50J10xH9361whJRC9SHZ0Bub4iNRhhI61C8Jv0e1ud19muex6sNKB51ibQNUJNuYn25MuYET/rE6w==", "dev": true, + "license": "MIT", "dependencies": { "@ionic/utils-fs": "^3.1.7", "@ionic/utils-terminal": "^2.3.4", @@ -7738,6 +8323,7 @@ "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz", "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==", "dev": true, + "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } @@ -7746,19 +8332,22 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "dev": true + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true, + "license": "MIT" }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, @@ -7767,24 +8356,30 @@ } }, "node_modules/nwsapi": { - "version": "2.2.10", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.10.tgz", - "integrity": "sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==", - "dev": true + "version": "2.2.12", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.12.tgz", + "integrity": "sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==", + "dev": true, + "license": "MIT" }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -7794,6 +8389,7 @@ "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1" @@ -7810,6 +8406,7 @@ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -7819,6 +8416,7 @@ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.5", "define-properties": "^1.2.1", @@ -7837,6 +8435,7 @@ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -7851,6 +8450,7 @@ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -7864,28 +8464,12 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.hasown": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.4.tgz", - "integrity": "sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/object.values": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -7903,6 +8487,7 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, + "license": "ISC", "dependencies": { "wrappy": "1" } @@ -7912,6 +8497,7 @@ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, + "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" }, @@ -7927,6 +8513,7 @@ "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, + "license": "MIT", "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", @@ -7944,6 +8531,7 @@ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, + "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", @@ -7960,13 +8548,15 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -7982,6 +8572,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -7997,6 +8588,7 @@ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dev": true, + "license": "MIT", "dependencies": { "aggregate-error": "^3.0.0" }, @@ -8012,6 +8604,7 @@ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, + "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -8024,6 +8617,7 @@ "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", "dev": true, + "license": "MIT", "dependencies": { "entities": "^4.4.0" }, @@ -8036,6 +8630,7 @@ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -8045,6 +8640,7 @@ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -8054,6 +8650,7 @@ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -8062,13 +8659,15 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/path-scurry": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" @@ -8081,19 +8680,18 @@ } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, - "engines": { - "node": "14 || >=16.14" - } + "license": "ISC" }, "node_modules/path-scurry/node_modules/minipass": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", - "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, + "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" } @@ -8102,6 +8700,7 @@ "version": "1.8.0", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "license": "MIT", "dependencies": { "isarray": "0.0.1" } @@ -8110,13 +8709,15 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/pathval": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", "dev": true, + "license": "MIT", "engines": { "node": "*" } @@ -8125,25 +8726,29 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/picocolors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, + "license": "MIT", "engines": { "node": ">=8.6" }, @@ -8156,18 +8761,20 @@ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/pkg-types": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.1.1.tgz", - "integrity": "sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.1.3.tgz", + "integrity": "sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==", "dev": true, + "license": "MIT", "dependencies": { "confbox": "^0.1.7", - "mlly": "^1.7.0", + "mlly": "^1.7.1", "pathe": "^1.1.2" } }, @@ -8176,6 +8783,7 @@ "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", "dev": true, + "license": "MIT", "dependencies": { "@xmldom/xmldom": "^0.8.8", "base64-js": "^1.5.1", @@ -8190,14 +8798,15 @@ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "version": "8.4.41", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz", + "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==", "dev": true, "funding": [ { @@ -8213,9 +8822,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { "nanoid": "^3.3.7", - "picocolors": "^1.0.0", + "picocolors": "^1.0.1", "source-map-js": "^1.2.0" }, "engines": { @@ -8227,6 +8837,7 @@ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8.0" } @@ -8236,6 +8847,7 @@ "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" }, @@ -8248,6 +8860,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", @@ -8262,6 +8875,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -8274,6 +8888,7 @@ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6.0" } @@ -8283,6 +8898,7 @@ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, + "license": "MIT", "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" @@ -8296,6 +8912,7 @@ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -8304,6 +8921,7 @@ "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -8313,25 +8931,29 @@ "node_modules/prop-types/node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" }, "node_modules/proxy-from-env": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/psl": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, + "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -8342,6 +8964,7 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -8351,6 +8974,7 @@ "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" }, @@ -8365,7 +8989,8 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/queue-microtask": { "version": "1.2.3", @@ -8385,12 +9010,14 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/react": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" }, @@ -8402,6 +9029,7 @@ "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.2" @@ -8414,13 +9042,15 @@ "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/react-refresh": { "version": "0.14.2", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -8429,6 +9059,7 @@ "version": "5.3.4", "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", "integrity": "sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.13", "history": "^4.9.0", @@ -8448,6 +9079,7 @@ "version": "5.3.4", "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz", "integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.13", "history": "^4.9.0", @@ -8464,13 +9096,15 @@ "node_modules/react-router/node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" }, "node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -8485,6 +9119,7 @@ "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, + "license": "MIT", "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" @@ -8498,6 +9133,7 @@ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -8518,13 +9154,15 @@ "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/regenerate-unicode-properties": { "version": "10.1.1", "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", "dev": true, + "license": "MIT", "dependencies": { "regenerate": "^1.4.2" }, @@ -8535,13 +9173,15 @@ "node_modules/regenerator-runtime": { "version": "0.14.1", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" }, "node_modules/regenerator-transform": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.4" } @@ -8551,6 +9191,7 @@ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "define-properties": "^1.2.1", @@ -8569,6 +9210,7 @@ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", @@ -8586,6 +9228,7 @@ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "jsesc": "~0.5.0" }, @@ -8607,6 +9250,7 @@ "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", "dev": true, + "license": "MIT", "dependencies": { "throttleit": "^1.0.0" } @@ -8615,13 +9259,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/resolve": { "version": "1.22.8", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, + "license": "MIT", "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", @@ -8639,6 +9285,7 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -8646,13 +9293,15 @@ "node_modules/resolve-pathname": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", - "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==", + "license": "MIT" }, "node_modules/restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, + "license": "MIT", "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" @@ -8666,22 +9315,25 @@ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, + "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" } }, "node_modules/rfdc": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.1.tgz", - "integrity": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==", - "dev": true + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true, + "license": "MIT" }, "node_modules/rimraf": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-4.4.1.tgz", "integrity": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==", "dev": true, + "license": "ISC", "dependencies": { "glob": "^9.2.0" }, @@ -8696,10 +9348,11 @@ } }, "node_modules/rollup": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz", - "integrity": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.21.0.tgz", + "integrity": "sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/estree": "1.0.5" }, @@ -8711,22 +9364,22 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.18.0", - "@rollup/rollup-android-arm64": "4.18.0", - "@rollup/rollup-darwin-arm64": "4.18.0", - "@rollup/rollup-darwin-x64": "4.18.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.18.0", - "@rollup/rollup-linux-arm-musleabihf": "4.18.0", - "@rollup/rollup-linux-arm64-gnu": "4.18.0", - "@rollup/rollup-linux-arm64-musl": "4.18.0", - "@rollup/rollup-linux-powerpc64le-gnu": "4.18.0", - "@rollup/rollup-linux-riscv64-gnu": "4.18.0", - "@rollup/rollup-linux-s390x-gnu": "4.18.0", - "@rollup/rollup-linux-x64-gnu": "4.18.0", - "@rollup/rollup-linux-x64-musl": "4.18.0", - "@rollup/rollup-win32-arm64-msvc": "4.18.0", - "@rollup/rollup-win32-ia32-msvc": "4.18.0", - "@rollup/rollup-win32-x64-msvc": "4.18.0", + "@rollup/rollup-android-arm-eabi": "4.21.0", + "@rollup/rollup-android-arm64": "4.21.0", + "@rollup/rollup-darwin-arm64": "4.21.0", + "@rollup/rollup-darwin-x64": "4.21.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.21.0", + "@rollup/rollup-linux-arm-musleabihf": "4.21.0", + "@rollup/rollup-linux-arm64-gnu": "4.21.0", + "@rollup/rollup-linux-arm64-musl": "4.21.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.21.0", + "@rollup/rollup-linux-riscv64-gnu": "4.21.0", + "@rollup/rollup-linux-s390x-gnu": "4.21.0", + "@rollup/rollup-linux-x64-gnu": "4.21.0", + "@rollup/rollup-linux-x64-musl": "4.21.0", + "@rollup/rollup-win32-arm64-msvc": "4.21.0", + "@rollup/rollup-win32-ia32-msvc": "4.21.0", + "@rollup/rollup-win32-x64-msvc": "4.21.0", "fsevents": "~2.3.2" } }, @@ -8734,7 +9387,8 @@ "version": "0.6.0", "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz", "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/run-parallel": { "version": "1.2.0", @@ -8755,6 +9409,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } @@ -8764,6 +9419,7 @@ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, + "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" } @@ -8773,6 +9429,7 @@ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "get-intrinsic": "^1.2.4", @@ -8790,7 +9447,8 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/safe-buffer": { "version": "5.2.1", @@ -8810,13 +9468,15 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/safe-regex-test": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", @@ -8833,19 +9493,22 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/sax": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.1.4.tgz", "integrity": "sha512-5f3k2PbGGp+YtKJjOItpg3P99IMD84E4HOvcfleTb5joCHNXYLsR9yWFPOYGgaeMPDubQILTCMdsFb2OMeOjtg==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/saxes": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", "dev": true, + "license": "ISC", "dependencies": { "xmlchars": "^2.2.0" }, @@ -8857,15 +9520,17 @@ "version": "0.23.2", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" } }, "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -8878,6 +9543,7 @@ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -8895,6 +9561,7 @@ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -8910,6 +9577,7 @@ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, + "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -8922,6 +9590,7 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -8931,6 +9600,7 @@ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -8948,25 +9618,29 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -8976,6 +9650,7 @@ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", @@ -8993,6 +9668,7 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -9002,6 +9678,7 @@ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -9011,6 +9688,7 @@ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -9021,6 +9699,7 @@ "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", "dev": true, + "license": "ISC", "engines": { "node": ">= 10.x" } @@ -9030,6 +9709,7 @@ "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", "dev": true, + "license": "MIT", "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", @@ -9055,6 +9735,7 @@ "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, + "license": "MIT", "dependencies": { "escape-string-regexp": "^2.0.0" }, @@ -9067,6 +9748,7 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -9075,19 +9757,22 @@ "version": "0.0.2", "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/std-env": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/stop-iteration-iterator": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", "dev": true, + "license": "MIT", "dependencies": { "internal-slot": "^1.0.4" }, @@ -9100,6 +9785,7 @@ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, + "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" } @@ -9109,6 +9795,7 @@ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -9123,6 +9810,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -9144,11 +9832,23 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, "node_modules/string.prototype.trim": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -9167,6 +9867,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -9181,6 +9882,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -9198,6 +9900,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -9210,6 +9913,7 @@ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -9219,6 +9923,7 @@ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, + "license": "MIT", "dependencies": { "min-indent": "^1.0.0" }, @@ -9231,6 +9936,7 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -9243,6 +9949,7 @@ "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.3.0.tgz", "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", "dev": true, + "license": "MIT", "dependencies": { "acorn": "^8.10.0" }, @@ -9255,6 +9962,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -9267,6 +9975,7 @@ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -9278,19 +9987,22 @@ "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/systemjs": { "version": "6.15.1", "resolved": "https://registry.npmjs.org/systemjs/-/systemjs-6.15.1.tgz", "integrity": "sha512-Nk8c4lXvMB98MtbmjX7JwJRgJOL8fluecYCfCeYBznwmpOs8Bf15hLM6z4z71EDAhQVrQrI+wt1aLWSXZq+hXA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/tar": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", "dev": true, + "license": "ISC", "dependencies": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", @@ -9308,6 +10020,7 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, + "license": "ISC", "engines": { "node": ">=8" } @@ -9316,13 +10029,15 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/terser": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", - "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", + "version": "5.31.6", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", + "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", @@ -9340,19 +10055,22 @@ "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/throttleit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.1.tgz", "integrity": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/sindresorhus" } @@ -9361,13 +10079,15 @@ "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/through2": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "3" } @@ -9375,24 +10095,28 @@ "node_modules/tiny-invariant": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", - "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==" + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" }, "node_modules/tiny-warning": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", - "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==", + "license": "MIT" }, "node_modules/tinybench": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.8.0.tgz", - "integrity": "sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==", - "dev": true + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" }, "node_modules/tinypool": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-0.7.0.tgz", "integrity": "sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==", "dev": true, + "license": "MIT", "engines": { "node": ">=14.0.0" } @@ -9402,6 +10126,7 @@ "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-2.2.1.tgz", "integrity": "sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==", "dev": true, + "license": "MIT", "engines": { "node": ">=14.0.0" } @@ -9411,6 +10136,7 @@ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", "dev": true, + "license": "MIT", "engines": { "node": ">=14.14" } @@ -9420,6 +10146,7 @@ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -9429,6 +10156,7 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -9441,6 +10169,7 @@ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", @@ -9456,6 +10185,7 @@ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4.0.0" } @@ -9465,6 +10195,7 @@ "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", "dev": true, + "license": "MIT", "dependencies": { "punycode": "^2.3.0" }, @@ -9477,20 +10208,23 @@ "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true, + "license": "MIT", "bin": { "tree-kill": "cli.js" } }, "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", + "license": "0BSD" }, "node_modules/tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, + "license": "Apache-2.0", "dependencies": { "safe-buffer": "^5.0.1" }, @@ -9502,13 +10236,15 @@ "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true + "dev": true, + "license": "Unlicense" }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, @@ -9517,10 +10253,11 @@ } }, "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.1.0.tgz", + "integrity": "sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -9530,6 +10267,7 @@ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -9542,6 +10280,7 @@ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -9556,6 +10295,7 @@ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", @@ -9575,6 +10315,7 @@ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", "dev": true, + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", @@ -9595,6 +10336,7 @@ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", @@ -9611,10 +10353,11 @@ } }, "node_modules/typescript": { - "version": "5.4.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", - "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", + "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", "dev": true, + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -9624,16 +10367,18 @@ } }, "node_modules/ufo": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz", - "integrity": "sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==", - "dev": true + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz", + "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==", + "dev": true, + "license": "MIT" }, "node_modules/unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", @@ -9645,16 +10390,18 @@ } }, "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "dev": true, + "license": "MIT" }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -9664,6 +10411,7 @@ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, + "license": "MIT", "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" @@ -9677,6 +10425,7 @@ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -9686,6 +10435,7 @@ "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -9695,6 +10445,7 @@ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 10.0.0" } @@ -9704,14 +10455,15 @@ "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", "dev": true, "funding": [ { @@ -9727,6 +10479,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" @@ -9743,6 +10496,7 @@ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } @@ -9752,6 +10506,7 @@ "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", "dev": true, + "license": "MIT", "dependencies": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" @@ -9761,13 +10516,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, + "license": "MIT", "bin": { "uuid": "dist/bin/uuid" } @@ -9775,7 +10532,8 @@ "node_modules/value-equal": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", - "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==", + "license": "MIT" }, "node_modules/verror": { "version": "1.10.0", @@ -9785,6 +10543,7 @@ "engines": [ "node >=0.6.0" ], + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", @@ -9792,14 +10551,15 @@ } }, "node_modules/vite": { - "version": "5.2.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.11.tgz", - "integrity": "sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==", + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.2.tgz", + "integrity": "sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==", "dev": true, + "license": "MIT", "dependencies": { - "esbuild": "^0.20.1", - "postcss": "^8.4.38", - "rollup": "^4.13.0" + "esbuild": "^0.21.3", + "postcss": "^8.4.41", + "rollup": "^4.20.0" }, "bin": { "vite": "bin/vite.js" @@ -9818,6 +10578,7 @@ "less": "*", "lightningcss": "^1.21.0", "sass": "*", + "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" @@ -9835,6 +10596,9 @@ "sass": { "optional": true }, + "sass-embedded": { + "optional": true + }, "stylus": { "optional": true }, @@ -9851,6 +10615,7 @@ "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.34.6.tgz", "integrity": "sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==", "dev": true, + "license": "MIT", "dependencies": { "cac": "^6.7.14", "debug": "^4.3.4", @@ -9874,6 +10639,7 @@ "resolved": "https://registry.npmjs.org/vitest/-/vitest-0.34.6.tgz", "integrity": "sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==", "dev": true, + "license": "MIT", "dependencies": { "@types/chai": "^4.3.5", "@types/chai-subset": "^1.3.3", @@ -9951,6 +10717,7 @@ "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", "dev": true, + "license": "MIT", "dependencies": { "xml-name-validator": "^4.0.0" }, @@ -9963,6 +10730,7 @@ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=12" } @@ -9972,6 +10740,7 @@ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", "dev": true, + "license": "MIT", "dependencies": { "iconv-lite": "0.6.3" }, @@ -9984,6 +10753,7 @@ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" } @@ -9993,6 +10763,7 @@ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-12.0.1.tgz", "integrity": "sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==", "dev": true, + "license": "MIT", "dependencies": { "tr46": "^4.1.1", "webidl-conversions": "^7.0.0" @@ -10006,6 +10777,7 @@ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -10021,6 +10793,7 @@ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, + "license": "MIT", "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -10033,13 +10806,14 @@ } }, "node_modules/which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz", + "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", "dev": true, + "license": "MIT", "dependencies": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", "is-async-function": "^2.0.0", "is-date-object": "^1.0.5", "is-finalizationregistry": "^1.0.2", @@ -10048,8 +10822,8 @@ "is-weakref": "^1.0.2", "isarray": "^2.0.5", "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.15" }, "engines": { "node": ">= 0.4" @@ -10062,13 +10836,15 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/which-collection": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "dev": true, + "license": "MIT", "dependencies": { "is-map": "^2.0.3", "is-set": "^2.0.3", @@ -10087,6 +10863,7 @@ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", "dev": true, + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", @@ -10102,10 +10879,11 @@ } }, "node_modules/why-is-node-running": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.2.2.tgz", - "integrity": "sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", "dev": true, + "license": "MIT", "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" @@ -10122,6 +10900,7 @@ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -10131,6 +10910,7 @@ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -10147,13 +10927,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/ws": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", - "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -10175,6 +10957,7 @@ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=12" } @@ -10184,6 +10967,7 @@ "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz", "integrity": "sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==", "dev": true, + "license": "MIT", "dependencies": { "sax": ">=0.6.0", "xmlbuilder": "~11.0.0" @@ -10197,6 +10981,7 @@ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4.0" } @@ -10206,6 +10991,7 @@ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8.0" } @@ -10214,19 +11000,22 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "dev": true, + "license": "MIT", "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" @@ -10237,6 +11026,7 @@ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, diff --git a/example-app/package.json b/example-app/package.json index 08cccf3..92b9426 100644 --- a/example-app/package.json +++ b/example-app/package.json @@ -14,11 +14,11 @@ "dependencies": { "@capacitor/android": "^6.0.0", "@capacitor/app": "6.0.0", - "@capacitor/core": "6.0.0", + "@capacitor/core": "^6.0.0", "@capacitor/haptics": "6.0.0", "@capacitor/ios": "^6.0.0", "@capacitor/keyboard": "6.0.0", - "@capacitor/os-inappbrowser": "file:../", + "@capacitor/inappbrowser": "file:../", "@capacitor/status-bar": "6.0.0", "@ionic/react": "^8.0.0", "@ionic/react-router": "^8.0.0", diff --git a/example-app/src/pages/Home.tsx b/example-app/src/pages/Home.tsx index e374aa5..fcc6e8a 100644 --- a/example-app/src/pages/Home.tsx +++ b/example-app/src/pages/Home.tsx @@ -1,5 +1,5 @@ import { IonButton, IonContent, IonHeader, IonInput, IonPage, IonTitle, IonToolbar } from '@ionic/react'; -import { InAppBrowser, DefaultSystemBrowserOptions, DefaultWebViewOptions, DefaultAndroidWebViewOptions, DismissStyle, iOSViewStyle, iOSAnimation, ToolbarPosition, AndroidViewStyle, AndroidAnimation } from '@capacitor/os-inappbrowser'; +import { InAppBrowser, DefaultSystemBrowserOptions, DefaultWebViewOptions, DefaultAndroidWebViewOptions, DismissStyle, iOSViewStyle, iOSAnimation, ToolbarPosition, AndroidViewStyle, AndroidAnimation } from '@capacitor/inappbrowser'; import './Home.css'; const Home: React.FC = () => { diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/Info.plist b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/Info.plist deleted file mode 100644 index 4b772e7..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - AvailableLibraries - - - BinaryPath - OSInAppBrowserLib.framework/OSInAppBrowserLib - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64 - LibraryPath - OSInAppBrowserLib.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - ios - - - BinaryPath - OSInAppBrowserLib.framework/OSInAppBrowserLib - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64_x86_64-simulator - LibraryPath - OSInAppBrowserLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - ios - SupportedPlatformVariant - simulator - - - CFBundlePackageType - XFWK - XCFrameworkFormatVersion - 1.0 - - diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Headers/OSInAppBrowserLib-Swift.h b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Headers/OSInAppBrowserLib-Swift.h deleted file mode 100644 index 51652f3..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Headers/OSInAppBrowserLib-Swift.h +++ /dev/null @@ -1,349 +0,0 @@ -#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 OSINAPPBROWSERLIB_SWIFT_H -#define OSINAPPBROWSERLIB_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() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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() -# include -# 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 -@import ObjectiveC; -@import SafariServices; -@import UIKit; -#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="OSInAppBrowserLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -/// Adapter that makes the required calls so that an SFSafariVieWController implementation can perform the System Browser routing. -SWIFT_CLASS("_TtC17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapter") -@interface OSIABSafariViewControllerRouterAdapter : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class UIPresentationController; - -@interface OSIABSafariViewControllerRouterAdapter (SWIFT_EXTENSION(OSInAppBrowserLib)) -- (void)presentationControllerDidDismiss:(UIPresentationController * _Nonnull)presentationController; -@end - -@class SFSafariViewController; - -@interface OSIABSafariViewControllerRouterAdapter (SWIFT_EXTENSION(OSInAppBrowserLib)) -- (void)safariViewController:(SFSafariViewController * _Nonnull)controller didCompleteInitialLoad:(BOOL)didLoadSuccessfully; -@end - - -/// Adapter that makes the required calls so that an WKWebView implementation can perform the Web View routing. -/// This is done via a customisable interface. -SWIFT_CLASS("_TtC17OSInAppBrowserLib25OSIABWebViewRouterAdapter") -@interface OSIABWebViewRouterAdapter : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -@interface OSIABWebViewRouterAdapter (SWIFT_EXTENSION(OSInAppBrowserLib)) -- (void)presentationControllerDidDismiss:(UIPresentationController * _Nonnull)presentationController; -@end - - -#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 diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Info.plist b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Info.plist deleted file mode 100644 index 08dd1f4..0000000 Binary files a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Info.plist and /dev/null differ diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.abi.json b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.abi.json deleted file mode 100644 index 9f43796..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.abi.json +++ /dev/null @@ -1,5694 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABEngine", - "printedName": "OSIABEngine", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABEngine", - "printedName": "OSInAppBrowserLib.OSIABEngine<Ï„_0_0, Ï„_0_1, Ï„_0_2>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_1" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_2" - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABEngineV" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib11OSIABEngineVACyxq_q0_Gycfc", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineVACyxq_q0_Gycfc", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "openExternalBrowser", - "printedName": "openExternalBrowser(_:routerDelegate:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_0" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_0.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_0.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV012openExternalC0_14routerDelegate_y10Foundation3URLV_xySbctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV012openExternalC0_14routerDelegate_y10Foundation3URLV_xySbctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openSystemBrowser", - "printedName": "openSystemBrowser(_:routerDelegate:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_1" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_1.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_1.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV010openSystemC0_14routerDelegate_y10Foundation3URLV_q_ySo16UIViewControllerCctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV010openSystemC0_14routerDelegate_y10Foundation3URLV_q_ySo16UIViewControllerCctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openWebView", - "printedName": "openWebView(_:routerDelegate:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_2" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_2.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_2.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV11openWebView_14routerDelegate_y10Foundation3URLV_q0_ySo16UIViewControllerCctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV11openWebView_14routerDelegate_y10Foundation3URLV_q0_ySo16UIViewControllerCctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABWebViewOptions", - "printedName": "OSIABWebViewOptions", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(showURL:showToolbar:clearCache:clearSessionCache:mediaPlaybackRequiresUserAction:closeButtonText:toolbarPosition:showNavigationButtons:leftToRight:allowOverScroll:enableViewportScale:allowInLineMediaPlayback:surpressIncrementalRendering:viewStyle:animationEffect:customUserAgent:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewOptions", - "printedName": "OSInAppBrowserLib.OSIABWebViewOptions", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfc", - "mangledName": "$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(viewStyle:animationEffect:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewOptions", - "printedName": "OSInAppBrowserLib.OSIABWebViewOptions", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0Otcfc", - "mangledName": "$s17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0Otcfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC", - "mangledName": "$s17OSInAppBrowserLib19OSIABWebViewOptionsC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:17OSInAppBrowserLib12OSIABOptionsC", - "superclassNames": [ - "OSInAppBrowserLib.OSIABOptions" - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABOptions", - "printedName": "OSIABOptions", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(viewStyle:animationEffect:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABOptions", - "printedName": "OSInAppBrowserLib.OSIABOptions", - "usr": "s:17OSInAppBrowserLib12OSIABOptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc", - "mangledName": "$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib12OSIABOptionsC", - "mangledName": "$s17OSInAppBrowserLib12OSIABOptionsC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABToolbarPosition", - "printedName": "OSIABToolbarPosition", - "children": [ - { - "kind": "Var", - "name": "top", - "printedName": "top", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABToolbarPosition.Type) -> OSInAppBrowserLib.OSIABToolbarPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO3topyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO3topyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "bottom", - "printedName": "bottom", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABToolbarPosition.Type) -> OSInAppBrowserLib.OSIABToolbarPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO6bottomyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO6bottomyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABCacheManager", - "printedName": "OSIABCacheManager", - "children": [ - { - "kind": "Function", - "name": "clearCache", - "printedName": "clearCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP10clearCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP10clearCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearSessionCache", - "printedName": "clearSessionCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP17clearSessionCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP17clearSessionCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearCache", - "printedName": "clearCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerPAAE10clearCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerPAAE10clearCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearSessionCache", - "printedName": "clearSessionCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerPAAE17clearSessionCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerPAAE17clearSessionCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OSIABBrowserCacheManager", - "printedName": "OSIABBrowserCacheManager", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(dataStore:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABBrowserCacheManager", - "printedName": "OSInAppBrowserLib.OSIABBrowserCacheManager", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV" - }, - { - "kind": "TypeNominal", - "name": "WKWebsiteDataStore", - "printedName": "WebKit.WKWebsiteDataStore", - "usr": "c:objc(cs)WKWebsiteDataStore" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV9dataStoreACSo013WKWebsiteDataI0C_tcfc", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV9dataStoreACSo013WKWebsiteDataI0C_tcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "clearCache", - "printedName": "clearCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF0yyyycSgF", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF0yyyycSgF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearSessionCache", - "printedName": "clearSessionCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV012clearSessionF0yyyycSgF", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV012clearSessionF0yyyycSgF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABCacheManager", - "printedName": "OSIABCacheManager", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABViewStyle", - "printedName": "OSIABViewStyle", - "children": [ - { - "kind": "Var", - "name": "formSheet", - "printedName": "formSheet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABViewStyle.Type) -> OSInAppBrowserLib.OSIABViewStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABViewStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO9formSheetyA2CmF", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO9formSheetyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "fullScreen", - "printedName": "fullScreen", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABViewStyle.Type) -> OSInAppBrowserLib.OSIABViewStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABViewStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO10fullScreenyA2CmF", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO10fullScreenyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "pageSheet", - "printedName": "pageSheet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABViewStyle.Type) -> OSInAppBrowserLib.OSIABViewStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABViewStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO9pageSheetyA2CmF", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO9pageSheetyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABViewStyle?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABApplicationDelegate", - "printedName": "OSIABApplicationDelegate", - "children": [ - { - "kind": "Function", - "name": "canOpenURL", - "printedName": "canOpenURL(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP10canOpenURLySb10Foundation0I0VF", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP10canOpenURLySb10Foundation0I0VF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABApplicationDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "open", - "printedName": "open(_:options:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[UIKit.UIApplication.OpenExternalURLOptionsKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "OpenExternalURLOptionsKey", - "printedName": "UIKit.UIApplication.OpenExternalURLOptionsKey", - "usr": "c:@T@UIApplicationOpenExternalURLOptionsKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP4open_7options17completionHandlery10Foundation3URLV_SDySo38UIApplicationOpenExternalURLOptionsKeyaypGySbcSgtF", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP4open_7options17completionHandlery10Foundation3URLV_SDySo38UIApplicationOpenExternalURLOptionsKeyaypGySbcSgtF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABApplicationDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OSIABApplicationRouterAdapter", - "printedName": "OSIABApplicationRouterAdapter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABApplicationRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABApplicationRouterAdapter", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterC" - }, - { - "kind": "TypeNominal", - "name": "OSIABApplicationDelegate", - "printedName": "OSInAppBrowserLib.OSIABApplicationDelegate", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfc", - "mangledName": "$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterC10handleOpenyy10Foundation3URLV_ySbctF", - "mangledName": "$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterC10handleOpenyy10Foundation3URLV_ySbctF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterC", - "mangledName": "$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "TypeWitness", - "name": "ReturnType", - "printedName": "ReturnType", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP" - } - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SafariServices", - "printedName": "SafariServices", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABDismissStyle", - "printedName": "OSIABDismissStyle", - "children": [ - { - "kind": "Var", - "name": "cancel", - "printedName": "cancel", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABDismissStyle.Type) -> OSInAppBrowserLib.OSIABDismissStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO6cancelyA2CmF", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO6cancelyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "close", - "printedName": "close", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABDismissStyle.Type) -> OSInAppBrowserLib.OSIABDismissStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO5closeyA2CmF", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO5closeyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "done", - "printedName": "done", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABDismissStyle.Type) -> OSInAppBrowserLib.OSIABDismissStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO4doneyA2CmF", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO4doneyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABAnimationEffect", - "printedName": "OSIABAnimationEffect", - "children": [ - { - "kind": "Var", - "name": "coverVertical", - "printedName": "coverVertical", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABAnimationEffect.Type) -> OSInAppBrowserLib.OSIABAnimationEffect", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO13coverVerticalyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO13coverVerticalyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "crossDissolve", - "printedName": "crossDissolve", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABAnimationEffect.Type) -> OSInAppBrowserLib.OSIABAnimationEffect", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO13crossDissolveyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO13crossDissolveyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "flipHorizontal", - "printedName": "flipHorizontal", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABAnimationEffect.Type) -> OSInAppBrowserLib.OSIABAnimationEffect", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO14flipHorizontalyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO14flipHorizontalyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABWebViewCallbackHandler", - "printedName": "OSIABWebViewCallbackHandler", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(onDelegateURL:onDelegateAlertController:onBrowserPageLoad:onBrowserClosed:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewCallbackHandler", - "printedName": "OSInAppBrowserLib.OSIABWebViewCallbackHandler", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIAlertController) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIAlertController", - "printedName": "UIKit.UIAlertController", - "usr": "c:objc(cs)UIAlertController" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfc", - "mangledName": "$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV", - "mangledName": "$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABWebViewRouterAdapter", - "printedName": "OSIABWebViewRouterAdapter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:cacheManager:callbackHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABWebViewRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter" - }, - { - "kind": "TypeNominal", - "name": "OSIABWebViewOptions", - "printedName": "OSInAppBrowserLib.OSIABWebViewOptions", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABCacheManager", - "printedName": "OSInAppBrowserLib.OSIABCacheManager", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP" - }, - { - "kind": "TypeNominal", - "name": "OSIABWebViewCallbackHandler", - "printedName": "OSInAppBrowserLib.OSIABWebViewCallbackHandler", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0Vtcfc", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0Vtcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIViewController) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABWebViewRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter" - } - ], - "declKind": "Constructor", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter(im)init", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "presentationControllerDidDismiss", - "printedName": "presentationControllerDidDismiss(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIPresentationController", - "printedName": "UIKit.UIPresentationController", - "usr": "c:objc(cs)UIPresentationController" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter(im)presentationControllerDidDismiss:", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC32presentationControllerDidDismissyySo014UIPresentationJ0CF", - "moduleName": "OSInAppBrowserLib", - "objc_name": "presentationControllerDidDismiss:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "TypeWitness", - "name": "ReturnType", - "printedName": "ReturnType", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "SafariServices", - "printedName": "SafariServices", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSIABSystemBrowserOptions", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(dismissStyle:viewStyle:animationEffect:enableBarsCollapsing:enableReadersMode:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSInAppBrowserLib.OSIABSystemBrowserOptions", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfc", - "mangledName": "$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(viewStyle:animationEffect:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSInAppBrowserLib.OSIABSystemBrowserOptions", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0Otcfc", - "mangledName": "$s17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0Otcfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC", - "mangledName": "$s17OSInAppBrowserLib011OSIABSystemC7OptionsC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:17OSInAppBrowserLib12OSIABOptionsC", - "superclassNames": [ - "OSInAppBrowserLib.OSIABOptions" - ] - }, - { - "kind": "Import", - "name": "SafariServices", - "printedName": "SafariServices", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABSafariViewControllerRouterAdapter", - "printedName": "OSIABSafariViewControllerRouterAdapter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:onBrowserPageLoad:onBrowserClosed:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSafariViewControllerRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter" - }, - { - "kind": "TypeNominal", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSInAppBrowserLib.OSIABSystemBrowserOptions", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfc", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIViewController) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSafariViewControllerRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter" - } - ], - "declKind": "Constructor", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter(im)init", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "safariViewController", - "printedName": "safariViewController(_:didCompleteInitialLoad:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SFSafariViewController", - "printedName": "SafariServices.SFSafariViewController", - "usr": "c:objc(cs)SFSafariViewController" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter(im)safariViewController:didCompleteInitialLoad:", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC06safarifG0_22didCompleteInitialLoadySo08SFSafarifG0C_SbtF", - "moduleName": "OSInAppBrowserLib", - "objc_name": "safariViewController:didCompleteInitialLoad:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentationControllerDidDismiss", - "printedName": "presentationControllerDidDismiss(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIPresentationController", - "printedName": "UIKit.UIPresentationController", - "usr": "c:objc(cs)UIPresentationController" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter(im)presentationControllerDidDismiss:", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC012presentationG10DidDismissyySo014UIPresentationG0CF", - "moduleName": "OSInAppBrowserLib", - "objc_name": "presentationControllerDidDismiss:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "TypeWitness", - "name": "ReturnType", - "printedName": "ReturnType", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "AssociatedType", - "name": "ReturnType", - "printedName": "ReturnType", - "declKind": "AssociatedType", - "usr": "s:17OSInAppBrowserLib11OSIABRouterP10ReturnTypeQa", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP10ReturnTypeQa", - "moduleName": "OSInAppBrowserLib", - "protocolReq": true - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_0.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_0.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABRouterP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "UIApplication", - "printedName": "UIApplication", - "declKind": "Class", - "usr": "c:objc(cs)UIApplication", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIApplication", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIResponder", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "OSIABApplicationDelegate", - "printedName": "OSIABApplicationDelegate", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 3946, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 3980, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4013, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4053, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4107, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "StringLiteral", - "offset": 4148, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4258, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4292, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4331, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4373, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4421, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4473, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "StringLiteral", - "offset": 4936, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "StringLiteral", - "offset": 159, - "length": 19, - "value": "\"OSInAppBrowserLib.OSIABWebViewOptions\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "Array", - "offset": 5750, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "IntegerLiteral", - "offset": 4192, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 4509, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4542, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4576, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4683, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4717, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4748, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5199, - "length": 20, - "value": "\"https:\/\/outsystems\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5222, - "length": 24, - "value": "\"https:\/\/outsystems.com\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "IntegerLiteral", - "offset": 5616, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5669, - "length": 41, - "value": "\"Close Button count: \"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5709, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5766, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "StringLiteral", - "offset": 247, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "IntegerLiteral", - "offset": 313, - "length": 3, - "value": "155" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "IntegerLiteral", - "offset": 346, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "StringLiteral", - "offset": 459, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5827, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "159" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5924, - "length": 20, - "value": "\"Error - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 5978, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "164" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 20, - "value": "\"Error - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "BooleanLiteral", - "offset": 522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 26, - "value": "\"Custom Close Button Text\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6110, - "length": 6, - "value": "\"Done\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "170" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 26, - "value": "\"Custom Close Button Text\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 553, - "length": 6, - "value": "\"Done\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6163, - "length": 12, - "value": "\"No Toolbar\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6222, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "178" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 12, - "value": "\"No Toolbar\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "BooleanLiteral", - "offset": 535, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6271, - "length": 34, - "value": "\"No URL and No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6348, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6387, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "186" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 34, - "value": "\"No URL and No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 554, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 600, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6411, - "length": 49, - "value": "\"No URL, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6503, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6542, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6570, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "193" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 49, - "value": "\"No URL, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "BooleanLiteral", - "offset": 569, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "BooleanLiteral", - "offset": 615, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "BooleanLiteral", - "offset": 651, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6593, - "length": 8, - "value": "\"No URL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6644, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "201" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 8, - "value": "\"No URL\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "BooleanLiteral", - "offset": 528, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6668, - "length": 26, - "value": "\"No URL and Left-To-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6737, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6766, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "207" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 26, - "value": "\"No URL and Left-To-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "BooleanLiteral", - "offset": 546, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "BooleanLiteral", - "offset": 582, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6789, - "length": 50, - "value": "\"No URL, Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6882, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6955, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "214" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 50, - "value": "\"No URL, Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "BooleanLiteral", - "offset": 570, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "BooleanLiteral", - "offset": 658, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6979, - "length": 65, - "value": "\"No URL, Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7087, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7160, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7189, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "222" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 65, - "value": "\"No URL, Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "BooleanLiteral", - "offset": 585, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "BooleanLiteral", - "offset": 673, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "BooleanLiteral", - "offset": 709, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7212, - "length": 27, - "value": "\"No URL and Bottom Toolbar\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7282, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "231" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 27, - "value": "\"No URL and Bottom Toolbar\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "BooleanLiteral", - "offset": 547, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7340, - "length": 42, - "value": "\"No URL, Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7425, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7487, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "238" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 42, - "value": "\"No URL, Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "BooleanLiteral", - "offset": 562, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "BooleanLiteral", - "offset": 640, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7510, - "length": 23, - "value": "\"No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7590, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "246" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 23, - "value": "\"No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "BooleanLiteral", - "offset": 557, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7614, - "length": 41, - "value": "\"No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7740, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "252" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 41, - "value": "\"No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "BooleanLiteral", - "offset": 575, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7763, - "length": 15, - "value": "\"Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7825, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "259" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 15, - "value": "\"Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "BooleanLiteral", - "offset": 539, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7848, - "length": 42, - "value": "\"Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7982, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "265" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 42, - "value": "\"Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "BooleanLiteral", - "offset": 618, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 8006, - "length": 57, - "value": "\"Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 8154, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 8182, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "272" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 57, - "value": "\"Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "BooleanLiteral", - "offset": 633, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "BooleanLiteral", - "offset": 669, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 8205, - "length": 16, - "value": "\"Bottom Toolbar\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "280" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 16, - "value": "\"Bottom Toolbar\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 8298, - "length": 34, - "value": "\"Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 8413, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "286" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 34, - "value": "\"Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "BooleanLiteral", - "offset": 600, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 3825, - "length": 18, - "value": "\"chevron.backward\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 4066, - "length": 17, - "value": "\"chevron.forward\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "IntegerLiteral", - "offset": 4414, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 4455, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 4698, - "length": 20, - "value": "\"No Button Pressed.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 4885, - "length": 13, - "value": "\"URL Address\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 4948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 4988, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 5032, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 5439, - "length": 22, - "value": "\"Back Button Pressed.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 5615, - "length": 25, - "value": "\"Forward Button Pressed.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "FloatLiteral", - "offset": 6000, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6125, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "154" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6193, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "158" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6297, - "length": 34, - "value": "\"Show Navigation Buttons Disabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6386, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "163" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 34, - "value": "\"Show Navigation Buttons Disabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "BooleanLiteral", - "offset": 564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6405, - "length": 21, - "value": "\"Back Button Enabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6477, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "167" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 21, - "value": "\"Back Button Enabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "BooleanLiteral", - "offset": 547, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6495, - "length": 24, - "value": "\"Forward Button Enabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6573, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "171" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 24, - "value": "\"Forward Button Enabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "BooleanLiteral", - "offset": 553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6591, - "length": 22, - "value": "\"Both Buttons Enabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6692, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 322, - "length": 3, - "value": "175" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 355, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 468, - "length": 22, - "value": "\"Both Buttons Enabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 549, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 577, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 140, - "length": 5, - "value": "\"TOP\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 164, - "length": 8, - "value": "\"BOTTOM\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 140, - "length": 5, - "value": "\"TOP\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 164, - "length": 8, - "value": "\"BOTTOM\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/OSIABCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 2468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/OSIABCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 2624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1482, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1623, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "StringLiteral", - "offset": 1664, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 138, - "length": 12, - "value": "\"FORM_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 173, - "length": 13, - "value": "\"FULL_SCREEN\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 208, - "length": 12, - "value": "\"PAGE_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 138, - "length": 12, - "value": "\"FORM_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 173, - "length": 13, - "value": "\"FULL_SCREEN\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 208, - "length": 12, - "value": "\"PAGE_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABApplicationRouterAdapter.swift", - "kind": "Dictionary", - "offset": 611, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABApplicationRouterAdapter.swift", - "kind": "BooleanLiteral", - "offset": 1626, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 171, - "length": 8, - "value": "\"CANCEL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"CLOSE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 6, - "value": "\"DONE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 171, - "length": 8, - "value": "\"CANCEL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"CLOSE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 6, - "value": "\"DONE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "Array", - "offset": 1362, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "BooleanLiteral", - "offset": 1411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "BooleanLiteral", - "offset": 1462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "BooleanLiteral", - "offset": 1518, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 154, - "length": 16, - "value": "\"COVER_VERTICAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 196, - "length": 16, - "value": "\"CROSS_DISSOLVE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 17, - "value": "\"FLIP_HORIZONTAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 154, - "length": 16, - "value": "\"COVER_VERTICAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 196, - "length": 16, - "value": "\"CROSS_DISSOLVE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 17, - "value": "\"FLIP_HORIZONTAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 942, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1383, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1516, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2393, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5132, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 81, - "length": 17, - "value": "\"OSInAppBrowserLib.OSIABWebViewModel\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 12, - "value": "\"itms-appss\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5740, - "length": 11, - "value": "\"itms-apps\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5753, - "length": 5, - "value": "\"tel\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5760, - "length": 5, - "value": "\"sms\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5767, - "length": 8, - "value": "\"mailto\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5777, - "length": 5, - "value": "\"geo\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6465, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 19, - "value": "\"didFailNavigation\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 6879, - "length": 30, - "value": "\"didFailProvisionalNavigation\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 7059, - "length": 58, - "value": "\"webView: \"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 7084, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 7116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 8065, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 8215, - "length": 4, - "value": "\"OK\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 8422, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9405, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9557, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9613, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10114, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10321, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "IntegerLiteral", - "offset": 1043, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1066, - "length": 33, - "value": "\"Couldn't load the page content.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1281, - "length": 17, - "value": "\"arrow.clockwise\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1329, - "length": 13, - "value": "\"Reload page\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "IntegerLiteral", - "offset": 1576, - "length": 3, - "value": "120" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1608, - "length": 23, - "value": "\"Default - Error Light\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1679, - "length": 9, - "value": "\"Preview\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1732, - "length": 16, - "value": "\"Clicked reload\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 40, - "value": "\"OSInAppBrowserLib\/OSIABErrorView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 317, - "length": 2, - "value": "49" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 462, - "length": 23, - "value": "\"Default - Error Light\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 549, - "length": 9, - "value": "\"Preview\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 629, - "length": 16, - "value": "\"Clicked reload\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "Array", - "offset": 648, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 1044, - "length": 24, - "value": "\"https:\/\/outsystems.com\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 1936, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "58" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2007, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "62" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2114, - "length": 24, - "value": "\"Bottom Toolbar Defined\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "67" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 24, - "value": "\"Bottom Toolbar Defined\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2211, - "length": 25, - "value": "\"Error View - Light mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2275, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "71" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 25, - "value": "\"Error View - Light mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 538, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2311, - "length": 24, - "value": "\"Error View - Dark mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2374, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "75" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 24, - "value": "\"Error View - Dark mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 537, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "BooleanLiteral", - "offset": 2005, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 190, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABWebViewRouterAdapter\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "BooleanLiteral", - "offset": 3627, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 3764, - "length": 22, - "value": "\"OSInAppBrowserLib.OSIABWebViewController\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 3764, - "length": 22, - "value": "\"OSInAppBrowserLib.OSIABWebViewController\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABSystemBrowserOptions.swift", - "kind": "BooleanLiteral", - "offset": 1398, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABSystemBrowserOptions.swift", - "kind": "BooleanLiteral", - "offset": 1438, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABSystemBrowserOptions.swift", - "kind": "StringLiteral", - "offset": 186, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABSystemBrowserOptions\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABSafariViewControllerRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 169, - "length": 38, - "value": "\"OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABSafariViewControllerRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 2943, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABSafariViewController\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABSafariViewControllerRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 2943, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABSafariViewController\"" - } - ] -} \ No newline at end of file diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.private.swiftinterface b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.private.swiftinterface deleted file mode 100644 index e086ce7..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.private.swiftinterface +++ /dev/null @@ -1,174 +0,0 @@ -// 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-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSInAppBrowserLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Foundation -import SafariServices -import Swift -import SwiftUI -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public struct OSIABEngine where ExternalBrowser : OSInAppBrowserLib.OSIABRouter, SystemBrowser : OSInAppBrowserLib.OSIABRouter, WebView : OSInAppBrowserLib.OSIABRouter, ExternalBrowser.ReturnType == Swift.Bool, SystemBrowser.ReturnType == UIKit.UIViewController, WebView.ReturnType == UIKit.UIViewController { - public init() - public func openExternalBrowser(_ url: Foundation.URL, routerDelegate: ExternalBrowser, _ completionHandler: @escaping (ExternalBrowser.ReturnType) -> Swift.Void) - public func openSystemBrowser(_ url: Foundation.URL, routerDelegate: SystemBrowser, _ completionHandler: @escaping (SystemBrowser.ReturnType) -> Swift.Void) - public func openWebView(_ url: Foundation.URL, routerDelegate: WebView, _ completionHandler: @escaping (WebView.ReturnType) -> Swift.Void) -} -public class OSIABWebViewOptions : OSInAppBrowserLib.OSIABOptions { - public init(showURL: Swift.Bool = true, showToolbar: Swift.Bool = true, clearCache: Swift.Bool = true, clearSessionCache: Swift.Bool = true, mediaPlaybackRequiresUserAction: Swift.Bool = false, closeButtonText: Swift.String = "Close", toolbarPosition: OSInAppBrowserLib.OSIABToolbarPosition = .defaultValue, showNavigationButtons: Swift.Bool = true, leftToRight: Swift.Bool = false, allowOverScroll: Swift.Bool = true, enableViewportScale: Swift.Bool = false, allowInLineMediaPlayback: Swift.Bool = false, surpressIncrementalRendering: Swift.Bool = false, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, customUserAgent: Swift.String? = nil) - @objc deinit -} - - - - - - - - - - - - - - - - - - - - -public class OSIABOptions { - public init(viewStyle: OSInAppBrowserLib.OSIABViewStyle, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect) - @objc deinit -} - - - - - - -public enum OSIABToolbarPosition : Swift.String { - case top - case bottom - public static let defaultValue: OSInAppBrowserLib.OSIABToolbarPosition - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABCacheManager { - typealias CacheCompletion = () -> Swift.Void - func clearCache(_ completionHandler: Self.CacheCompletion?) - func clearSessionCache(_ completionHandler: Self.CacheCompletion?) -} -extension OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: Self.CacheCompletion? = nil) - public func clearSessionCache(_ completionHandler: Self.CacheCompletion? = nil) -} -public struct OSIABBrowserCacheManager { - public init(dataStore: WebKit.WKWebsiteDataStore) -} -extension OSInAppBrowserLib.OSIABBrowserCacheManager : OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) - public func clearSessionCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) -} -public enum OSIABViewStyle : Swift.String { - case formSheet - case fullScreen - case pageSheet - public static let defaultValue: OSInAppBrowserLib.OSIABViewStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABApplicationDelegate : AnyObject { - func canOpenURL(_ url: Foundation.URL) -> Swift.Bool - func open(_ url: Foundation.URL, options: [UIKit.UIApplication.OpenExternalURLOptionsKey : Any], completionHandler completion: ((Swift.Bool) -> Swift.Void)?) -} -extension UIKit.UIApplication : OSInAppBrowserLib.OSIABApplicationDelegate { -} -public class OSIABApplicationRouterAdapter : OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = Swift.Bool - public init(_ application: any OSInAppBrowserLib.OSIABApplicationDelegate) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABApplicationRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -public enum OSIABDismissStyle : Swift.String { - case cancel - case close - case done - public static let defaultValue: OSInAppBrowserLib.OSIABDismissStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum OSIABAnimationEffect : Swift.String { - case coverVertical - case crossDissolve - case flipHorizontal - public static let defaultValue: OSInAppBrowserLib.OSIABAnimationEffect - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public struct OSIABWebViewCallbackHandler { - public init(onDelegateURL: @escaping (Foundation.URL) -> Swift.Void, onDelegateAlertController: @escaping (UIKit.UIAlertController) -> Swift.Void, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping (Swift.Bool) -> Swift.Void) -} - - - - - - -@objc public class OSIABWebViewRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABWebViewOptions, cacheManager: any OSInAppBrowserLib.OSIABCacheManager, callbackHandler: OSInAppBrowserLib.OSIABWebViewCallbackHandler) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABWebViewRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABWebViewRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public class OSIABSystemBrowserOptions : OSInAppBrowserLib.OSIABOptions { - public init(dismissStyle: OSInAppBrowserLib.OSIABDismissStyle = .defaultValue, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, enableBarsCollapsing: Swift.Bool = true, enableReadersMode: Swift.Bool = false) - @objc deinit -} -@objc public class OSIABSafariViewControllerRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABSystemBrowserOptions, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping () -> Swift.Void) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : SafariServices.SFSafariViewControllerDelegate { - @objc dynamic public func safariViewController(_ controller: SafariServices.SFSafariViewController, didCompleteInitialLoad didLoadSuccessfully: Swift.Bool) -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public protocol OSIABRouter { - associatedtype ReturnType - func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (Self.ReturnType) -> Swift.Void) -} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.RawRepresentable {} diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.swiftdoc b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.swiftdoc deleted file mode 100644 index 60095f0..0000000 Binary files a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.swiftinterface b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.swiftinterface deleted file mode 100644 index e086ce7..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios.swiftinterface +++ /dev/null @@ -1,174 +0,0 @@ -// 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-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSInAppBrowserLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Foundation -import SafariServices -import Swift -import SwiftUI -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public struct OSIABEngine where ExternalBrowser : OSInAppBrowserLib.OSIABRouter, SystemBrowser : OSInAppBrowserLib.OSIABRouter, WebView : OSInAppBrowserLib.OSIABRouter, ExternalBrowser.ReturnType == Swift.Bool, SystemBrowser.ReturnType == UIKit.UIViewController, WebView.ReturnType == UIKit.UIViewController { - public init() - public func openExternalBrowser(_ url: Foundation.URL, routerDelegate: ExternalBrowser, _ completionHandler: @escaping (ExternalBrowser.ReturnType) -> Swift.Void) - public func openSystemBrowser(_ url: Foundation.URL, routerDelegate: SystemBrowser, _ completionHandler: @escaping (SystemBrowser.ReturnType) -> Swift.Void) - public func openWebView(_ url: Foundation.URL, routerDelegate: WebView, _ completionHandler: @escaping (WebView.ReturnType) -> Swift.Void) -} -public class OSIABWebViewOptions : OSInAppBrowserLib.OSIABOptions { - public init(showURL: Swift.Bool = true, showToolbar: Swift.Bool = true, clearCache: Swift.Bool = true, clearSessionCache: Swift.Bool = true, mediaPlaybackRequiresUserAction: Swift.Bool = false, closeButtonText: Swift.String = "Close", toolbarPosition: OSInAppBrowserLib.OSIABToolbarPosition = .defaultValue, showNavigationButtons: Swift.Bool = true, leftToRight: Swift.Bool = false, allowOverScroll: Swift.Bool = true, enableViewportScale: Swift.Bool = false, allowInLineMediaPlayback: Swift.Bool = false, surpressIncrementalRendering: Swift.Bool = false, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, customUserAgent: Swift.String? = nil) - @objc deinit -} - - - - - - - - - - - - - - - - - - - - -public class OSIABOptions { - public init(viewStyle: OSInAppBrowserLib.OSIABViewStyle, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect) - @objc deinit -} - - - - - - -public enum OSIABToolbarPosition : Swift.String { - case top - case bottom - public static let defaultValue: OSInAppBrowserLib.OSIABToolbarPosition - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABCacheManager { - typealias CacheCompletion = () -> Swift.Void - func clearCache(_ completionHandler: Self.CacheCompletion?) - func clearSessionCache(_ completionHandler: Self.CacheCompletion?) -} -extension OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: Self.CacheCompletion? = nil) - public func clearSessionCache(_ completionHandler: Self.CacheCompletion? = nil) -} -public struct OSIABBrowserCacheManager { - public init(dataStore: WebKit.WKWebsiteDataStore) -} -extension OSInAppBrowserLib.OSIABBrowserCacheManager : OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) - public func clearSessionCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) -} -public enum OSIABViewStyle : Swift.String { - case formSheet - case fullScreen - case pageSheet - public static let defaultValue: OSInAppBrowserLib.OSIABViewStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABApplicationDelegate : AnyObject { - func canOpenURL(_ url: Foundation.URL) -> Swift.Bool - func open(_ url: Foundation.URL, options: [UIKit.UIApplication.OpenExternalURLOptionsKey : Any], completionHandler completion: ((Swift.Bool) -> Swift.Void)?) -} -extension UIKit.UIApplication : OSInAppBrowserLib.OSIABApplicationDelegate { -} -public class OSIABApplicationRouterAdapter : OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = Swift.Bool - public init(_ application: any OSInAppBrowserLib.OSIABApplicationDelegate) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABApplicationRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -public enum OSIABDismissStyle : Swift.String { - case cancel - case close - case done - public static let defaultValue: OSInAppBrowserLib.OSIABDismissStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum OSIABAnimationEffect : Swift.String { - case coverVertical - case crossDissolve - case flipHorizontal - public static let defaultValue: OSInAppBrowserLib.OSIABAnimationEffect - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public struct OSIABWebViewCallbackHandler { - public init(onDelegateURL: @escaping (Foundation.URL) -> Swift.Void, onDelegateAlertController: @escaping (UIKit.UIAlertController) -> Swift.Void, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping (Swift.Bool) -> Swift.Void) -} - - - - - - -@objc public class OSIABWebViewRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABWebViewOptions, cacheManager: any OSInAppBrowserLib.OSIABCacheManager, callbackHandler: OSInAppBrowserLib.OSIABWebViewCallbackHandler) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABWebViewRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABWebViewRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public class OSIABSystemBrowserOptions : OSInAppBrowserLib.OSIABOptions { - public init(dismissStyle: OSInAppBrowserLib.OSIABDismissStyle = .defaultValue, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, enableBarsCollapsing: Swift.Bool = true, enableReadersMode: Swift.Bool = false) - @objc deinit -} -@objc public class OSIABSafariViewControllerRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABSystemBrowserOptions, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping () -> Swift.Void) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : SafariServices.SFSafariViewControllerDelegate { - @objc dynamic public func safariViewController(_ controller: SafariServices.SFSafariViewController, didCompleteInitialLoad didLoadSuccessfully: Swift.Bool) -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public protocol OSIABRouter { - associatedtype ReturnType - func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (Self.ReturnType) -> Swift.Void) -} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.RawRepresentable {} diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/module.modulemap b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/module.modulemap deleted file mode 100644 index ad5451f..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,4 +0,0 @@ -framework module OSInAppBrowserLib { - header "OSInAppBrowserLib-Swift.h" - requires objc -} diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/OSInAppBrowserLib b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/OSInAppBrowserLib deleted file mode 100755 index f3ac299..0000000 Binary files a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/OSInAppBrowserLib.framework/OSInAppBrowserLib and /dev/null differ diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Info.plist b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 303c185..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.outsystems.rd.inappbrowser.OSInAppBrowserLib - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - - diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/DWARF/OSInAppBrowserLib b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/DWARF/OSInAppBrowserLib deleted file mode 100644 index 9a2873e..0000000 Binary files a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/DWARF/OSInAppBrowserLib and /dev/null differ diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSInAppBrowserLib.yml b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSInAppBrowserLib.yml deleted file mode 100644 index c6b9fa7..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSInAppBrowserLib.yml +++ /dev/null @@ -1,493 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/rcj/Library/Developer/Xcode/DerivedData/OSInAppBrowserLib-exxamiccymxcjdabdfefbzmbgbsk/Build/Intermediates.noindex/ArchiveIntermediates/OSInAppBrowserLib/InstallationBuildProductsLocation/Library/Frameworks/OSInAppBrowserLib.framework/OSInAppBrowserLib' -relocations: - - { offsetInCU: 0x34, offset: 0x57B28, size: 0x8, addend: 0x0, symName: _OSInAppBrowserLibVersionString, symObjAddr: 0x0, symBinAddr: 0x19080, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x57B5D, size: 0x8, addend: 0x0, symName: _OSInAppBrowserLibVersionNumber, symObjAddr: 0x40, symBinAddr: 0x190C0, symSize: 0x0 } - - { offsetInCU: 0x46, offset: 0x57BB9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineVACyxq_q0_GycfC', symObjAddr: 0x0, symBinAddr: 0x8000, symSize: 0x4 } - - { offsetInCU: 0x83, offset: 0x57BF6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineV012openExternalC0_14routerDelegate_y10Foundation3URLV_xySbctF', symObjAddr: 0x4, symBinAddr: 0x8004, symSize: 0x98 } - - { offsetInCU: 0xE0, offset: 0x57C53, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineV010openSystemC0_14routerDelegate_y10Foundation3URLV_q_ySo16UIViewControllerCctF', symObjAddr: 0xE4, symBinAddr: 0x80E4, symSize: 0x98 } - - { offsetInCU: 0x13D, offset: 0x57CB0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineV11openWebView_14routerDelegate_y10Foundation3URLV_q0_ySo16UIViewControllerCctF', symObjAddr: 0x1A0, symBinAddr: 0x81A0, symSize: 0x98 } - - { offsetInCU: 0x1A6, offset: 0x57D19, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SbIegn_TRTA', symObjAddr: 0xC0, symBinAddr: 0x80C0, symSize: 0x24 } - - { offsetInCU: 0x1DA, offset: 0x57D4D, size: 0x8, addend: 0x0, symName: '_$sSo16UIViewControllerCIegg_ABIegn_TRTA', symObjAddr: 0x17C, symBinAddr: 0x817C, symSize: 0x24 } - - { offsetInCU: 0x203, offset: 0x57D76, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineVMi', symObjAddr: 0x238, symBinAddr: 0x8238, symSize: 0x8 } - - { offsetInCU: 0x217, offset: 0x57D8A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineVMa', symObjAddr: 0x240, symBinAddr: 0x8240, symSize: 0xC } - - { offsetInCU: 0x278, offset: 0x57DEB, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaMa', symObjAddr: 0x4A0, symBinAddr: 0x848C, symSize: 0x54 } - - { offsetInCU: 0x28C, offset: 0x57DFF, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x560, symBinAddr: 0x854C, symSize: 0x24 } - - { offsetInCU: 0x2A0, offset: 0x57E13, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x584, symBinAddr: 0x8570, symSize: 0x24 } - - { offsetInCU: 0x2B4, offset: 0x57E27, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSQWb', symObjAddr: 0x5A8, symBinAddr: 0x8594, symSize: 0x24 } - - { offsetInCU: 0x358, offset: 0x57ECB, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromF1C_6resulty01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x260, symBinAddr: 0x8258, symSize: 0x4 } - - { offsetInCU: 0x378, offset: 0x57EEB, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromF1C_6resulty01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x260, symBinAddr: 0x8258, symSize: 0x4 } - - { offsetInCU: 0x39E, offset: 0x57F11, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromF1C_6resultSb01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x264, symBinAddr: 0x825C, symSize: 0x4 } - - { offsetInCU: 0x3BE, offset: 0x57F31, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromF1C_6resultSb01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x264, symBinAddr: 0x825C, symSize: 0x4 } - - { offsetInCU: 0x3EA, offset: 0x57F5D, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromF1Cyx01_F5CTypeQzSgFZTW', symObjAddr: 0x268, symBinAddr: 0x8260, symSize: 0x40 } - - { offsetInCU: 0x468, offset: 0x57FDB, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2F0, symBinAddr: 0x82E8, symSize: 0x40 } - - { offsetInCU: 0x4EC, offset: 0x5805F, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x330, symBinAddr: 0x8328, symSize: 0x70 } - - { offsetInCU: 0x57F, offset: 0x580F2, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x3AC, symBinAddr: 0x8398, symSize: 0x88 } - - { offsetInCU: 0x600, offset: 0x58173, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toghI0s0hI0VSgyFTW', symObjAddr: 0x4F4, symBinAddr: 0x84E0, symSize: 0x6C } - - { offsetInCU: 0x628, offset: 0x5819B, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo38UIApplicationOpenExternalURLOptionsKeya_Tgq5Tf4nnd_n', symObjAddr: 0x5CC, symBinAddr: 0x85B8, symSize: 0x80 } - - { offsetInCU: 0x6B9, offset: 0x5822C, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo38UIApplicationOpenExternalURLOptionsKeya_Tgq5Tf4nnd_n', symObjAddr: 0x64C, symBinAddr: 0x8638, symSize: 0x90 } - - { offsetInCU: 0x7AA, offset: 0x5831D, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSYSCSY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x434, symBinAddr: 0x8420, symSize: 0x44 } - - { offsetInCU: 0x7D3, offset: 0x58346, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSYSCSY8rawValue03RawG0QzvgTW', symObjAddr: 0x478, symBinAddr: 0x8464, symSize: 0x28 } - - { offsetInCU: 0x2B, offset: 0x58506, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfC', symObjAddr: 0x0, symBinAddr: 0x8714, symSize: 0xE0 } - - { offsetInCU: 0x5E, offset: 0x58539, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfC', symObjAddr: 0x0, symBinAddr: 0x8714, symSize: 0xE0 } - - { offsetInCU: 0x92, offset: 0x5856D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfc', symObjAddr: 0xE0, symBinAddr: 0x87F4, symSize: 0x78 } - - { offsetInCU: 0xC4, offset: 0x5859F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0OtcfC', symObjAddr: 0x158, symBinAddr: 0x886C, symSize: 0x2C } - - { offsetInCU: 0x123, offset: 0x585FE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0Otcfc', symObjAddr: 0x184, symBinAddr: 0x8898, symSize: 0x2C } - - { offsetInCU: 0x168, offset: 0x58643, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCfd', symObjAddr: 0x1CC, symBinAddr: 0x88E0, symSize: 0x24 } - - { offsetInCU: 0x1A3, offset: 0x5867E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCfD', symObjAddr: 0x1F0, symBinAddr: 0x8904, symSize: 0x2C } - - { offsetInCU: 0x1E6, offset: 0x586C1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfcTf4nnnnngnnnnnnnnnnn_n', symObjAddr: 0x21C, symBinAddr: 0x8930, symSize: 0x110 } - - { offsetInCU: 0x357, offset: 0x58832, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCfE', symObjAddr: 0x1B0, symBinAddr: 0x88C4, symSize: 0x1C } - - { offsetInCU: 0x3DF, offset: 0x588BA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCMa', symObjAddr: 0x32C, symBinAddr: 0x8A40, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x58A44, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwCP', symObjAddr: 0x0, symBinAddr: 0x8AC8, symSize: 0x2C } - - { offsetInCU: 0x57, offset: 0x58A58, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwxx', symObjAddr: 0x2C, symBinAddr: 0x8AF4, symSize: 0x8 } - - { offsetInCU: 0x6B, offset: 0x58A6C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwcp', symObjAddr: 0x34, symBinAddr: 0x8AFC, symSize: 0x2C } - - { offsetInCU: 0x7F, offset: 0x58A80, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwca', symObjAddr: 0x60, symBinAddr: 0x8B28, symSize: 0x40 } - - { offsetInCU: 0x93, offset: 0x58A94, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0xA0, symBinAddr: 0x8B68, symSize: 0xC } - - { offsetInCU: 0xA7, offset: 0x58AA8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwta', symObjAddr: 0xAC, symBinAddr: 0x8B74, symSize: 0x30 } - - { offsetInCU: 0xBB, offset: 0x58ABC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwet', symObjAddr: 0xDC, symBinAddr: 0x8BA4, symSize: 0x48 } - - { offsetInCU: 0xCF, offset: 0x58AD0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwst', symObjAddr: 0x124, symBinAddr: 0x8BEC, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x58AE4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVMa', symObjAddr: 0x160, symBinAddr: 0x8C28, symSize: 0x10 } - - { offsetInCU: 0xF7, offset: 0x58AF8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x170, symBinAddr: 0x8C38, symSize: 0x10 } - - { offsetInCU: 0x16E, offset: 0x58B6F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg', symObjAddr: 0x180, symBinAddr: 0x8C48, symSize: 0x250 } - - { offsetInCU: 0x2B9, offset: 0x58CBA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_', symObjAddr: 0x3D0, symBinAddr: 0x8E98, symSize: 0x980 } - - { offsetInCU: 0x618, offset: 0x59019, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_', symObjAddr: 0xD50, symBinAddr: 0x9818, symSize: 0x65C } - - { offsetInCU: 0x7BF, offset: 0x591C0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_A3_yXEfU_', symObjAddr: 0x13AC, symBinAddr: 0x9E74, symSize: 0xD0 } - - { offsetInCU: 0x7FA, offset: 0x591FB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_yycAA0eF5ModelCcfu_yycfu0_', symObjAddr: 0x147C, symBinAddr: 0x9F44, symSize: 0x154 } - - { offsetInCU: 0x859, offset: 0x5925A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvgyycfU0_', symObjAddr: 0x15D0, symBinAddr: 0xA098, symSize: 0x154 } - - { offsetInCU: 0x8D3, offset: 0x592D4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x1744, symBinAddr: 0xA20C, symSize: 0x8 } - - { offsetInCU: 0xAC9, offset: 0x594CA, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x174C, symBinAddr: 0xA214, symSize: 0x40 } - - { offsetInCU: 0xADD, offset: 0x594DE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvgyycfU0_TA', symObjAddr: 0x17B0, symBinAddr: 0xA278, symSize: 0x8 } - - { offsetInCU: 0xAF1, offset: 0x594F2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVAC7SwiftUI0F0AAWl', symObjAddr: 0x17C8, symBinAddr: 0xA290, symSize: 0x44 } - - { offsetInCU: 0xB05, offset: 0x59506, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_yycAA0eF5ModelCcfu_yycfu0_TA', symObjAddr: 0x1860, symBinAddr: 0xA328, symSize: 0x8 } - - { offsetInCU: 0xB19, offset: 0x5951A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_yycAA0eF5ModelCcfu3_yycfu4_TA', symObjAddr: 0x192C, symBinAddr: 0xA3F4, symSize: 0x34 } - - { offsetInCU: 0xB58, offset: 0x59559, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_A3_yXEfU_TA', symObjAddr: 0x1960, symBinAddr: 0xA428, symSize: 0x8 } - - { offsetInCU: 0xB6C, offset: 0x5956D, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x1968, symBinAddr: 0xA430, symSize: 0x44 } - - { offsetInCU: 0xB80, offset: 0x59581, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVWOb', symObjAddr: 0x1A7C, symBinAddr: 0xA544, symSize: 0x44 } - - { offsetInCU: 0xB94, offset: 0x59595, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x1AC0, symBinAddr: 0xA588, symSize: 0x44 } - - { offsetInCU: 0xBA8, offset: 0x595A9, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOe', symObjAddr: 0x1B04, symBinAddr: 0xA5CC, symSize: 0x10 } - - { offsetInCU: 0xBBC, offset: 0x595BD, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyACyAA6VStackVyAA9TupleViewVyACyAA6HStackVyAGy17OSInAppBrowserLib015OSIABNavigationG0VSg_AA6SpacerVAA0G0PAAE11buttonStyleyQrqd__AA015PrimitiveButtonP0Rd__lFQOyAA0R0VyAA4TextVG_AA05PlainrP0VQo_tGGAA14_PaddingLayoutVGSg_AA012_ConditionalD0VyAJ010OSIABErrorG0VAJ08OSIABWebG13RepresentableVGACyALA3_GSgtGGAA25_AppearanceActionModifierVGAJ28OSIABLayoutDirectionModifierVGACyxq_GAap2aPRzAA0G8ModifierR_rlWl', symObjAddr: 0x1B18, symBinAddr: 0xA5E0, symSize: 0x84 } - - { offsetInCU: 0xBD0, offset: 0x595D1, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA6VStackVyAA9TupleViewVyACyAA6HStackVyAGy17OSInAppBrowserLib015OSIABNavigationG0VSg_AA6SpacerVAA0G0PAAE11buttonStyleyQrqd__AA015PrimitiveButtonP0Rd__lFQOyAA0R0VyAA4TextVG_AA05PlainrP0VQo_tGGAA14_PaddingLayoutVGSg_AA012_ConditionalD0VyAJ010OSIABErrorG0VAJ08OSIABWebG13RepresentableVGACyALA3_GSgtGGAA25_AppearanceActionModifierVGACyxq_GAap2aPRzAA0G8ModifierR_rlWl', symObjAddr: 0x1B9C, symBinAddr: 0xA664, symSize: 0x84 } - - { offsetInCU: 0xE3E, offset: 0x5983F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x1724, symBinAddr: 0xA1EC, symSize: 0x4 } - - { offsetInCU: 0xE5A, offset: 0x5985B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fJ7OutputsVAD11_GraphValueVyxG_AD01_fJ6InputsVtFZTW', symObjAddr: 0x1728, symBinAddr: 0xA1F0, symSize: 0x4 } - - { offsetInCU: 0xE76, offset: 0x59877, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fjK6InputsV_tFZTW', symObjAddr: 0x172C, symBinAddr: 0xA1F4, symSize: 0x18 } - - { offsetInCU: 0x2B, offset: 0x599C6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc', symObjAddr: 0x0, symBinAddr: 0xA77C, symSize: 0x18 } - - { offsetInCU: 0x4F, offset: 0x599EA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc', symObjAddr: 0x0, symBinAddr: 0xA77C, symSize: 0x18 } - - { offsetInCU: 0x80, offset: 0x59A1B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsCfd', symObjAddr: 0x18, symBinAddr: 0xA794, symSize: 0x8 } - - { offsetInCU: 0xE5, offset: 0x59A80, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0OtcfC', symObjAddr: 0x20, symBinAddr: 0xA79C, symSize: 0x48 } - - { offsetInCU: 0x136, offset: 0x59AD1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsCfD', symObjAddr: 0x68, symBinAddr: 0xA7E4, symSize: 0x10 } - - { offsetInCU: 0x166, offset: 0x59B01, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsCMa', symObjAddr: 0x78, symBinAddr: 0xA7F4, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x59C1A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwCP', symObjAddr: 0x0, symBinAddr: 0xA828, symSize: 0xB0 } - - { offsetInCU: 0x57, offset: 0x59C2E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwxx', symObjAddr: 0xB0, symBinAddr: 0xA8D8, symSize: 0x48 } - - { offsetInCU: 0x6B, offset: 0x59C42, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwcp', symObjAddr: 0xF8, symBinAddr: 0xA920, symSize: 0x88 } - - { offsetInCU: 0x7F, offset: 0x59C56, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwca', symObjAddr: 0x180, symBinAddr: 0xA9A8, symSize: 0x98 } - - { offsetInCU: 0x93, offset: 0x59C6A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOWOh', symObjAddr: 0x218, symBinAddr: 0xAA40, symSize: 0x3C } - - { offsetInCU: 0xA7, offset: 0x59C7E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwtk', symObjAddr: 0x268, symBinAddr: 0xAA90, symSize: 0x88 } - - { offsetInCU: 0xBB, offset: 0x59C92, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwta', symObjAddr: 0x2F0, symBinAddr: 0xAB18, symSize: 0x98 } - - { offsetInCU: 0xCF, offset: 0x59CA6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwet', symObjAddr: 0x388, symBinAddr: 0xABB0, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x59CBA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwst', symObjAddr: 0x394, symBinAddr: 0xABBC, symSize: 0xC } - - { offsetInCU: 0xF7, offset: 0x59CCE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwug', symObjAddr: 0x3A0, symBinAddr: 0xABC8, symSize: 0x4 } - - { offsetInCU: 0x10B, offset: 0x59CE2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwup', symObjAddr: 0x3A4, symBinAddr: 0xABCC, symSize: 0x4 } - - { offsetInCU: 0x11F, offset: 0x59CF6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwui', symObjAddr: 0x3A8, symBinAddr: 0xABD0, symSize: 0x10 } - - { offsetInCU: 0x133, offset: 0x59D0A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOMr', symObjAddr: 0x3B8, symBinAddr: 0xABE0, symSize: 0x6C } - - { offsetInCU: 0x147, offset: 0x59D1E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwCP', symObjAddr: 0x424, symBinAddr: 0xAC4C, symSize: 0xB8 } - - { offsetInCU: 0x15B, offset: 0x59D32, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwxx', symObjAddr: 0x4DC, symBinAddr: 0xAD04, symSize: 0x58 } - - { offsetInCU: 0x16F, offset: 0x59D46, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwcp', symObjAddr: 0x534, symBinAddr: 0xAD5C, symSize: 0x90 } - - { offsetInCU: 0x183, offset: 0x59D5A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwca', symObjAddr: 0x5C4, symBinAddr: 0xADEC, symSize: 0xA0 } - - { offsetInCU: 0x197, offset: 0x59D6E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwtk', symObjAddr: 0x664, symBinAddr: 0xAE8C, symSize: 0x90 } - - { offsetInCU: 0x1AB, offset: 0x59D82, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwta', symObjAddr: 0x6F4, symBinAddr: 0xAF1C, symSize: 0xA0 } - - { offsetInCU: 0x1BF, offset: 0x59D96, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwet', symObjAddr: 0x794, symBinAddr: 0xAFBC, symSize: 0xC } - - { offsetInCU: 0x1D3, offset: 0x59DAA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwst', symObjAddr: 0x7DC, symBinAddr: 0xB004, symSize: 0xC } - - { offsetInCU: 0x1E7, offset: 0x59DBE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVMr', symObjAddr: 0x870, symBinAddr: 0xB098, symSize: 0x68 } - - { offsetInCU: 0x1FB, offset: 0x59DD2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AA4BodyAdEP_AD0J0PWT', symObjAddr: 0x8D8, symBinAddr: 0xB100, symSize: 0x10 } - - { offsetInCU: 0x231, offset: 0x59E08, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV4body7contentQr7SwiftUI05_ViewG8_ContentVyACG_tF', symObjAddr: 0x8E8, symBinAddr: 0xB110, symSize: 0x230 } - - { offsetInCU: 0x2CA, offset: 0x59EA1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP4body7content4BodyQzAD01_jG8_ContentVyxG_tFTW', symObjAddr: 0xBB4, symBinAddr: 0xB3DC, symSize: 0x4 } - - { offsetInCU: 0x2E7, offset: 0x59EBE, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI17EnvironmentValuesV15layoutDirectionAA06LayoutF0OvpACTk', symObjAddr: 0xB18, symBinAddr: 0xB340, symSize: 0x7C } - - { offsetInCU: 0x2FF, offset: 0x59ED6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOWOc', symObjAddr: 0xBF8, symBinAddr: 0xB3E0, symSize: 0x44 } - - { offsetInCU: 0x313, offset: 0x59EEA, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI30_EnvironmentKeyWritingModifierVyAA15LayoutDirectionOGWOc', symObjAddr: 0xC60, symBinAddr: 0xB448, symSize: 0x48 } - - { offsetInCU: 0x327, offset: 0x59EFE, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI30_EnvironmentKeyWritingModifierVyAA15LayoutDirectionOGWOh', symObjAddr: 0xCA8, symBinAddr: 0xB490, symSize: 0x40 } - - { offsetInCU: 0x33B, offset: 0x59F12, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA014_ViewModifier_D0Vy17OSInAppBrowserLib020OSIABLayoutDirectionF0VGAA022_EnvironmentKeyWritingF0VyAA06LayoutL0OGGACyxq_GAA0E0A2aQRzAA0eF0R_rlWl', symObjAddr: 0xCEC, symBinAddr: 0xB4D4, symSize: 0x9C } - - { offsetInCU: 0x3B1, offset: 0x59F88, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP05_makeJ08modifier6inputs4bodyAD01_J7OutputsVAD11_GraphValueVyxG_AD01_J6InputsVAlD01_P0V_AQtctFZTW', symObjAddr: 0xB94, symBinAddr: 0xB3BC, symSize: 0x4 } - - { offsetInCU: 0x3CD, offset: 0x59FA4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP05_makeJ4List8modifier6inputs4bodyAD01_jL7OutputsVAD11_GraphValueVyxG_AD01_jL6InputsVAlD01_Q0V_AQtctFZTW', symObjAddr: 0xB98, symBinAddr: 0xB3C0, symSize: 0x4 } - - { offsetInCU: 0x3E9, offset: 0x59FC0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP14_viewListCount6inputs4bodySiSgAD01_jlM6InputsV_AjLXEtFZTW', symObjAddr: 0xB9C, symBinAddr: 0xB3C4, symSize: 0x18 } - - { offsetInCU: 0x43, offset: 0x5A0FE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwCP', symObjAddr: 0x0, symBinAddr: 0xB5B0, symSize: 0x124 } - - { offsetInCU: 0x57, offset: 0x5A112, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwxx', symObjAddr: 0x124, symBinAddr: 0xB6D4, symSize: 0x7C } - - { offsetInCU: 0x6B, offset: 0x5A126, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwcp', symObjAddr: 0x1A0, symBinAddr: 0xB750, symSize: 0xF8 } - - { offsetInCU: 0x7F, offset: 0x5A13A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwca', symObjAddr: 0x298, symBinAddr: 0xB848, symSize: 0x130 } - - { offsetInCU: 0x93, offset: 0x5A14E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwtk', symObjAddr: 0x3C8, symBinAddr: 0xB978, symSize: 0xD0 } - - { offsetInCU: 0xA7, offset: 0x5A162, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwta', symObjAddr: 0x498, symBinAddr: 0xBA48, symSize: 0x108 } - - { offsetInCU: 0xBB, offset: 0x5A176, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwet', symObjAddr: 0x5A0, symBinAddr: 0xBB50, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x5A18A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwst', symObjAddr: 0x628, symBinAddr: 0xBBD8, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x5A19E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVMa', symObjAddr: 0x6A8, symBinAddr: 0xBC58, symSize: 0x3C } - - { offsetInCU: 0xF7, offset: 0x5A1B2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVMr', symObjAddr: 0x6E4, symBinAddr: 0xBC94, symSize: 0x9C } - - { offsetInCU: 0x10B, offset: 0x5A1C6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x780, symBinAddr: 0xBD30, symSize: 0x10 } - - { offsetInCU: 0x13C, offset: 0x5A1F7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV4bodyQrvg', symObjAddr: 0x790, symBinAddr: 0xBD40, symSize: 0x270 } - - { offsetInCU: 0x1F6, offset: 0x5A2B1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAaeFP4body4BodyQzvgTW', symObjAddr: 0xA08, symBinAddr: 0xBFB8, symSize: 0x38 } - - { offsetInCU: 0x255, offset: 0x5A310, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV4bodyQrvg7SwiftUI05TupleF0VyAGyAE0F0PAAE15layoutDirectionyQrAA011OSIABLayoutL4EnumOFQOyAE6HStackVyAGyAA0E6Button33_E6EE006C509F907B5BFD0901EE702BEBLLV_AQtGG_Qo__AE6SpacerVtGSg_AiEE5frame8minWidth10idealWidth8maxWidth9minHeight11idealHeight9maxHeight9alignmentQr12CoreGraphics7CGFloatVSg_A8_A8_A8_A8_A8_AE9AlignmentVtFQOyAiEE16allowsHitTestingyQrSbFQOyAiEE9lineLimityQrSiSgFQOyAE4TextV_Qo__Qo__Qo_SgtGyXEfU_', symObjAddr: 0xA40, symBinAddr: 0xBFF0, symSize: 0x808 } - - { offsetInCU: 0x365, offset: 0x5A420, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV4bodyQrvg7SwiftUI05TupleF0VyAGyAE0F0PAAE15layoutDirectionyQrAA011OSIABLayoutL4EnumOFQOyAE6HStackVyAGyAA0E6Button33_E6EE006C509F907B5BFD0901EE702BEBLLV_AQtGG_Qo__AE6SpacerVtGSg_AiEE5frame8minWidth10idealWidth8maxWidth9minHeight11idealHeight9maxHeight9alignmentQr12CoreGraphics7CGFloatVSg_A8_A8_A8_A8_A8_AE9AlignmentVtFQOyAiEE16allowsHitTestingyQrSbFQOyAiEE9lineLimityQrSiSgFQOyAE4TextV_Qo__Qo__Qo_SgtGyXEfU_ARyXEfU_', symObjAddr: 0x1248, symBinAddr: 0xC7F8, symSize: 0xA0 } - - { offsetInCU: 0x3F8, offset: 0x5A4B3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x150C, symBinAddr: 0xCABC, symSize: 0x54 } - - { offsetInCU: 0x499, offset: 0x5A554, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyACyACyAA4TextVAA30_EnvironmentKeyWritingModifierVySiSgGGAA017_AllowsHitTestingI0VGAA16_FlexFrameLayoutVGSgWOy', symObjAddr: 0x1650, symBinAddr: 0xCB6C, symSize: 0x3C } - - { offsetInCU: 0x4AD, offset: 0x5A568, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOy', symObjAddr: 0x168C, symBinAddr: 0xCBA8, symSize: 0x10 } - - { offsetInCU: 0x4C1, offset: 0x5A57C, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyACyACyAA4TextVAA30_EnvironmentKeyWritingModifierVySiSgGGAA017_AllowsHitTestingI0VGAA16_FlexFrameLayoutVGSgWOe', symObjAddr: 0x169C, symBinAddr: 0xCBB8, symSize: 0x3C } - - { offsetInCU: 0x4D5, offset: 0x5A590, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOb', symObjAddr: 0x17D8, symBinAddr: 0xCCF4, symSize: 0x3C } - - { offsetInCU: 0x4E9, offset: 0x5A5A4, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOr', symObjAddr: 0x1814, symBinAddr: 0xCD30, symSize: 0x30 } - - { offsetInCU: 0x4FD, offset: 0x5A5B8, size: 0x8, addend: 0x0, symName: '_$sSay7SwiftUI4TextV8ModifierOGWOr', symObjAddr: 0x1844, symBinAddr: 0xCD60, symSize: 0x28 } - - { offsetInCU: 0x511, offset: 0x5A5CC, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI30_EnvironmentKeyWritingModifierVySiSgGWOr', symObjAddr: 0x186C, symBinAddr: 0xCD88, symSize: 0x28 } - - { offsetInCU: 0x525, offset: 0x5A5E0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwCP', symObjAddr: 0x1894, symBinAddr: 0xCDB0, symSize: 0x30 } - - { offsetInCU: 0x539, offset: 0x5A5F4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwxx', symObjAddr: 0x18C4, symBinAddr: 0xCDE0, symSize: 0x28 } - - { offsetInCU: 0x54D, offset: 0x5A608, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwcp', symObjAddr: 0x18EC, symBinAddr: 0xCE08, symSize: 0x44 } - - { offsetInCU: 0x561, offset: 0x5A61C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwca', symObjAddr: 0x1930, symBinAddr: 0xCE4C, symSize: 0x6C } - - { offsetInCU: 0x575, offset: 0x5A630, size: 0x8, addend: 0x0, symName: ___swift_memcpy33_8, symObjAddr: 0x199C, symBinAddr: 0xCEB8, symSize: 0x14 } - - { offsetInCU: 0x589, offset: 0x5A644, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwta', symObjAddr: 0x19B0, symBinAddr: 0xCECC, symSize: 0x4C } - - { offsetInCU: 0x59D, offset: 0x5A658, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwet', symObjAddr: 0x19FC, symBinAddr: 0xCF18, symSize: 0x48 } - - { offsetInCU: 0x5B1, offset: 0x5A66C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwst', symObjAddr: 0x1A44, symBinAddr: 0xCF60, symSize: 0x44 } - - { offsetInCU: 0x5C5, offset: 0x5A680, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVMa', symObjAddr: 0x1A88, symBinAddr: 0xCFA4, symSize: 0x10 } - - { offsetInCU: 0x5D9, offset: 0x5A694, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAA4BodyAeFP_AHWT', symObjAddr: 0x1B08, symBinAddr: 0xCFE0, symSize: 0x10 } - - { offsetInCU: 0x5ED, offset: 0x5A6A8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV4bodyQrvg7SwiftUI5ImageVyXEfU_TA', symObjAddr: 0x1B18, symBinAddr: 0xCFF0, symSize: 0x44 } - - { offsetInCU: 0x62B, offset: 0x5A6E6, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI16PlainButtonStyleVAcA09PrimitivedE0AAWl', symObjAddr: 0x1B5C, symBinAddr: 0xD034, symSize: 0x48 } - - { offsetInCU: 0x64A, offset: 0x5A705, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4ViewPAAE8disabledyQrSbFySbzcfU_TA', symObjAddr: 0x1C04, symBinAddr: 0xD0DC, symSize: 0x18 } - - { offsetInCU: 0x673, offset: 0x5A72E, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA4ViewPAAE11buttonStyleyQrqd__AA015PrimitiveButtonG0Rd__lFQOyAA0I0VyAA5ImageVG_AA05PlainiG0VQo_AA32_EnvironmentKeyTransformModifierVySbGGACyxq_GAad2aDRzAA0eO0R_rlWl', symObjAddr: 0x1C64, symBinAddr: 0xD13C, symSize: 0xE4 } - - { offsetInCU: 0x756, offset: 0x5A811, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAaeFP05_makeQ04view6inputsAE01_Q7OutputsVAE11_GraphValueVyxG_AE01_Q6InputsVtFZTW', symObjAddr: 0xA00, symBinAddr: 0xBFB0, symSize: 0x4 } - - { offsetInCU: 0x772, offset: 0x5A82D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAaeFP05_makeQ4List4view6inputsAE01_qS7OutputsVAE11_GraphValueVyxG_AE01_qS6InputsVtFZTW', symObjAddr: 0xA04, symBinAddr: 0xBFB4, symSize: 0x4 } - - { offsetInCU: 0x83D, offset: 0x5A8F8, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4ViewPAAE5frame8minWidth05idealF003maxF00E6Height0gI00hI09alignmentQr12CoreGraphics7CGFloatVSg_A5oA9AlignmentVtFAA15ModifiedContentVyASyAA4TextVAA30_EnvironmentKeyWritingModifierVySiSgGGAA017_AllowsHitTestingU0VG_Tg5', symObjAddr: 0x12E8, symBinAddr: 0xC898, symSize: 0x204 } - - { offsetInCU: 0x897, offset: 0x5A952, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x14EC, symBinAddr: 0xCA9C, symSize: 0x4 } - - { offsetInCU: 0x8B3, offset: 0x5A96E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fJ7OutputsVAD11_GraphValueVyxG_AD01_fJ6InputsVtFZTW', symObjAddr: 0x14F0, symBinAddr: 0xCAA0, symSize: 0x4 } - - { offsetInCU: 0x8CF, offset: 0x5A98A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fjK6InputsV_tFZTW', symObjAddr: 0x14F4, symBinAddr: 0xCAA4, symSize: 0x18 } - - { offsetInCU: 0x27, offset: 0x5AAD2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xD264, symSize: 0x50 } - - { offsetInCU: 0x4B, offset: 0x5AAF6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvpZ', symObjAddr: 0x468, symBinAddr: 0x266B0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5AB10, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xD264, symSize: 0x50 } - - { offsetInCU: 0x9D, offset: 0x5AB48, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueACSgSS_tcfC', symObjAddr: 0x5C, symBinAddr: 0xD2C0, symSize: 0x80 } - - { offsetInCU: 0xC8, offset: 0x5AB73, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvg', symObjAddr: 0x11C, symBinAddr: 0xD340, symSize: 0x30 } - - { offsetInCU: 0xF3, offset: 0x5AB9E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1B8, symBinAddr: 0xD3DC, symSize: 0xC } - - { offsetInCU: 0x10F, offset: 0x5ABBA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1C4, symBinAddr: 0xD3E8, symSize: 0x24 } - - { offsetInCU: 0x13D, offset: 0x5ABE8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValue_WZ', symObjAddr: 0x50, symBinAddr: 0xD2B4, symSize: 0xC } - - { offsetInCU: 0x157, offset: 0x5AC02, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASQWb', symObjAddr: 0x158, symBinAddr: 0xD37C, symSize: 0x4 } - - { offsetInCU: 0x16B, offset: 0x5AC16, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOACSQAAWl', symObjAddr: 0x15C, symBinAddr: 0xD380, symSize: 0x44 } - - { offsetInCU: 0x17F, offset: 0x5AC2A, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x1E8, symBinAddr: 0xD40C, symSize: 0xC } - - { offsetInCU: 0x193, offset: 0x5AC3E, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x1F4, symBinAddr: 0xD418, symSize: 0x4 } - - { offsetInCU: 0x1A7, offset: 0x5AC52, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwet', symObjAddr: 0x1F8, symBinAddr: 0xD41C, symSize: 0x90 } - - { offsetInCU: 0x1BB, offset: 0x5AC66, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwst', symObjAddr: 0x288, symBinAddr: 0xD4AC, symSize: 0xBC } - - { offsetInCU: 0x1CF, offset: 0x5AC7A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwug', symObjAddr: 0x344, symBinAddr: 0xD568, symSize: 0x8 } - - { offsetInCU: 0x1E3, offset: 0x5AC8E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwup', symObjAddr: 0x34C, symBinAddr: 0xD570, symSize: 0x4 } - - { offsetInCU: 0x1F7, offset: 0x5ACA2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwui', symObjAddr: 0x350, symBinAddr: 0xD574, symSize: 0xC } - - { offsetInCU: 0x20B, offset: 0x5ACB6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOMa', symObjAddr: 0x35C, symBinAddr: 0xD580, symSize: 0x10 } - - { offsetInCU: 0x235, offset: 0x5ACE0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14C, symBinAddr: 0xD370, symSize: 0xC } - - { offsetInCU: 0x251, offset: 0x5ACFC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASH9hashValueSivgTW', symObjAddr: 0x1A0, symBinAddr: 0xD3C4, symSize: 0x8 } - - { offsetInCU: 0x26D, offset: 0x5AD18, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A8, symBinAddr: 0xD3CC, symSize: 0x8 } - - { offsetInCU: 0x289, offset: 0x5AD34, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1B0, symBinAddr: 0xD3D4, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x5AE60, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerP10clearCacheyyyycSgF', symObjAddr: 0x0, symBinAddr: 0xD590, symSize: 0x4 } - - { offsetInCU: 0x5F, offset: 0x5AE7C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerPAAE10clearCacheyyyycSgF', symObjAddr: 0x4, symBinAddr: 0xD594, symSize: 0x8 } - - { offsetInCU: 0xA9, offset: 0x5AEC6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerP17clearSessionCacheyyyycSgF', symObjAddr: 0xC, symBinAddr: 0xD59C, symSize: 0x4 } - - { offsetInCU: 0xC5, offset: 0x5AEE2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerPAAE17clearSessionCacheyyyycSgF', symObjAddr: 0x10, symBinAddr: 0xD5A0, symSize: 0x8 } - - { offsetInCU: 0x11B, offset: 0x5AF38, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV9dataStoreACSo013WKWebsiteDataI0C_tcfC', symObjAddr: 0x18, symBinAddr: 0xD5A8, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x5B00E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF033_5C90474E0718C79AB93258AA826B5964LL18sessionCookiesOnly_ySb_yycSgtF6deleteL_yySaySo12NSHTTPCookieCG_AGtF', symObjAddr: 0x20, symBinAddr: 0xD5B0, symSize: 0x18C } - - { offsetInCU: 0x344, offset: 0x5B161, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF033_5C90474E0718C79AB93258AA826B5964LL18sessionCookiesOnly_ySb_yycSgtF6deleteL_yySaySo12NSHTTPCookieCG_AGtFyycfU_', symObjAddr: 0x1AC, symBinAddr: 0xD73C, symSize: 0x1B0 } - - { offsetInCU: 0x6D2, offset: 0x5B4EF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF033_5C90474E0718C79AB93258AA826B5964LL18sessionCookiesOnly_ySb_yycSgtFySaySo12NSHTTPCookieCGcfU_', symObjAddr: 0x35C, symBinAddr: 0xD8EC, symSize: 0x304 } - - { offsetInCU: 0xA63, offset: 0x5B880, size: 0x8, addend: 0x0, symName: '_$sSaySo12NSHTTPCookieCGIegg_So7NSArrayCIeyBy_TR', symObjAddr: 0x660, symBinAddr: 0xDBF0, symSize: 0x5C } - - { offsetInCU: 0xA7B, offset: 0x5B898, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x6E4, symBinAddr: 0xDC74, symSize: 0x10 } - - { offsetInCU: 0xA8F, offset: 0x5B8AC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x6F4, symBinAddr: 0xDC84, symSize: 0x8 } - - { offsetInCU: 0xAA3, offset: 0x5B8C0, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x6FC, symBinAddr: 0xDC8C, symSize: 0x10 } - - { offsetInCU: 0xAB7, offset: 0x5B8D4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerVMa', symObjAddr: 0x98C, symBinAddr: 0xDF1C, symSize: 0x10 } - - { offsetInCU: 0xACB, offset: 0x5B8E8, size: 0x8, addend: 0x0, symName: '_$sSo12NSHTTPCookieCMa', symObjAddr: 0x9F0, symBinAddr: 0xDF80, symSize: 0x3C } - - { offsetInCU: 0xADF, offset: 0x5B8FC, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0xA2C, symBinAddr: 0xDFBC, symSize: 0x1C } - - { offsetInCU: 0xB4F, offset: 0x5B96C, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0xA48, symBinAddr: 0xDFD8, symSize: 0x130 } - - { offsetInCU: 0xCC6, offset: 0x5BAE3, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVySo12NSHTTPCookieCG_Tg5', symObjAddr: 0xB80, symBinAddr: 0xE110, symSize: 0xE4 } - - { offsetInCU: 0xE1F, offset: 0x5BC3C, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo12NSHTTPCookieC_Tg5Tf4d_n', symObjAddr: 0xC64, symBinAddr: 0xE1F4, symSize: 0x54 } - - { offsetInCU: 0xF4E, offset: 0x5BD6B, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSo12NSHTTPCookieC_s10ArraySliceVyAEGTg5Tf4nd_n', symObjAddr: 0xCF8, symBinAddr: 0xE248, symSize: 0xD0 } - - { offsetInCU: 0x27, offset: 0x5C00D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xE390, symSize: 0x50 } - - { offsetInCU: 0x4B, offset: 0x5C031, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvpZ', symObjAddr: 0x468, symBinAddr: 0x266E0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5C04B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xE390, symSize: 0x50 } - - { offsetInCU: 0x9D, offset: 0x5C083, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueACSgSS_tcfC', symObjAddr: 0x60, symBinAddr: 0xE3F0, symSize: 0x6C } - - { offsetInCU: 0xC8, offset: 0x5C0AE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvg', symObjAddr: 0x10C, symBinAddr: 0xE45C, symSize: 0x24 } - - { offsetInCU: 0xEF, offset: 0x5C0D5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x19C, symBinAddr: 0xE4EC, symSize: 0xC } - - { offsetInCU: 0x10B, offset: 0x5C0F1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1A8, symBinAddr: 0xE4F8, symSize: 0x24 } - - { offsetInCU: 0x139, offset: 0x5C11F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValue_WZ', symObjAddr: 0x50, symBinAddr: 0xE3E0, symSize: 0x10 } - - { offsetInCU: 0x153, offset: 0x5C139, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASQWb', symObjAddr: 0x13C, symBinAddr: 0xE48C, symSize: 0x4 } - - { offsetInCU: 0x167, offset: 0x5C14D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOACSQAAWl', symObjAddr: 0x140, symBinAddr: 0xE490, symSize: 0x44 } - - { offsetInCU: 0x17B, offset: 0x5C161, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwet', symObjAddr: 0x1DC, symBinAddr: 0xE51C, symSize: 0x90 } - - { offsetInCU: 0x18F, offset: 0x5C175, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwst', symObjAddr: 0x26C, symBinAddr: 0xE5AC, symSize: 0xBC } - - { offsetInCU: 0x1A3, offset: 0x5C189, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwug', symObjAddr: 0x328, symBinAddr: 0xE668, symSize: 0x8 } - - { offsetInCU: 0x1B7, offset: 0x5C19D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwup', symObjAddr: 0x330, symBinAddr: 0xE670, symSize: 0x4 } - - { offsetInCU: 0x1CB, offset: 0x5C1B1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwui', symObjAddr: 0x334, symBinAddr: 0xE674, symSize: 0x8 } - - { offsetInCU: 0x1DF, offset: 0x5C1C5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOMa', symObjAddr: 0x33C, symBinAddr: 0xE67C, symSize: 0x10 } - - { offsetInCU: 0x209, offset: 0x5C1EF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130, symBinAddr: 0xE480, symSize: 0xC } - - { offsetInCU: 0x225, offset: 0x5C20B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASH9hashValueSivgTW', symObjAddr: 0x184, symBinAddr: 0xE4D4, symSize: 0x8 } - - { offsetInCU: 0x241, offset: 0x5C227, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x18C, symBinAddr: 0xE4DC, symSize: 0x8 } - - { offsetInCU: 0x25D, offset: 0x5C243, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x194, symBinAddr: 0xE4E4, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x5C371, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABApplicationDelegatePAAE4open_7options17completionHandlery10Foundation3URLV_SDySo38UIApplicationOpenExternalURLOptionsKeyaypGySbcSgtF', symObjAddr: 0x0, symBinAddr: 0xE68C, symSize: 0x8 } - - { offsetInCU: 0x83, offset: 0x5C3B1, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SbIeyBy_TR', symObjAddr: 0x15C, symBinAddr: 0xE7E8, symSize: 0x3C } - - { offsetInCU: 0xD1, offset: 0x5C3FF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfC', symObjAddr: 0x198, symBinAddr: 0xE824, symSize: 0x3C } - - { offsetInCU: 0x118, offset: 0x5C446, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfc', symObjAddr: 0x1D4, symBinAddr: 0xE860, symSize: 0xC } - - { offsetInCU: 0x13F, offset: 0x5C46D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterC10handleOpenyy10Foundation3URLV_ySbctF', symObjAddr: 0x1E0, symBinAddr: 0xE86C, symSize: 0xD0 } - - { offsetInCU: 0x1F3, offset: 0x5C521, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCfd', symObjAddr: 0x2B0, symBinAddr: 0xE93C, symSize: 0x1C } - - { offsetInCU: 0x22E, offset: 0x5C55C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCfD', symObjAddr: 0x2CC, symBinAddr: 0xE958, symSize: 0x24 } - - { offsetInCU: 0x2AF, offset: 0x5C5DD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCAA11OSIABRouterA2aDP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctFTW', symObjAddr: 0x2F0, symBinAddr: 0xE97C, symSize: 0x130 } - - { offsetInCU: 0x442, offset: 0x5C770, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCMa', symObjAddr: 0x524, symBinAddr: 0xEBB0, symSize: 0x20 } - - { offsetInCU: 0x456, offset: 0x5C784, size: 0x8, addend: 0x0, symName: '_$sSbIegn_SbIegy_TRTA', symObjAddr: 0x588, symBinAddr: 0xEC14, symSize: 0x30 } - - { offsetInCU: 0x47F, offset: 0x5C7AD, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaABSHSCWl', symObjAddr: 0x5B8, symBinAddr: 0xEC44, symSize: 0x48 } - - { offsetInCU: 0x493, offset: 0x5C7C1, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x600, symBinAddr: 0xEC8C, symSize: 0x10 } - - { offsetInCU: 0x4A7, offset: 0x5C7D5, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x610, symBinAddr: 0xEC9C, symSize: 0x8 } - - { offsetInCU: 0x4BB, offset: 0x5C7E9, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeya_yptWOc', symObjAddr: 0x658, symBinAddr: 0xECA4, symSize: 0x48 } - - { offsetInCU: 0x4CF, offset: 0x5C7FD, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x6A0, symBinAddr: 0xECEC, symSize: 0x10 } - - { offsetInCU: 0x55B, offset: 0x5C889, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSo38UIApplicationOpenExternalURLOptionsKeya_ypTg5Tf4gd_n', symObjAddr: 0x420, symBinAddr: 0xEAAC, symSize: 0xF4 } - - { offsetInCU: 0x6A5, offset: 0x5C9D3, size: 0x8, addend: 0x0, symName: '_$sSo13UIApplicationC17OSInAppBrowserLib24OSIABApplicationDelegateA2cDP10canOpenURLySb10Foundation0J0VFTW', symObjAddr: 0x8, symBinAddr: 0xE694, symSize: 0x4C } - - { offsetInCU: 0x6D6, offset: 0x5CA04, size: 0x8, addend: 0x0, symName: '_$sSo13UIApplicationC17OSInAppBrowserLib24OSIABApplicationDelegateA2cDP4open_7options17completionHandlery10Foundation3URLV_SDySo0A25OpenExternalURLOptionsKeyaypGySbcSgtFTW', symObjAddr: 0x54, symBinAddr: 0xE6E0, symSize: 0x4 } - - { offsetInCU: 0x6F2, offset: 0x5CA20, size: 0x8, addend: 0x0, symName: '_$sSo13UIApplicationC4open_7options17completionHandlery10Foundation3URLV_SDySo0A25OpenExternalURLOptionsKeyaypGySbcSgtFTO', symObjAddr: 0x58, symBinAddr: 0xE6E4, symSize: 0x104 } - - { offsetInCU: 0x2B, offset: 0x5CB78, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVMa', symObjAddr: 0x0, symBinAddr: 0xECFC, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x5CB90, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVMa', symObjAddr: 0x0, symBinAddr: 0xECFC, symSize: 0x10 } - - { offsetInCU: 0x57, offset: 0x5CBA4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AaD0F0PWb', symObjAddr: 0x10, symBinAddr: 0xED0C, symSize: 0x4 } - - { offsetInCU: 0x90, offset: 0x5CBDD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP04makeJ07context0J4TypeQzAD0jG7ContextVyxG_tFTW', symObjAddr: 0x58, symBinAddr: 0xED10, symSize: 0x8 } - - { offsetInCU: 0xC2, offset: 0x5CC0F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP06updateJ0_7contexty0J4TypeQz_AD0jG7ContextVyxGtFTW', symObjAddr: 0x60, symBinAddr: 0xED18, symSize: 0x4 } - - { offsetInCU: 0xDF, offset: 0x5CC2C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0xD0, symBinAddr: 0xED88, symSize: 0xC } - - { offsetInCU: 0xF3, offset: 0x5CC40, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVAC7SwiftUI06UIViewG0AAWl', symObjAddr: 0x1B8, symBinAddr: 0xEE70, symSize: 0x44 } - - { offsetInCU: 0x176, offset: 0x5CCC3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP09dismantleJ0_11coordinatory0J4TypeQz_11CoordinatorQztFZTW', symObjAddr: 0x64, symBinAddr: 0xED1C, symSize: 0x4 } - - { offsetInCU: 0x192, offset: 0x5CCDF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP15makeCoordinator0L0QzyFTW', symObjAddr: 0x68, symBinAddr: 0xED20, symSize: 0x4 } - - { offsetInCU: 0x1AE, offset: 0x5CCFB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP011_identifiedF4Tree2inAD011_IdentifiedfL0O0J4TypeQz_tFTW', symObjAddr: 0x6C, symBinAddr: 0xED24, symSize: 0x4 } - - { offsetInCU: 0x1CA, offset: 0x5CD17, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP12sizeThatFits_02uiF07contextSo6CGSizeVSgAD08ProposedF4SizeV_0J4TypeQzAD0jG7ContextVyxGtFTW', symObjAddr: 0x70, symBinAddr: 0xED28, symSize: 0x30 } - - { offsetInCU: 0x1E6, offset: 0x5CD33, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP21_overrideSizeThatFits_2in02uiF0ySo6CGSizeVz_AD09_ProposedL0V0J4TypeQztFTW', symObjAddr: 0xA0, symBinAddr: 0xED58, symSize: 0x4 } - - { offsetInCU: 0x202, offset: 0x5CD4F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP21_overrideLayoutTraits_3foryAD01_lM0Vz_0J4TypeQztFTW', symObjAddr: 0xA4, symBinAddr: 0xED5C, symSize: 0x4 } - - { offsetInCU: 0x21E, offset: 0x5CD6B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP014_modifyBridgedF6InputsyyAD01_fM0VzFZTW', symObjAddr: 0xA8, symBinAddr: 0xED60, symSize: 0x14 } - - { offsetInCU: 0x23A, offset: 0x5CD87, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP14_layoutOptionsyAD09_Platformfg6LayoutL0V0J4TypeQzFZTW', symObjAddr: 0xBC, symBinAddr: 0xED74, symSize: 0x14 } - - { offsetInCU: 0x256, offset: 0x5CDA3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0xDC, symBinAddr: 0xED94, symSize: 0x50 } - - { offsetInCU: 0x272, offset: 0x5CDBF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fK7OutputsVAD11_GraphValueVyxG_AD01_fK6InputsVtFZTW', symObjAddr: 0x12C, symBinAddr: 0xEDE4, symSize: 0x50 } - - { offsetInCU: 0x28E, offset: 0x5CDDB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fkL6InputsV_tFZTW', symObjAddr: 0x17C, symBinAddr: 0xEE34, symSize: 0x18 } - - { offsetInCU: 0x2AA, offset: 0x5CDF7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x194, symBinAddr: 0xEE4C, symSize: 0x24 } - - { offsetInCU: 0x27, offset: 0x5CEF4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValue_WZ', symObjAddr: 0x0, symBinAddr: 0xEEB4, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x5CF18, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvpZ', symObjAddr: 0x460, symBinAddr: 0x267C8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5CF32, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvgZ', symObjAddr: 0x10, symBinAddr: 0xEEC4, symSize: 0x50 } - - { offsetInCU: 0x9D, offset: 0x5CF6A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueACSgSS_tcfC', symObjAddr: 0x60, symBinAddr: 0xEF14, symSize: 0x6C } - - { offsetInCU: 0xC8, offset: 0x5CF95, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvg', symObjAddr: 0x10C, symBinAddr: 0xEF80, symSize: 0x20 } - - { offsetInCU: 0xF3, offset: 0x5CFC0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x198, symBinAddr: 0xF00C, symSize: 0xC } - - { offsetInCU: 0x10F, offset: 0x5CFDC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1A4, symBinAddr: 0xF018, symSize: 0x24 } - - { offsetInCU: 0x12C, offset: 0x5CFF9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValue_WZ', symObjAddr: 0x0, symBinAddr: 0xEEB4, symSize: 0x10 } - - { offsetInCU: 0x157, offset: 0x5D024, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASQWb', symObjAddr: 0x138, symBinAddr: 0xEFAC, symSize: 0x4 } - - { offsetInCU: 0x16B, offset: 0x5D038, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOACSQAAWl', symObjAddr: 0x13C, symBinAddr: 0xEFB0, symSize: 0x44 } - - { offsetInCU: 0x17F, offset: 0x5D04C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwet', symObjAddr: 0x1D8, symBinAddr: 0xF03C, symSize: 0x90 } - - { offsetInCU: 0x193, offset: 0x5D060, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwst', symObjAddr: 0x268, symBinAddr: 0xF0CC, symSize: 0xBC } - - { offsetInCU: 0x1A7, offset: 0x5D074, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwug', symObjAddr: 0x324, symBinAddr: 0xF188, symSize: 0x8 } - - { offsetInCU: 0x1BB, offset: 0x5D088, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwup', symObjAddr: 0x32C, symBinAddr: 0xF190, symSize: 0x4 } - - { offsetInCU: 0x1CF, offset: 0x5D09C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwui', symObjAddr: 0x330, symBinAddr: 0xF194, symSize: 0x8 } - - { offsetInCU: 0x1E3, offset: 0x5D0B0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOMa', symObjAddr: 0x338, symBinAddr: 0xF19C, symSize: 0x10 } - - { offsetInCU: 0x20D, offset: 0x5D0DA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x12C, symBinAddr: 0xEFA0, symSize: 0xC } - - { offsetInCU: 0x229, offset: 0x5D0F6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASH9hashValueSivgTW', symObjAddr: 0x180, symBinAddr: 0xEFF4, symSize: 0x8 } - - { offsetInCU: 0x245, offset: 0x5D112, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x188, symBinAddr: 0xEFFC, symSize: 0x8 } - - { offsetInCU: 0x261, offset: 0x5D12E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x190, symBinAddr: 0xF004, symSize: 0x8 } - - { offsetInCU: 0x27, offset: 0x5D246, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xF1AC, symSize: 0x50 } - - { offsetInCU: 0x4B, offset: 0x5D26A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvpZ', symObjAddr: 0x910, symBinAddr: 0x267D8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5D284, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xF1AC, symSize: 0x50 } - - { offsetInCU: 0xC6, offset: 0x5D2E5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueACSgSS_tcfC', symObjAddr: 0x4B4, symBinAddr: 0xF660, symSize: 0x6C } - - { offsetInCU: 0xF1, offset: 0x5D310, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvg', symObjAddr: 0x560, symBinAddr: 0xF6CC, symSize: 0x24 } - - { offsetInCU: 0x10C, offset: 0x5D32B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x5F0, symBinAddr: 0xF75C, symSize: 0xC } - - { offsetInCU: 0x128, offset: 0x5D347, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x5FC, symBinAddr: 0xF768, symSize: 0x24 } - - { offsetInCU: 0x1C5, offset: 0x5D3E4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValue_WZ', symObjAddr: 0x4A8, symBinAddr: 0xF654, symSize: 0xC } - - { offsetInCU: 0x1DF, offset: 0x5D3FE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASQWb', symObjAddr: 0x590, symBinAddr: 0xF6FC, symSize: 0x4 } - - { offsetInCU: 0x1F3, offset: 0x5D412, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOACSQAAWl', symObjAddr: 0x594, symBinAddr: 0xF700, symSize: 0x44 } - - { offsetInCU: 0x207, offset: 0x5D426, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwet', symObjAddr: 0x630, symBinAddr: 0xF78C, symSize: 0x90 } - - { offsetInCU: 0x21B, offset: 0x5D43A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwst', symObjAddr: 0x6C0, symBinAddr: 0xF81C, symSize: 0xBC } - - { offsetInCU: 0x22F, offset: 0x5D44E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwug', symObjAddr: 0x77C, symBinAddr: 0xF8D8, symSize: 0x8 } - - { offsetInCU: 0x243, offset: 0x5D462, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwup', symObjAddr: 0x784, symBinAddr: 0xF8E0, symSize: 0x4 } - - { offsetInCU: 0x257, offset: 0x5D476, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwui', symObjAddr: 0x788, symBinAddr: 0xF8E4, symSize: 0x8 } - - { offsetInCU: 0x26B, offset: 0x5D48A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOMa', symObjAddr: 0x790, symBinAddr: 0xF8EC, symSize: 0x10 } - - { offsetInCU: 0x2D7, offset: 0x5D4F6, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x50, symBinAddr: 0xF1FC, symSize: 0x74 } - - { offsetInCU: 0x388, offset: 0x5D5A7, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0xC4, symBinAddr: 0xF270, symSize: 0x68 } - - { offsetInCU: 0x462, offset: 0x5D681, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x12C, symBinAddr: 0xF2D8, symSize: 0x68 } - - { offsetInCU: 0x545, offset: 0x5D764, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x194, symBinAddr: 0xF340, symSize: 0x68 } - - { offsetInCU: 0x5E3, offset: 0x5D802, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x1FC, symBinAddr: 0xF3A8, symSize: 0x4C } - - { offsetInCU: 0x60C, offset: 0x5D82B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x248, symBinAddr: 0xF3F4, symSize: 0x40 } - - { offsetInCU: 0x669, offset: 0x5D888, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x288, symBinAddr: 0xF434, symSize: 0x44 } - - { offsetInCU: 0x6C4, offset: 0x5D8E3, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0x2CC, symBinAddr: 0xF478, symSize: 0x40 } - - { offsetInCU: 0x721, offset: 0x5D940, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0x30C, symBinAddr: 0xF4B8, symSize: 0x64 } - - { offsetInCU: 0x79D, offset: 0x5D9BC, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x370, symBinAddr: 0xF51C, symSize: 0x64 } - - { offsetInCU: 0x822, offset: 0x5DA41, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x3D4, symBinAddr: 0xF580, symSize: 0x64 } - - { offsetInCU: 0x89E, offset: 0x5DABD, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x438, symBinAddr: 0xF5E4, symSize: 0x70 } - - { offsetInCU: 0x8F1, offset: 0x5DB10, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x584, symBinAddr: 0xF6F0, symSize: 0xC } - - { offsetInCU: 0x90D, offset: 0x5DB2C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASH9hashValueSivgTW', symObjAddr: 0x5D8, symBinAddr: 0xF744, symSize: 0x8 } - - { offsetInCU: 0x929, offset: 0x5DB48, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E0, symBinAddr: 0xF74C, symSize: 0x8 } - - { offsetInCU: 0x93D, offset: 0x5DB5C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E8, symBinAddr: 0xF754, symSize: 0x8 } - - { offsetInCU: 0x4F, offset: 0x5DC92, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url10Foundation3URLVvg', symObjAddr: 0x0, symBinAddr: 0xF8FC, symSize: 0x64 } - - { offsetInCU: 0xB6, offset: 0x5DCF9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC4$url7Combine9PublishedV9PublisherVy10Foundation3URLV_GvM', symObjAddr: 0x64, symBinAddr: 0xF960, symSize: 0xC8 } - - { offsetInCU: 0x158, offset: 0x5DD9B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC10$isLoading7Combine9PublishedV9PublisherVySb_GvM', symObjAddr: 0x144, symBinAddr: 0xFA40, symSize: 0xC8 } - - { offsetInCU: 0x1B2, offset: 0x5DDF5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC5errors5Error_pSgvg', symObjAddr: 0x210, symBinAddr: 0xFB0C, symSize: 0x70 } - - { offsetInCU: 0x219, offset: 0x5DE5C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC18$backButtonEnabled7Combine9PublishedV9PublisherVySb_GvM', symObjAddr: 0x294, symBinAddr: 0xFB90, symSize: 0xC8 } - - { offsetInCU: 0x2BB, offset: 0x5DEFE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC21$forwardButtonEnabled7Combine9PublishedV9PublisherVySb_GvM', symObjAddr: 0x3DC, symBinAddr: 0xFCD8, symSize: 0xC8 } - - { offsetInCU: 0x315, offset: 0x5DF58, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC12addressLabelSSvg', symObjAddr: 0x4A8, symBinAddr: 0xFDA4, symSize: 0x70 } - - { offsetInCU: 0x37C, offset: 0x5DFBF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC13$addressLabel7Combine9PublishedV9PublisherVySS_GvM', symObjAddr: 0x518, symBinAddr: 0xFE14, symSize: 0xC8 } - - { offsetInCU: 0x3D6, offset: 0x5E019, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url___02uiG015callbackHandlerAC10Foundation3URLV_So05WKWebF13ConfigurationCSbSSSgAA0eF7UIModelVAA0ef8CallbackK0Vtcfc', symObjAddr: 0x710, symBinAddr: 0x1000C, symSize: 0x660 } - - { offsetInCU: 0x601, offset: 0x5E244, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC13setupBindings33_9465A02ABBCEE1A843D14F7D6FC63749LLyySb_S2btF', symObjAddr: 0xD70, symBinAddr: 0x1066C, symSize: 0x500 } - - { offsetInCU: 0x67D, offset: 0x5E2C0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC13setupBindings33_9465A02ABBCEE1A843D14F7D6FC63749LLyySb_S2btF10Foundation3URLVSgAIcfU_', symObjAddr: 0x12F8, symBinAddr: 0x10BF4, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x5E309, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCACycfcTo', symObjAddr: 0x1300, symBinAddr: 0x10BFC, symSize: 0x2C } - - { offsetInCU: 0x72D, offset: 0x5E370, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCfD', symObjAddr: 0x132C, symBinAddr: 0x10C28, symSize: 0x34 } - - { offsetInCU: 0x923, offset: 0x5E566, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC3url10Foundation3URLVSgvpABTK', symObjAddr: 0x1270, symBinAddr: 0x10B6C, symSize: 0x88 } - - { offsetInCU: 0x951, offset: 0x5E594, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCfETo', symObjAddr: 0x1360, symBinAddr: 0x10C5C, symSize: 0x158 } - - { offsetInCU: 0x980, offset: 0x5E5C3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCMU', symObjAddr: 0x14B8, symBinAddr: 0x10DB4, symSize: 0x8 } - - { offsetInCU: 0x994, offset: 0x5E5D7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCMa', symObjAddr: 0x14C0, symBinAddr: 0x10DBC, symSize: 0x3C } - - { offsetInCU: 0x9A8, offset: 0x5E5EB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCMr', symObjAddr: 0x14FC, symBinAddr: 0x10DF8, symSize: 0x11C } - - { offsetInCU: 0x9BC, offset: 0x5E5FF, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVy10Foundation3URLVGMa', symObjAddr: 0x1618, symBinAddr: 0x10F14, symSize: 0x54 } - - { offsetInCU: 0x9D0, offset: 0x5E613, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVys5Error_pSgGMa', symObjAddr: 0x166C, symBinAddr: 0x10F68, symSize: 0x58 } - - { offsetInCU: 0x9F3, offset: 0x5E636, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_15decidePolicyFor15decisionHandlerySo05WKWebF0C_So18WKNavigationActionCySo0opJ0VctFTo', symObjAddr: 0x1788, symBinAddr: 0x11040, symSize: 0xA8 } - - { offsetInCU: 0xA34, offset: 0x5E677, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_9didFinishySo05WKWebF0C_So12WKNavigationCSgtFTo', symObjAddr: 0x1830, symBinAddr: 0x110E8, symSize: 0x70 } - - { offsetInCU: 0xAD2, offset: 0x5E715, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCyyctFTo', symObjAddr: 0x1980, symBinAddr: 0x11238, symSize: 0x138 } - - { offsetInCU: 0xBC7, offset: 0x5E80A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCySbctFTo', symObjAddr: 0x1AB8, symBinAddr: 0x11370, symSize: 0x1A0 } - - { offsetInCU: 0xCFD, offset: 0x5E940, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo17UIAlertControllerC_SbtcfU_', symObjAddr: 0x1C58, symBinAddr: 0x11510, symSize: 0x19C } - - { offsetInCU: 0xE58, offset: 0x5EA9B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU2_', symObjAddr: 0x1DF4, symBinAddr: 0x116AC, symSize: 0x50 } - - { offsetInCU: 0xEA2, offset: 0x5EAE5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFTo', symObjAddr: 0x1E98, symBinAddr: 0x11750, symSize: 0x110 } - - { offsetInCU: 0xED4, offset: 0x5EB17, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC7Combine16ObservableObjectAA0J19WillChangePublisherAdEP_AD0M0PWT', symObjAddr: 0x1FA8, symBinAddr: 0x11860, symSize: 0xC } - - { offsetInCU: 0xEE8, offset: 0x5EB2B, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TR', symObjAddr: 0x1FB4, symBinAddr: 0x1186C, symSize: 0x44 } - - { offsetInCU: 0xF00, offset: 0x5EB43, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TRTA', symObjAddr: 0x201C, symBinAddr: 0x118D4, symSize: 0x8 } - - { offsetInCU: 0xF14, offset: 0x5EB57, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url10Foundation3URLVvpACTK', symObjAddr: 0x2024, symBinAddr: 0x118DC, symSize: 0x68 } - - { offsetInCU: 0xF41, offset: 0x5EB84, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url10Foundation3URLVvpACTk', symObjAddr: 0x208C, symBinAddr: 0x11944, symSize: 0x104 } - - { offsetInCU: 0xF7B, offset: 0x5EBBE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC12addressLabelSSvpACTK', symObjAddr: 0x2190, symBinAddr: 0x11A48, symSize: 0x7C } - - { offsetInCU: 0xFA0, offset: 0x5EBE3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC12addressLabelSSvpACTk', symObjAddr: 0x220C, symBinAddr: 0x11AC4, symSize: 0x80 } - - { offsetInCU: 0xFD8, offset: 0x5EC1B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC5errors5Error_pSgvpACTK', symObjAddr: 0x228C, symBinAddr: 0x11B44, symSize: 0x7C } - - { offsetInCU: 0xFFD, offset: 0x5EC40, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC5errors5Error_pSgvpACTk', symObjAddr: 0x2308, symBinAddr: 0x11BC0, symSize: 0x78 } - - { offsetInCU: 0x1049, offset: 0x5EC8C, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x24B4, symBinAddr: 0x11D6C, symSize: 0x80 } - - { offsetInCU: 0x10E7, offset: 0x5ED2A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x2534, symBinAddr: 0x11DEC, symSize: 0x64 } - - { offsetInCU: 0x114A, offset: 0x5ED8D, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x2598, symBinAddr: 0x11E50, symSize: 0x174 } - - { offsetInCU: 0x11C7, offset: 0x5EE0A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x270C, symBinAddr: 0x11FC4, symSize: 0xE0 } - - { offsetInCU: 0x12CB, offset: 0x5EF0E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_15decidePolicyFor15decisionHandlerySo05WKWebF0C_So18WKNavigationActionCySo0opJ0VctF06$sSo24opJ16VIeyBy_ABIegy_TRALIeyBy_Tf1nncn_nTf4nnng_n', symObjAddr: 0x2A10, symBinAddr: 0x122C8, symSize: 0x880 } - - { offsetInCU: 0x1472, offset: 0x5F0B5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_9didFinishySo05WKWebF0C_So12WKNavigationCSgtFTf4ddn_n', symObjAddr: 0x3290, symBinAddr: 0x12B48, symSize: 0x98 } - - { offsetInCU: 0x1575, offset: 0x5F1B8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF033_9465A02ABBCEE1A843D14F7D6FC63749LL_19didFailedNavigation4withySo05WKWebF0C_SSs5Error_ptFTf4dnnn_n', symObjAddr: 0x3328, symBinAddr: 0x12BE0, symSize: 0x218 } - - { offsetInCU: 0x1767, offset: 0x5F3AA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC21createAlertController33_9465A02ABBCEE1A843D14F7D6FC63749LL12withBodyText15okButtonHandler06cancelvW0So07UIAlertJ0CSS_yAJcyAJcSgtFTf4nnnd_n', symObjAddr: 0x3540, symBinAddr: 0x12DF8, symSize: 0x428 } - - { offsetInCU: 0x188D, offset: 0x5F4D0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFTf4dnndnn_n', symObjAddr: 0x3968, symBinAddr: 0x13220, symSize: 0x1B4 } - - { offsetInCU: 0x192F, offset: 0x5F572, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo17UIAlertControllerC_SbtcfU_TA', symObjAddr: 0x3B40, symBinAddr: 0x133F8, symSize: 0x8 } - - { offsetInCU: 0x1943, offset: 0x5F586, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU2_TA', symObjAddr: 0x3B7C, symBinAddr: 0x13434, symSize: 0x8 } - - { offsetInCU: 0x1957, offset: 0x5F59A, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x3B84, symBinAddr: 0x1343C, symSize: 0x10 } - - { offsetInCU: 0x196B, offset: 0x5F5AE, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x3B94, symBinAddr: 0x1344C, symSize: 0x8 } - - { offsetInCU: 0x197F, offset: 0x5F5C2, size: 0x8, addend: 0x0, symName: '_$sSo17UIAlertControllerCIegg_SgWOy', symObjAddr: 0x3C40, symBinAddr: 0x134B8, symSize: 0x10 } - - { offsetInCU: 0x1993, offset: 0x5F5D6, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x3C50, symBinAddr: 0x134C8, symSize: 0x3C } - - { offsetInCU: 0x19B2, offset: 0x5F5F5, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x3C8C, symBinAddr: 0x13504, symSize: 0x14 } - - { offsetInCU: 0x1A0D, offset: 0x5F650, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCySbctFySo17UIAlertControllerC_SbtcfU_TA', symObjAddr: 0x3CA0, symBinAddr: 0x13518, symSize: 0x3C } - - { offsetInCU: 0x1A55, offset: 0x5F698, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0x3D0C, symBinAddr: 0x13584, symSize: 0x8 } - - { offsetInCU: 0x1A8F, offset: 0x5F6D2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCyyctFySo17UIAlertControllerCcfU_TA', symObjAddr: 0x3D14, symBinAddr: 0x1358C, symSize: 0x38 } - - { offsetInCU: 0x1ACD, offset: 0x5F710, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOc', symObjAddr: 0x3D54, symBinAddr: 0x135CC, symSize: 0x48 } - - { offsetInCU: 0x1AE1, offset: 0x5F724, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACSQAAWl', symObjAddr: 0x3DD8, symBinAddr: 0x13650, symSize: 0x48 } - - { offsetInCU: 0x1AF5, offset: 0x5F738, size: 0x8, addend: 0x0, symName: _keypath_get_selector_isLoading, symObjAddr: 0x3E20, symBinAddr: 0x13698, symSize: 0xC } - - { offsetInCU: 0x1B09, offset: 0x5F74C, size: 0x8, addend: 0x0, symName: _keypath_get_selector_URL, symObjAddr: 0x3E5C, symBinAddr: 0x136D4, symSize: 0xC } - - { offsetInCU: 0x1B1D, offset: 0x5F760, size: 0x8, addend: 0x0, symName: _keypath_get_selector_canGoBack, symObjAddr: 0x3ED4, symBinAddr: 0x1374C, symSize: 0xC } - - { offsetInCU: 0x1B31, offset: 0x5F774, size: 0x8, addend: 0x0, symName: _keypath_get_selector_canGoForward, symObjAddr: 0x3F10, symBinAddr: 0x13788, symSize: 0xC } - - { offsetInCU: 0x1F25, offset: 0x5FB68, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC7Combine16ObservableObjectAadEP16objectWillChange0jlM9PublisherQzvgTW', symObjAddr: 0x174C, symBinAddr: 0x11004, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x5FCA2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfC', symObjAddr: 0x0, symBinAddr: 0x138D4, symSize: 0x14 } - - { offsetInCU: 0x4B, offset: 0x5FCC6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfC', symObjAddr: 0x0, symBinAddr: 0x138D4, symSize: 0x14 } - - { offsetInCU: 0xBB, offset: 0x5FD36, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwCP', symObjAddr: 0x14, symBinAddr: 0x138E8, symSize: 0x30 } - - { offsetInCU: 0xCF, offset: 0x5FD4A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwxx', symObjAddr: 0x44, symBinAddr: 0x13918, symSize: 0x38 } - - { offsetInCU: 0xE3, offset: 0x5FD5E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwcp', symObjAddr: 0x7C, symBinAddr: 0x13950, symSize: 0x64 } - - { offsetInCU: 0xF7, offset: 0x5FD72, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwca', symObjAddr: 0xE0, symBinAddr: 0x139B4, symSize: 0x8C } - - { offsetInCU: 0x10B, offset: 0x5FD86, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x16C, symBinAddr: 0x13A40, symSize: 0x14 } - - { offsetInCU: 0x11F, offset: 0x5FD9A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwta', symObjAddr: 0x180, symBinAddr: 0x13A54, symSize: 0x64 } - - { offsetInCU: 0x133, offset: 0x5FDAE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwet', symObjAddr: 0x1E4, symBinAddr: 0x13AB8, symSize: 0x48 } - - { offsetInCU: 0x147, offset: 0x5FDC2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwst', symObjAddr: 0x22C, symBinAddr: 0x13B00, symSize: 0x50 } - - { offsetInCU: 0x15B, offset: 0x5FDD6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVMa', symObjAddr: 0x27C, symBinAddr: 0x13B50, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x5FF18, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwCP', symObjAddr: 0x0, symBinAddr: 0x13B60, symSize: 0xF4 } - - { offsetInCU: 0x57, offset: 0x5FF2C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwxx', symObjAddr: 0xF4, symBinAddr: 0x13C54, symSize: 0x74 } - - { offsetInCU: 0x6B, offset: 0x5FF40, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwcp', symObjAddr: 0x168, symBinAddr: 0x13CC8, symSize: 0xC8 } - - { offsetInCU: 0x7F, offset: 0x5FF54, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwca', symObjAddr: 0x230, symBinAddr: 0x13D90, symSize: 0xE8 } - - { offsetInCU: 0x93, offset: 0x5FF68, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwtk', symObjAddr: 0x318, symBinAddr: 0x13E78, symSize: 0xA8 } - - { offsetInCU: 0xA7, offset: 0x5FF7C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwta', symObjAddr: 0x3C0, symBinAddr: 0x13F20, symSize: 0xD8 } - - { offsetInCU: 0xBB, offset: 0x5FF90, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwet', symObjAddr: 0x498, symBinAddr: 0x13FF8, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x5FFA4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwst', symObjAddr: 0x520, symBinAddr: 0x14080, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x5FFB8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVMa', symObjAddr: 0x5A0, symBinAddr: 0x14100, symSize: 0x3C } - - { offsetInCU: 0xF7, offset: 0x5FFCC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVMr', symObjAddr: 0x5DC, symBinAddr: 0x1413C, symSize: 0x80 } - - { offsetInCU: 0x10B, offset: 0x5FFE0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x65C, symBinAddr: 0x141BC, symSize: 0x10 } - - { offsetInCU: 0x145, offset: 0x6001A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_', symObjAddr: 0x66C, symBinAddr: 0x141CC, symSize: 0x3C8 } - - { offsetInCU: 0x1F8, offset: 0x600CD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_A1_yXEfU_AYyXEfU_', symObjAddr: 0xA34, symBinAddr: 0x14594, symSize: 0x158 } - - { offsetInCU: 0x29C, offset: 0x60171, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_A1_yXEfU_AYyXEfU_AWyXEfU_', symObjAddr: 0xB8C, symBinAddr: 0x146EC, symSize: 0x154 } - - { offsetInCU: 0x2F5, offset: 0x601CA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0xD00, symBinAddr: 0x14860, symSize: 0x168 } - - { offsetInCU: 0x414, offset: 0x602E9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_A1_yXEfU_AYyXEfU_TA', symObjAddr: 0xEB8, symBinAddr: 0x149C8, symSize: 0x8 } - - { offsetInCU: 0x428, offset: 0x602FD, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA6HStackVyAA9TupleViewVyAA5ImageV_AA4TextVtGG17OSInAppBrowserLib28OSIABLayoutDirectionModifierVGACyxq_GAA0G0A2aSRzAA0gP0R_rlWl', symObjAddr: 0xEC0, symBinAddr: 0x149D0, symSize: 0x9C } - - { offsetInCU: 0x43C, offset: 0x60311, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA6VStackVyAA9TupleViewVyAA4TextV_AA6HStackVyAA0G0PAAE11buttonStyleyQrqd__AA015PrimitiveButtonK0Rd__lFQOyAA0M0VyACyAKyAGyAA5ImageV_AItGG17OSInAppBrowserLib28OSIABLayoutDirectionModifierVGG_AA05PlainmK0VQo_GAA6SpacerVtGGAA14_PaddingLayoutVGACyxq_GAal2aLRzAA0gU0R_rlWl', symObjAddr: 0x1138, symBinAddr: 0x14BF4, symSize: 0x84 } - - { offsetInCU: 0x571, offset: 0x60446, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0xCE0, symBinAddr: 0x14840, symSize: 0x4 } - - { offsetInCU: 0x58D, offset: 0x60462, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fJ7OutputsVAD11_GraphValueVyxG_AD01_fJ6InputsVtFZTW', symObjAddr: 0xCE4, symBinAddr: 0x14844, symSize: 0x4 } - - { offsetInCU: 0x5A9, offset: 0x6047E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fjK6InputsV_tFZTW', symObjAddr: 0xCE8, symBinAddr: 0x14848, symSize: 0x18 } - - { offsetInCU: 0x2B, offset: 0x605C9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwCP', symObjAddr: 0x0, symBinAddr: 0x14CB8, symSize: 0x48 } - - { offsetInCU: 0x43, offset: 0x605E1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwCP', symObjAddr: 0x0, symBinAddr: 0x14CB8, symSize: 0x48 } - - { offsetInCU: 0x57, offset: 0x605F5, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI11StateObjectV7StorageOy17OSInAppBrowserLib17OSIABWebViewModelC_GWOy', symObjAddr: 0x48, symBinAddr: 0x14D00, symSize: 0x10 } - - { offsetInCU: 0x6B, offset: 0x60609, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwxx', symObjAddr: 0x58, symBinAddr: 0x14D10, symSize: 0x10 } - - { offsetInCU: 0x7F, offset: 0x6061D, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI11StateObjectV7StorageOy17OSInAppBrowserLib17OSIABWebViewModelC_GWOe', symObjAddr: 0x68, symBinAddr: 0x14D20, symSize: 0x10 } - - { offsetInCU: 0x93, offset: 0x60631, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwcp', symObjAddr: 0x78, symBinAddr: 0x14D30, symSize: 0x48 } - - { offsetInCU: 0xA7, offset: 0x60645, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwca', symObjAddr: 0xC0, symBinAddr: 0x14D78, symSize: 0x54 } - - { offsetInCU: 0xBB, offset: 0x60659, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x114, symBinAddr: 0x14DCC, symSize: 0x14 } - - { offsetInCU: 0xCF, offset: 0x6066D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwta', symObjAddr: 0x128, symBinAddr: 0x14DE0, symSize: 0x44 } - - { offsetInCU: 0xE3, offset: 0x60681, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwet', symObjAddr: 0x16C, symBinAddr: 0x14E24, symSize: 0x48 } - - { offsetInCU: 0xF7, offset: 0x60695, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwst', symObjAddr: 0x1B4, symBinAddr: 0x14E6C, symSize: 0x44 } - - { offsetInCU: 0x10B, offset: 0x606A9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVMa', symObjAddr: 0x1F8, symBinAddr: 0x14EB0, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x606BD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x208, symBinAddr: 0x14EC0, symSize: 0x10 } - - { offsetInCU: 0x202, offset: 0x607A0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVyAcA0eF5ModelCcfcAEycfu_', symObjAddr: 0x448, symBinAddr: 0x15100, symSize: 0x4 } - - { offsetInCU: 0x21A, offset: 0x607B8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE15ignoresSafeArea_5edgesQrAE0mN7RegionsV_AE4EdgeO3SetVtFQOyAA0eF0V_Qo__AE08ProgressF0VyAE05EmptyF0VAXGSgtGyXEfU_', symObjAddr: 0x44C, symBinAddr: 0x15104, symSize: 0x294 } - - { offsetInCU: 0x3B0, offset: 0x6094E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x700, symBinAddr: 0x153B8, symSize: 0x68 } - - { offsetInCU: 0x4F9, offset: 0x60A97, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCAC7Combine16ObservableObjectAAWl', symObjAddr: 0x7A8, symBinAddr: 0x15420, symSize: 0x48 } - - { offsetInCU: 0x50D, offset: 0x60AAB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC9isLoadingSbvpACTK', symObjAddr: 0x7F0, symBinAddr: 0x15468, symSize: 0x7C } - - { offsetInCU: 0x532, offset: 0x60AD0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC9isLoadingSbvpACTk', symObjAddr: 0x870, symBinAddr: 0x154E8, symSize: 0x70 } - - { offsetInCU: 0x568, offset: 0x60B06, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI12ProgressViewVyAA05EmptyD0VAEGSgWOc', symObjAddr: 0x8E4, symBinAddr: 0x1555C, symSize: 0x48 } - - { offsetInCU: 0x57C, offset: 0x60B1A, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI12ProgressViewVyAA05EmptyD0VAEGSgWOh', symObjAddr: 0x92C, symBinAddr: 0x155A4, symSize: 0x40 } - - { offsetInCU: 0x590, offset: 0x60B2E, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI6ZStackVyAA9TupleViewVyAA15ModifiedContentVy17OSInAppBrowserLib08OSIABWebE0VAA30_SafeAreaRegionsIgnoringLayoutVG_AA08ProgressE0VyAA05EmptyE0VAQGSgtGGACyxGAA0E0AAWl', symObjAddr: 0x970, symBinAddr: 0x155E8, symSize: 0x4C } - - { offsetInCU: 0x5B5, offset: 0x60B53, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x218, symBinAddr: 0x14ED0, symSize: 0x94 } - - { offsetInCU: 0x608, offset: 0x60BA6, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x2AC, symBinAddr: 0x14F64, symSize: 0x84 } - - { offsetInCU: 0x697, offset: 0x60C35, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x330, symBinAddr: 0x14FE8, symSize: 0x94 } - - { offsetInCU: 0x726, offset: 0x60CC4, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0x3C4, symBinAddr: 0x1507C, symSize: 0x84 } - - { offsetInCU: 0x841, offset: 0x60DDF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x6E0, symBinAddr: 0x15398, symSize: 0x4 } - - { offsetInCU: 0x85D, offset: 0x60DFB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fK7OutputsVAD11_GraphValueVyxG_AD01_fK6InputsVtFZTW', symObjAddr: 0x6E4, symBinAddr: 0x1539C, symSize: 0x4 } - - { offsetInCU: 0x879, offset: 0x60E17, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fkL6InputsV_tFZTW', symObjAddr: 0x6E8, symBinAddr: 0x153A0, symSize: 0x18 } - - { offsetInCU: 0x91, offset: 0x60FE1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0VtcfC', symObjAddr: 0x0, symBinAddr: 0x15634, symSize: 0xDC } - - { offsetInCU: 0xE9, offset: 0x61039, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0Vtcfc', symObjAddr: 0xDC, symBinAddr: 0x15710, symSize: 0xD0 } - - { offsetInCU: 0x126, offset: 0x61076, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF', symObjAddr: 0x230, symBinAddr: 0x15864, symSize: 0x3B4 } - - { offsetInCU: 0x349, offset: 0x61299, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfC', symObjAddr: 0x5E4, symBinAddr: 0x15C18, symSize: 0x20 } - - { offsetInCU: 0x367, offset: 0x612B7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfc', symObjAddr: 0x604, symBinAddr: 0x15C38, symSize: 0x2C } - - { offsetInCU: 0x3CA, offset: 0x6131A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfcTo', symObjAddr: 0x630, symBinAddr: 0x15C64, symSize: 0x2C } - - { offsetInCU: 0x440, offset: 0x61390, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCAA11OSIABRouterA2aDP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctFTW', symObjAddr: 0x6E0, symBinAddr: 0x15D14, symSize: 0x50 } - - { offsetInCU: 0x472, offset: 0x613C2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF06$sSo16mN15CIegn_ABIegg_TRAIIegn_Tf1ncn_nTf4nng_n', symObjAddr: 0xC14, symBinAddr: 0x16238, symSize: 0x3D0 } - - { offsetInCU: 0x6A5, offset: 0x615F5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManager_pWOc', symObjAddr: 0x1AC, symBinAddr: 0x157E0, symSize: 0x44 } - - { offsetInCU: 0x6B9, offset: 0x61609, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x1F0, symBinAddr: 0x15824, symSize: 0x20 } - - { offsetInCU: 0x6CD, offset: 0x6161D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCMa', symObjAddr: 0x210, symBinAddr: 0x15844, symSize: 0x20 } - - { offsetInCU: 0x874, offset: 0x617C4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC5coderADSgSo7NSCoderC_tcfcTo', symObjAddr: 0x7C0, symBinAddr: 0x15DF4, symSize: 0x60 } - - { offsetInCU: 0x8ED, offset: 0x6183D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC7dismiss8animated10completionySb_yycSgtFTo', symObjAddr: 0x820, symBinAddr: 0x15E54, symSize: 0x13C } - - { offsetInCU: 0x956, offset: 0x618A6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC04rootF0AdA0eF7WrapperV_tcfC7SwiftUI09UIHostingG0CAeJyxGx_tcfCTV', symObjAddr: 0x9C4, symBinAddr: 0x15FF8, symSize: 0x2C } - - { offsetInCU: 0x9F6, offset: 0x61946, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC5coder04rootF0ADSgSo7NSCoderC_AA0eF7WrapperVtcfC7SwiftUI09UIHostingG0CAefNyxGSgAI_xtcfCTV', symObjAddr: 0x9F0, symBinAddr: 0x16024, symSize: 0x2C } - - { offsetInCU: 0xBC5, offset: 0x61B15, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCfETo', symObjAddr: 0x668, symBinAddr: 0x15C9C, symSize: 0x78 } - - { offsetInCU: 0xBF4, offset: 0x61B44, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC32presentationControllerDidDismissyySo014UIPresentationJ0CF', symObjAddr: 0x730, symBinAddr: 0x15D64, symSize: 0x30 } - - { offsetInCU: 0xC43, offset: 0x61B93, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC32presentationControllerDidDismissyySo014UIPresentationJ0CFTo', symObjAddr: 0x760, symBinAddr: 0x15D94, symSize: 0x60 } - - { offsetInCU: 0xC82, offset: 0x61BD2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCfE', symObjAddr: 0x95C, symBinAddr: 0x15F90, symSize: 0x14 } - - { offsetInCU: 0xCAF, offset: 0x61BFF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCfETo', symObjAddr: 0x9B0, symBinAddr: 0x15FE4, symSize: 0x14 } - - { offsetInCU: 0xCDE, offset: 0x61C2E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVyAcA0eF5ModelCcfcAEycfu_TA', symObjAddr: 0xA40, symBinAddr: 0x16074, symSize: 0x8 } - - { offsetInCU: 0xCF2, offset: 0x61C42, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCMa', symObjAddr: 0xA4C, symBinAddr: 0x16080, symSize: 0x3C } - - { offsetInCU: 0xD06, offset: 0x61C56, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0xA88, symBinAddr: 0x160BC, symSize: 0x24 } - - { offsetInCU: 0xD1A, offset: 0x61C6A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCMr', symObjAddr: 0xADC, symBinAddr: 0x16110, symSize: 0x48 } - - { offsetInCU: 0xD2E, offset: 0x61C7E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCMU', symObjAddr: 0xB24, symBinAddr: 0x16158, symSize: 0x8 } - - { offsetInCU: 0xD42, offset: 0x61C92, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC7dismiss8animated10completionySb_yycSgtFyycfU_TA', symObjAddr: 0xB60, symBinAddr: 0x16194, symSize: 0x50 } - - { offsetInCU: 0xD76, offset: 0x61CC6, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xBB0, symBinAddr: 0x161E4, symSize: 0x10 } - - { offsetInCU: 0xD8A, offset: 0x61CDA, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xBC0, symBinAddr: 0x161F4, symSize: 0x8 } - - { offsetInCU: 0xD9E, offset: 0x61CEE, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xBD8, symBinAddr: 0x161FC, symSize: 0x10 } - - { offsetInCU: 0xDB2, offset: 0x61D02, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0xC0C, symBinAddr: 0x16230, symSize: 0x8 } - - { offsetInCU: 0x2B, offset: 0x61F27, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfC', symObjAddr: 0x0, symBinAddr: 0x16650, symSize: 0x6C } - - { offsetInCU: 0xB5, offset: 0x61FB1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfC', symObjAddr: 0x0, symBinAddr: 0x16650, symSize: 0x6C } - - { offsetInCU: 0x146, offset: 0x62042, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfc', symObjAddr: 0x6C, symBinAddr: 0x166BC, symSize: 0x28 } - - { offsetInCU: 0x1E1, offset: 0x620DD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0OtcfC', symObjAddr: 0x94, symBinAddr: 0x166E4, symSize: 0x2C } - - { offsetInCU: 0x240, offset: 0x6213C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0Otcfc', symObjAddr: 0xC0, symBinAddr: 0x16710, symSize: 0x2C } - - { offsetInCU: 0x285, offset: 0x62181, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsCfd', symObjAddr: 0xEC, symBinAddr: 0x1673C, symSize: 0x8 } - - { offsetInCU: 0x2B4, offset: 0x621B0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsCfD', symObjAddr: 0xF4, symBinAddr: 0x16744, symSize: 0x10 } - - { offsetInCU: 0x33D, offset: 0x62239, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsCMa', symObjAddr: 0x104, symBinAddr: 0x16754, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x62367, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x0, symBinAddr: 0x16788, symSize: 0x2C } - - { offsetInCU: 0x5B, offset: 0x6237F, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TR', symObjAddr: 0x2C, symBinAddr: 0x167B4, symSize: 0x8 } - - { offsetInCU: 0xBD, offset: 0x623E1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfC', symObjAddr: 0x34, symBinAddr: 0x167BC, symSize: 0x8C } - - { offsetInCU: 0x118, offset: 0x6243C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfc', symObjAddr: 0xC0, symBinAddr: 0x16848, symSize: 0x5C } - - { offsetInCU: 0x153, offset: 0x62477, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF', symObjAddr: 0x13C, symBinAddr: 0x168C4, symSize: 0x270 } - - { offsetInCU: 0x2E4, offset: 0x62608, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfC', symObjAddr: 0x3F4, symBinAddr: 0x16B7C, symSize: 0x20 } - - { offsetInCU: 0x302, offset: 0x62626, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfc', symObjAddr: 0x414, symBinAddr: 0x16B9C, symSize: 0x2C } - - { offsetInCU: 0x365, offset: 0x62689, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfcTo', symObjAddr: 0x440, symBinAddr: 0x16BC8, symSize: 0x2C } - - { offsetInCU: 0x3DB, offset: 0x626FF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCAA11OSIABRouterA2aDP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctFTW', symObjAddr: 0x4C8, symBinAddr: 0x16C50, symSize: 0x50 } - - { offsetInCU: 0x40D, offset: 0x62731, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF06$sSo16nG15CIegn_ABIegg_TRAIIegn_Tf1ncn_nTf4nng_n', symObjAddr: 0x9C4, symBinAddr: 0x1712C, symSize: 0x288 } - - { offsetInCU: 0x5A2, offset: 0x628C6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCMa', symObjAddr: 0x11C, symBinAddr: 0x168A4, symSize: 0x20 } - - { offsetInCU: 0x65D, offset: 0x62981, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC7dismiss8animated10completionySb_yycSgtFTo', symObjAddr: 0x664, symBinAddr: 0x16DEC, symSize: 0x13C } - - { offsetInCU: 0x6D6, offset: 0x629FA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC3url13configurationAD10Foundation3URLV_So08SFSafarifG13ConfigurationCtcfcTo', symObjAddr: 0x7A0, symBinAddr: 0x16F28, symSize: 0x7C } - - { offsetInCU: 0x763, offset: 0x62A87, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC3url23entersReaderIfAvailableAD10Foundation3URLV_SbtcfcTo', symObjAddr: 0x81C, symBinAddr: 0x16FA4, symSize: 0x70 } - - { offsetInCU: 0x986, offset: 0x62CAA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLCMa', symObjAddr: 0x3D4, symBinAddr: 0x16B5C, symSize: 0x20 } - - { offsetInCU: 0x9B0, offset: 0x62CD4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCfETo', symObjAddr: 0x478, symBinAddr: 0x16C00, symSize: 0x50 } - - { offsetInCU: 0x9DF, offset: 0x62D03, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC06safarifG0_22didCompleteInitialLoadySo08SFSafarifG0C_SbtF', symObjAddr: 0x518, symBinAddr: 0x16CA0, symSize: 0x30 } - - { offsetInCU: 0xA44, offset: 0x62D68, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC06safarifG0_22didCompleteInitialLoadySo08SFSafarifG0C_SbtFTo', symObjAddr: 0x548, symBinAddr: 0x16CD0, symSize: 0x64 } - - { offsetInCU: 0xA8D, offset: 0x62DB1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC012presentationG10DidDismissyySo014UIPresentationG0CF', symObjAddr: 0x5AC, symBinAddr: 0x16D34, symSize: 0x2C } - - { offsetInCU: 0xADC, offset: 0x62E00, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC012presentationG10DidDismissyySo014UIPresentationG0CFTo', symObjAddr: 0x608, symBinAddr: 0x16D90, symSize: 0x5C } - - { offsetInCU: 0xB1B, offset: 0x62E3F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLCfETo', symObjAddr: 0x8CC, symBinAddr: 0x17054, symSize: 0x14 } - - { offsetInCU: 0xB4A, offset: 0x62E6E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC7dismiss8animated10completionySb_yycSgtFyycfU_TA', symObjAddr: 0x914, symBinAddr: 0x1709C, symSize: 0x48 } - - { offsetInCU: 0xB7E, offset: 0x62EA2, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x95C, symBinAddr: 0x170E4, symSize: 0x10 } - - { offsetInCU: 0xB92, offset: 0x62EB6, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x96C, symBinAddr: 0x170F4, symSize: 0x8 } - - { offsetInCU: 0xBB1, offset: 0x62ED5, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0x9B8, symBinAddr: 0x17120, symSize: 0xC } -... diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Headers/OSInAppBrowserLib-Swift.h b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Headers/OSInAppBrowserLib-Swift.h deleted file mode 100644 index ecae035..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Headers/OSInAppBrowserLib-Swift.h +++ /dev/null @@ -1,694 +0,0 @@ -#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 OSINAPPBROWSERLIB_SWIFT_H -#define OSINAPPBROWSERLIB_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() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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() -# include -# 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 -@import ObjectiveC; -@import SafariServices; -@import UIKit; -#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="OSInAppBrowserLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -/// Adapter that makes the required calls so that an SFSafariVieWController implementation can perform the System Browser routing. -SWIFT_CLASS("_TtC17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapter") -@interface OSIABSafariViewControllerRouterAdapter : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class UIPresentationController; - -@interface OSIABSafariViewControllerRouterAdapter (SWIFT_EXTENSION(OSInAppBrowserLib)) -- (void)presentationControllerDidDismiss:(UIPresentationController * _Nonnull)presentationController; -@end - -@class SFSafariViewController; - -@interface OSIABSafariViewControllerRouterAdapter (SWIFT_EXTENSION(OSInAppBrowserLib)) -- (void)safariViewController:(SFSafariViewController * _Nonnull)controller didCompleteInitialLoad:(BOOL)didLoadSuccessfully; -@end - - -/// Adapter that makes the required calls so that an WKWebView implementation can perform the Web View routing. -/// This is done via a customisable interface. -SWIFT_CLASS("_TtC17OSInAppBrowserLib25OSIABWebViewRouterAdapter") -@interface OSIABWebViewRouterAdapter : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -@interface OSIABWebViewRouterAdapter (SWIFT_EXTENSION(OSInAppBrowserLib)) -- (void)presentationControllerDidDismiss:(UIPresentationController * _Nonnull)presentationController; -@end - - -#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 OSINAPPBROWSERLIB_SWIFT_H -#define OSINAPPBROWSERLIB_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() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#if defined(__arm64e__) && __has_include() -# include -#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() -# include -# 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 -@import ObjectiveC; -@import SafariServices; -@import UIKit; -#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="OSInAppBrowserLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -/// Adapter that makes the required calls so that an SFSafariVieWController implementation can perform the System Browser routing. -SWIFT_CLASS("_TtC17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapter") -@interface OSIABSafariViewControllerRouterAdapter : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class UIPresentationController; - -@interface OSIABSafariViewControllerRouterAdapter (SWIFT_EXTENSION(OSInAppBrowserLib)) -- (void)presentationControllerDidDismiss:(UIPresentationController * _Nonnull)presentationController; -@end - -@class SFSafariViewController; - -@interface OSIABSafariViewControllerRouterAdapter (SWIFT_EXTENSION(OSInAppBrowserLib)) -- (void)safariViewController:(SFSafariViewController * _Nonnull)controller didCompleteInitialLoad:(BOOL)didLoadSuccessfully; -@end - - -/// Adapter that makes the required calls so that an WKWebView implementation can perform the Web View routing. -/// This is done via a customisable interface. -SWIFT_CLASS("_TtC17OSInAppBrowserLib25OSIABWebViewRouterAdapter") -@interface OSIABWebViewRouterAdapter : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -@interface OSIABWebViewRouterAdapter (SWIFT_EXTENSION(OSInAppBrowserLib)) -- (void)presentationControllerDidDismiss:(UIPresentationController * _Nonnull)presentationController; -@end - - -#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 diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Info.plist b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Info.plist deleted file mode 100644 index f9b1d6f..0000000 Binary files a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Info.plist and /dev/null differ diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.abi.json b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.abi.json deleted file mode 100644 index 9f43796..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,5694 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABEngine", - "printedName": "OSIABEngine", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABEngine", - "printedName": "OSInAppBrowserLib.OSIABEngine<Ï„_0_0, Ï„_0_1, Ï„_0_2>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_1" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_2" - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABEngineV" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib11OSIABEngineVACyxq_q0_Gycfc", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineVACyxq_q0_Gycfc", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "openExternalBrowser", - "printedName": "openExternalBrowser(_:routerDelegate:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_0" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_0.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_0.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV012openExternalC0_14routerDelegate_y10Foundation3URLV_xySbctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV012openExternalC0_14routerDelegate_y10Foundation3URLV_xySbctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openSystemBrowser", - "printedName": "openSystemBrowser(_:routerDelegate:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_1" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_1.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_1.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV010openSystemC0_14routerDelegate_y10Foundation3URLV_q_ySo16UIViewControllerCctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV010openSystemC0_14routerDelegate_y10Foundation3URLV_q_ySo16UIViewControllerCctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openWebView", - "printedName": "openWebView(_:routerDelegate:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_2" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_2.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_2.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV11openWebView_14routerDelegate_y10Foundation3URLV_q0_ySo16UIViewControllerCctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV11openWebView_14routerDelegate_y10Foundation3URLV_q0_ySo16UIViewControllerCctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABWebViewOptions", - "printedName": "OSIABWebViewOptions", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(showURL:showToolbar:clearCache:clearSessionCache:mediaPlaybackRequiresUserAction:closeButtonText:toolbarPosition:showNavigationButtons:leftToRight:allowOverScroll:enableViewportScale:allowInLineMediaPlayback:surpressIncrementalRendering:viewStyle:animationEffect:customUserAgent:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewOptions", - "printedName": "OSInAppBrowserLib.OSIABWebViewOptions", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfc", - "mangledName": "$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(viewStyle:animationEffect:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewOptions", - "printedName": "OSInAppBrowserLib.OSIABWebViewOptions", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0Otcfc", - "mangledName": "$s17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0Otcfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC", - "mangledName": "$s17OSInAppBrowserLib19OSIABWebViewOptionsC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:17OSInAppBrowserLib12OSIABOptionsC", - "superclassNames": [ - "OSInAppBrowserLib.OSIABOptions" - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABOptions", - "printedName": "OSIABOptions", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(viewStyle:animationEffect:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABOptions", - "printedName": "OSInAppBrowserLib.OSIABOptions", - "usr": "s:17OSInAppBrowserLib12OSIABOptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc", - "mangledName": "$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib12OSIABOptionsC", - "mangledName": "$s17OSInAppBrowserLib12OSIABOptionsC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABToolbarPosition", - "printedName": "OSIABToolbarPosition", - "children": [ - { - "kind": "Var", - "name": "top", - "printedName": "top", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABToolbarPosition.Type) -> OSInAppBrowserLib.OSIABToolbarPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO3topyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO3topyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "bottom", - "printedName": "bottom", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABToolbarPosition.Type) -> OSInAppBrowserLib.OSIABToolbarPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO6bottomyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO6bottomyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABCacheManager", - "printedName": "OSIABCacheManager", - "children": [ - { - "kind": "Function", - "name": "clearCache", - "printedName": "clearCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP10clearCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP10clearCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearSessionCache", - "printedName": "clearSessionCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP17clearSessionCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP17clearSessionCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearCache", - "printedName": "clearCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerPAAE10clearCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerPAAE10clearCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearSessionCache", - "printedName": "clearSessionCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerPAAE17clearSessionCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerPAAE17clearSessionCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OSIABBrowserCacheManager", - "printedName": "OSIABBrowserCacheManager", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(dataStore:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABBrowserCacheManager", - "printedName": "OSInAppBrowserLib.OSIABBrowserCacheManager", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV" - }, - { - "kind": "TypeNominal", - "name": "WKWebsiteDataStore", - "printedName": "WebKit.WKWebsiteDataStore", - "usr": "c:objc(cs)WKWebsiteDataStore" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV9dataStoreACSo013WKWebsiteDataI0C_tcfc", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV9dataStoreACSo013WKWebsiteDataI0C_tcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "clearCache", - "printedName": "clearCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF0yyyycSgF", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF0yyyycSgF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearSessionCache", - "printedName": "clearSessionCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV012clearSessionF0yyyycSgF", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV012clearSessionF0yyyycSgF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABCacheManager", - "printedName": "OSIABCacheManager", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABViewStyle", - "printedName": "OSIABViewStyle", - "children": [ - { - "kind": "Var", - "name": "formSheet", - "printedName": "formSheet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABViewStyle.Type) -> OSInAppBrowserLib.OSIABViewStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABViewStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO9formSheetyA2CmF", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO9formSheetyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "fullScreen", - "printedName": "fullScreen", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABViewStyle.Type) -> OSInAppBrowserLib.OSIABViewStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABViewStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO10fullScreenyA2CmF", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO10fullScreenyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "pageSheet", - "printedName": "pageSheet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABViewStyle.Type) -> OSInAppBrowserLib.OSIABViewStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABViewStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO9pageSheetyA2CmF", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO9pageSheetyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABViewStyle?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABApplicationDelegate", - "printedName": "OSIABApplicationDelegate", - "children": [ - { - "kind": "Function", - "name": "canOpenURL", - "printedName": "canOpenURL(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP10canOpenURLySb10Foundation0I0VF", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP10canOpenURLySb10Foundation0I0VF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABApplicationDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "open", - "printedName": "open(_:options:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[UIKit.UIApplication.OpenExternalURLOptionsKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "OpenExternalURLOptionsKey", - "printedName": "UIKit.UIApplication.OpenExternalURLOptionsKey", - "usr": "c:@T@UIApplicationOpenExternalURLOptionsKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP4open_7options17completionHandlery10Foundation3URLV_SDySo38UIApplicationOpenExternalURLOptionsKeyaypGySbcSgtF", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP4open_7options17completionHandlery10Foundation3URLV_SDySo38UIApplicationOpenExternalURLOptionsKeyaypGySbcSgtF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABApplicationDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OSIABApplicationRouterAdapter", - "printedName": "OSIABApplicationRouterAdapter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABApplicationRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABApplicationRouterAdapter", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterC" - }, - { - "kind": "TypeNominal", - "name": "OSIABApplicationDelegate", - "printedName": "OSInAppBrowserLib.OSIABApplicationDelegate", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfc", - "mangledName": "$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterC10handleOpenyy10Foundation3URLV_ySbctF", - "mangledName": "$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterC10handleOpenyy10Foundation3URLV_ySbctF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterC", - "mangledName": "$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "TypeWitness", - "name": "ReturnType", - "printedName": "ReturnType", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP" - } - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SafariServices", - "printedName": "SafariServices", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABDismissStyle", - "printedName": "OSIABDismissStyle", - "children": [ - { - "kind": "Var", - "name": "cancel", - "printedName": "cancel", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABDismissStyle.Type) -> OSInAppBrowserLib.OSIABDismissStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO6cancelyA2CmF", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO6cancelyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "close", - "printedName": "close", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABDismissStyle.Type) -> OSInAppBrowserLib.OSIABDismissStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO5closeyA2CmF", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO5closeyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "done", - "printedName": "done", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABDismissStyle.Type) -> OSInAppBrowserLib.OSIABDismissStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO4doneyA2CmF", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO4doneyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABAnimationEffect", - "printedName": "OSIABAnimationEffect", - "children": [ - { - "kind": "Var", - "name": "coverVertical", - "printedName": "coverVertical", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABAnimationEffect.Type) -> OSInAppBrowserLib.OSIABAnimationEffect", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO13coverVerticalyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO13coverVerticalyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "crossDissolve", - "printedName": "crossDissolve", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABAnimationEffect.Type) -> OSInAppBrowserLib.OSIABAnimationEffect", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO13crossDissolveyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO13crossDissolveyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "flipHorizontal", - "printedName": "flipHorizontal", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABAnimationEffect.Type) -> OSInAppBrowserLib.OSIABAnimationEffect", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO14flipHorizontalyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO14flipHorizontalyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABWebViewCallbackHandler", - "printedName": "OSIABWebViewCallbackHandler", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(onDelegateURL:onDelegateAlertController:onBrowserPageLoad:onBrowserClosed:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewCallbackHandler", - "printedName": "OSInAppBrowserLib.OSIABWebViewCallbackHandler", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIAlertController) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIAlertController", - "printedName": "UIKit.UIAlertController", - "usr": "c:objc(cs)UIAlertController" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfc", - "mangledName": "$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV", - "mangledName": "$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABWebViewRouterAdapter", - "printedName": "OSIABWebViewRouterAdapter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:cacheManager:callbackHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABWebViewRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter" - }, - { - "kind": "TypeNominal", - "name": "OSIABWebViewOptions", - "printedName": "OSInAppBrowserLib.OSIABWebViewOptions", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABCacheManager", - "printedName": "OSInAppBrowserLib.OSIABCacheManager", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP" - }, - { - "kind": "TypeNominal", - "name": "OSIABWebViewCallbackHandler", - "printedName": "OSInAppBrowserLib.OSIABWebViewCallbackHandler", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0Vtcfc", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0Vtcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIViewController) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABWebViewRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter" - } - ], - "declKind": "Constructor", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter(im)init", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "presentationControllerDidDismiss", - "printedName": "presentationControllerDidDismiss(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIPresentationController", - "printedName": "UIKit.UIPresentationController", - "usr": "c:objc(cs)UIPresentationController" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter(im)presentationControllerDidDismiss:", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC32presentationControllerDidDismissyySo014UIPresentationJ0CF", - "moduleName": "OSInAppBrowserLib", - "objc_name": "presentationControllerDidDismiss:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "TypeWitness", - "name": "ReturnType", - "printedName": "ReturnType", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "SafariServices", - "printedName": "SafariServices", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSIABSystemBrowserOptions", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(dismissStyle:viewStyle:animationEffect:enableBarsCollapsing:enableReadersMode:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSInAppBrowserLib.OSIABSystemBrowserOptions", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfc", - "mangledName": "$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(viewStyle:animationEffect:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSInAppBrowserLib.OSIABSystemBrowserOptions", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0Otcfc", - "mangledName": "$s17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0Otcfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC", - "mangledName": "$s17OSInAppBrowserLib011OSIABSystemC7OptionsC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:17OSInAppBrowserLib12OSIABOptionsC", - "superclassNames": [ - "OSInAppBrowserLib.OSIABOptions" - ] - }, - { - "kind": "Import", - "name": "SafariServices", - "printedName": "SafariServices", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABSafariViewControllerRouterAdapter", - "printedName": "OSIABSafariViewControllerRouterAdapter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:onBrowserPageLoad:onBrowserClosed:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSafariViewControllerRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter" - }, - { - "kind": "TypeNominal", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSInAppBrowserLib.OSIABSystemBrowserOptions", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfc", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIViewController) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSafariViewControllerRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter" - } - ], - "declKind": "Constructor", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter(im)init", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "safariViewController", - "printedName": "safariViewController(_:didCompleteInitialLoad:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SFSafariViewController", - "printedName": "SafariServices.SFSafariViewController", - "usr": "c:objc(cs)SFSafariViewController" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter(im)safariViewController:didCompleteInitialLoad:", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC06safarifG0_22didCompleteInitialLoadySo08SFSafarifG0C_SbtF", - "moduleName": "OSInAppBrowserLib", - "objc_name": "safariViewController:didCompleteInitialLoad:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentationControllerDidDismiss", - "printedName": "presentationControllerDidDismiss(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIPresentationController", - "printedName": "UIKit.UIPresentationController", - "usr": "c:objc(cs)UIPresentationController" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter(im)presentationControllerDidDismiss:", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC012presentationG10DidDismissyySo014UIPresentationG0CF", - "moduleName": "OSInAppBrowserLib", - "objc_name": "presentationControllerDidDismiss:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "TypeWitness", - "name": "ReturnType", - "printedName": "ReturnType", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "AssociatedType", - "name": "ReturnType", - "printedName": "ReturnType", - "declKind": "AssociatedType", - "usr": "s:17OSInAppBrowserLib11OSIABRouterP10ReturnTypeQa", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP10ReturnTypeQa", - "moduleName": "OSInAppBrowserLib", - "protocolReq": true - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_0.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_0.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABRouterP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "UIApplication", - "printedName": "UIApplication", - "declKind": "Class", - "usr": "c:objc(cs)UIApplication", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIApplication", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIResponder", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "OSIABApplicationDelegate", - "printedName": "OSIABApplicationDelegate", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 3946, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 3980, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4013, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4053, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4107, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "StringLiteral", - "offset": 4148, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4258, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4292, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4331, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4373, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4421, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4473, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "StringLiteral", - "offset": 4936, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "StringLiteral", - "offset": 159, - "length": 19, - "value": "\"OSInAppBrowserLib.OSIABWebViewOptions\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "Array", - "offset": 5750, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "IntegerLiteral", - "offset": 4192, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 4509, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4542, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4576, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4683, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4717, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4748, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5199, - "length": 20, - "value": "\"https:\/\/outsystems\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5222, - "length": 24, - "value": "\"https:\/\/outsystems.com\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "IntegerLiteral", - "offset": 5616, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5669, - "length": 41, - "value": "\"Close Button count: \"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5709, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5766, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "StringLiteral", - "offset": 247, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "IntegerLiteral", - "offset": 313, - "length": 3, - "value": "155" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "IntegerLiteral", - "offset": 346, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "StringLiteral", - "offset": 459, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5827, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "159" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5924, - "length": 20, - "value": "\"Error - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 5978, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "164" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 20, - "value": "\"Error - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "BooleanLiteral", - "offset": 522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 26, - "value": "\"Custom Close Button Text\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6110, - "length": 6, - "value": "\"Done\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "170" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 26, - "value": "\"Custom Close Button Text\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 553, - "length": 6, - "value": "\"Done\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6163, - "length": 12, - "value": "\"No Toolbar\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6222, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "178" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 12, - "value": "\"No Toolbar\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "BooleanLiteral", - "offset": 535, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6271, - "length": 34, - "value": "\"No URL and No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6348, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6387, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "186" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 34, - "value": "\"No URL and No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 554, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 600, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6411, - "length": 49, - "value": "\"No URL, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6503, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6542, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6570, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "193" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 49, - "value": "\"No URL, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "BooleanLiteral", - "offset": 569, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "BooleanLiteral", - "offset": 615, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "BooleanLiteral", - "offset": 651, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6593, - "length": 8, - "value": "\"No URL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6644, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "201" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 8, - "value": "\"No URL\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "BooleanLiteral", - "offset": 528, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6668, - "length": 26, - "value": "\"No URL and Left-To-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6737, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6766, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "207" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 26, - "value": "\"No URL and Left-To-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "BooleanLiteral", - "offset": 546, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "BooleanLiteral", - "offset": 582, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6789, - "length": 50, - "value": "\"No URL, Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6882, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6955, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "214" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 50, - "value": "\"No URL, Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "BooleanLiteral", - "offset": 570, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "BooleanLiteral", - "offset": 658, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6979, - "length": 65, - "value": "\"No URL, Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7087, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7160, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7189, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "222" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 65, - "value": "\"No URL, Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "BooleanLiteral", - "offset": 585, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "BooleanLiteral", - "offset": 673, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "BooleanLiteral", - "offset": 709, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7212, - "length": 27, - "value": "\"No URL and Bottom Toolbar\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7282, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "231" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 27, - "value": "\"No URL and Bottom Toolbar\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "BooleanLiteral", - "offset": 547, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7340, - "length": 42, - "value": "\"No URL, Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7425, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7487, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "238" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 42, - "value": "\"No URL, Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "BooleanLiteral", - "offset": 562, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "BooleanLiteral", - "offset": 640, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7510, - "length": 23, - "value": "\"No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7590, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "246" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 23, - "value": "\"No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "BooleanLiteral", - "offset": 557, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7614, - "length": 41, - "value": "\"No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7740, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "252" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 41, - "value": "\"No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "BooleanLiteral", - "offset": 575, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7763, - "length": 15, - "value": "\"Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7825, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "259" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 15, - "value": "\"Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "BooleanLiteral", - "offset": 539, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7848, - "length": 42, - "value": "\"Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7982, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "265" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 42, - "value": "\"Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "BooleanLiteral", - "offset": 618, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 8006, - "length": 57, - "value": "\"Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 8154, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 8182, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "272" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 57, - "value": "\"Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "BooleanLiteral", - "offset": 633, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "BooleanLiteral", - "offset": 669, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 8205, - "length": 16, - "value": "\"Bottom Toolbar\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "280" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 16, - "value": "\"Bottom Toolbar\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 8298, - "length": 34, - "value": "\"Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 8413, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "286" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 34, - "value": "\"Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "BooleanLiteral", - "offset": 600, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 3825, - "length": 18, - "value": "\"chevron.backward\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 4066, - "length": 17, - "value": "\"chevron.forward\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "IntegerLiteral", - "offset": 4414, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 4455, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 4698, - "length": 20, - "value": "\"No Button Pressed.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 4885, - "length": 13, - "value": "\"URL Address\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 4948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 4988, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 5032, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 5439, - "length": 22, - "value": "\"Back Button Pressed.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 5615, - "length": 25, - "value": "\"Forward Button Pressed.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "FloatLiteral", - "offset": 6000, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6125, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "154" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6193, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "158" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6297, - "length": 34, - "value": "\"Show Navigation Buttons Disabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6386, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "163" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 34, - "value": "\"Show Navigation Buttons Disabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "BooleanLiteral", - "offset": 564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6405, - "length": 21, - "value": "\"Back Button Enabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6477, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "167" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 21, - "value": "\"Back Button Enabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "BooleanLiteral", - "offset": 547, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6495, - "length": 24, - "value": "\"Forward Button Enabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6573, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "171" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 24, - "value": "\"Forward Button Enabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "BooleanLiteral", - "offset": 553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6591, - "length": 22, - "value": "\"Both Buttons Enabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6692, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 322, - "length": 3, - "value": "175" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 355, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 468, - "length": 22, - "value": "\"Both Buttons Enabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 549, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 577, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 140, - "length": 5, - "value": "\"TOP\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 164, - "length": 8, - "value": "\"BOTTOM\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 140, - "length": 5, - "value": "\"TOP\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 164, - "length": 8, - "value": "\"BOTTOM\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/OSIABCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 2468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/OSIABCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 2624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1482, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1623, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "StringLiteral", - "offset": 1664, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 138, - "length": 12, - "value": "\"FORM_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 173, - "length": 13, - "value": "\"FULL_SCREEN\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 208, - "length": 12, - "value": "\"PAGE_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 138, - "length": 12, - "value": "\"FORM_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 173, - "length": 13, - "value": "\"FULL_SCREEN\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 208, - "length": 12, - "value": "\"PAGE_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABApplicationRouterAdapter.swift", - "kind": "Dictionary", - "offset": 611, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABApplicationRouterAdapter.swift", - "kind": "BooleanLiteral", - "offset": 1626, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 171, - "length": 8, - "value": "\"CANCEL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"CLOSE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 6, - "value": "\"DONE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 171, - "length": 8, - "value": "\"CANCEL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"CLOSE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 6, - "value": "\"DONE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "Array", - "offset": 1362, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "BooleanLiteral", - "offset": 1411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "BooleanLiteral", - "offset": 1462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "BooleanLiteral", - "offset": 1518, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 154, - "length": 16, - "value": "\"COVER_VERTICAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 196, - "length": 16, - "value": "\"CROSS_DISSOLVE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 17, - "value": "\"FLIP_HORIZONTAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 154, - "length": 16, - "value": "\"COVER_VERTICAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 196, - "length": 16, - "value": "\"CROSS_DISSOLVE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 17, - "value": "\"FLIP_HORIZONTAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 942, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1383, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1516, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2393, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5132, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 81, - "length": 17, - "value": "\"OSInAppBrowserLib.OSIABWebViewModel\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 12, - "value": "\"itms-appss\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5740, - "length": 11, - "value": "\"itms-apps\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5753, - "length": 5, - "value": "\"tel\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5760, - "length": 5, - "value": "\"sms\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5767, - "length": 8, - "value": "\"mailto\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5777, - "length": 5, - "value": "\"geo\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6465, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 19, - "value": "\"didFailNavigation\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 6879, - "length": 30, - "value": "\"didFailProvisionalNavigation\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 7059, - "length": 58, - "value": "\"webView: \"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 7084, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 7116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 8065, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 8215, - "length": 4, - "value": "\"OK\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 8422, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9405, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9557, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9613, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10114, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10321, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "IntegerLiteral", - "offset": 1043, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1066, - "length": 33, - "value": "\"Couldn't load the page content.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1281, - "length": 17, - "value": "\"arrow.clockwise\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1329, - "length": 13, - "value": "\"Reload page\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "IntegerLiteral", - "offset": 1576, - "length": 3, - "value": "120" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1608, - "length": 23, - "value": "\"Default - Error Light\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1679, - "length": 9, - "value": "\"Preview\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1732, - "length": 16, - "value": "\"Clicked reload\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 40, - "value": "\"OSInAppBrowserLib\/OSIABErrorView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 317, - "length": 2, - "value": "49" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 462, - "length": 23, - "value": "\"Default - Error Light\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 549, - "length": 9, - "value": "\"Preview\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 629, - "length": 16, - "value": "\"Clicked reload\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "Array", - "offset": 648, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 1044, - "length": 24, - "value": "\"https:\/\/outsystems.com\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 1936, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "58" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2007, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "62" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2114, - "length": 24, - "value": "\"Bottom Toolbar Defined\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "67" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 24, - "value": "\"Bottom Toolbar Defined\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2211, - "length": 25, - "value": "\"Error View - Light mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2275, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "71" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 25, - "value": "\"Error View - Light mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 538, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2311, - "length": 24, - "value": "\"Error View - Dark mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2374, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "75" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 24, - "value": "\"Error View - Dark mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 537, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "BooleanLiteral", - "offset": 2005, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 190, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABWebViewRouterAdapter\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "BooleanLiteral", - "offset": 3627, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 3764, - "length": 22, - "value": "\"OSInAppBrowserLib.OSIABWebViewController\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 3764, - "length": 22, - "value": "\"OSInAppBrowserLib.OSIABWebViewController\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABSystemBrowserOptions.swift", - "kind": "BooleanLiteral", - "offset": 1398, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABSystemBrowserOptions.swift", - "kind": "BooleanLiteral", - "offset": 1438, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABSystemBrowserOptions.swift", - "kind": "StringLiteral", - "offset": 186, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABSystemBrowserOptions\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABSafariViewControllerRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 169, - "length": 38, - "value": "\"OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABSafariViewControllerRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 2943, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABSafariViewController\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABSafariViewControllerRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 2943, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABSafariViewController\"" - } - ] -} \ No newline at end of file diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index e48398e..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,174 +0,0 @@ -// 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-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSInAppBrowserLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Foundation -import SafariServices -import Swift -import SwiftUI -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public struct OSIABEngine where ExternalBrowser : OSInAppBrowserLib.OSIABRouter, SystemBrowser : OSInAppBrowserLib.OSIABRouter, WebView : OSInAppBrowserLib.OSIABRouter, ExternalBrowser.ReturnType == Swift.Bool, SystemBrowser.ReturnType == UIKit.UIViewController, WebView.ReturnType == UIKit.UIViewController { - public init() - public func openExternalBrowser(_ url: Foundation.URL, routerDelegate: ExternalBrowser, _ completionHandler: @escaping (ExternalBrowser.ReturnType) -> Swift.Void) - public func openSystemBrowser(_ url: Foundation.URL, routerDelegate: SystemBrowser, _ completionHandler: @escaping (SystemBrowser.ReturnType) -> Swift.Void) - public func openWebView(_ url: Foundation.URL, routerDelegate: WebView, _ completionHandler: @escaping (WebView.ReturnType) -> Swift.Void) -} -public class OSIABWebViewOptions : OSInAppBrowserLib.OSIABOptions { - public init(showURL: Swift.Bool = true, showToolbar: Swift.Bool = true, clearCache: Swift.Bool = true, clearSessionCache: Swift.Bool = true, mediaPlaybackRequiresUserAction: Swift.Bool = false, closeButtonText: Swift.String = "Close", toolbarPosition: OSInAppBrowserLib.OSIABToolbarPosition = .defaultValue, showNavigationButtons: Swift.Bool = true, leftToRight: Swift.Bool = false, allowOverScroll: Swift.Bool = true, enableViewportScale: Swift.Bool = false, allowInLineMediaPlayback: Swift.Bool = false, surpressIncrementalRendering: Swift.Bool = false, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, customUserAgent: Swift.String? = nil) - @objc deinit -} - - - - - - - - - - - - - - - - - - - - -public class OSIABOptions { - public init(viewStyle: OSInAppBrowserLib.OSIABViewStyle, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect) - @objc deinit -} - - - - - - -public enum OSIABToolbarPosition : Swift.String { - case top - case bottom - public static let defaultValue: OSInAppBrowserLib.OSIABToolbarPosition - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABCacheManager { - typealias CacheCompletion = () -> Swift.Void - func clearCache(_ completionHandler: Self.CacheCompletion?) - func clearSessionCache(_ completionHandler: Self.CacheCompletion?) -} -extension OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: Self.CacheCompletion? = nil) - public func clearSessionCache(_ completionHandler: Self.CacheCompletion? = nil) -} -public struct OSIABBrowserCacheManager { - public init(dataStore: WebKit.WKWebsiteDataStore) -} -extension OSInAppBrowserLib.OSIABBrowserCacheManager : OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) - public func clearSessionCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) -} -public enum OSIABViewStyle : Swift.String { - case formSheet - case fullScreen - case pageSheet - public static let defaultValue: OSInAppBrowserLib.OSIABViewStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABApplicationDelegate : AnyObject { - func canOpenURL(_ url: Foundation.URL) -> Swift.Bool - func open(_ url: Foundation.URL, options: [UIKit.UIApplication.OpenExternalURLOptionsKey : Any], completionHandler completion: ((Swift.Bool) -> Swift.Void)?) -} -extension UIKit.UIApplication : OSInAppBrowserLib.OSIABApplicationDelegate { -} -public class OSIABApplicationRouterAdapter : OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = Swift.Bool - public init(_ application: any OSInAppBrowserLib.OSIABApplicationDelegate) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABApplicationRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -public enum OSIABDismissStyle : Swift.String { - case cancel - case close - case done - public static let defaultValue: OSInAppBrowserLib.OSIABDismissStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum OSIABAnimationEffect : Swift.String { - case coverVertical - case crossDissolve - case flipHorizontal - public static let defaultValue: OSInAppBrowserLib.OSIABAnimationEffect - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public struct OSIABWebViewCallbackHandler { - public init(onDelegateURL: @escaping (Foundation.URL) -> Swift.Void, onDelegateAlertController: @escaping (UIKit.UIAlertController) -> Swift.Void, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping (Swift.Bool) -> Swift.Void) -} - - - - - - -@objc public class OSIABWebViewRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABWebViewOptions, cacheManager: any OSInAppBrowserLib.OSIABCacheManager, callbackHandler: OSInAppBrowserLib.OSIABWebViewCallbackHandler) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABWebViewRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABWebViewRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public class OSIABSystemBrowserOptions : OSInAppBrowserLib.OSIABOptions { - public init(dismissStyle: OSInAppBrowserLib.OSIABDismissStyle = .defaultValue, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, enableBarsCollapsing: Swift.Bool = true, enableReadersMode: Swift.Bool = false) - @objc deinit -} -@objc public class OSIABSafariViewControllerRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABSystemBrowserOptions, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping () -> Swift.Void) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : SafariServices.SFSafariViewControllerDelegate { - @objc dynamic public func safariViewController(_ controller: SafariServices.SFSafariViewController, didCompleteInitialLoad didLoadSuccessfully: Swift.Bool) -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public protocol OSIABRouter { - associatedtype ReturnType - func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (Self.ReturnType) -> Swift.Void) -} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.RawRepresentable {} diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 143a719..0000000 Binary files a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface deleted file mode 100644 index e48398e..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,174 +0,0 @@ -// 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-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSInAppBrowserLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Foundation -import SafariServices -import Swift -import SwiftUI -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public struct OSIABEngine where ExternalBrowser : OSInAppBrowserLib.OSIABRouter, SystemBrowser : OSInAppBrowserLib.OSIABRouter, WebView : OSInAppBrowserLib.OSIABRouter, ExternalBrowser.ReturnType == Swift.Bool, SystemBrowser.ReturnType == UIKit.UIViewController, WebView.ReturnType == UIKit.UIViewController { - public init() - public func openExternalBrowser(_ url: Foundation.URL, routerDelegate: ExternalBrowser, _ completionHandler: @escaping (ExternalBrowser.ReturnType) -> Swift.Void) - public func openSystemBrowser(_ url: Foundation.URL, routerDelegate: SystemBrowser, _ completionHandler: @escaping (SystemBrowser.ReturnType) -> Swift.Void) - public func openWebView(_ url: Foundation.URL, routerDelegate: WebView, _ completionHandler: @escaping (WebView.ReturnType) -> Swift.Void) -} -public class OSIABWebViewOptions : OSInAppBrowserLib.OSIABOptions { - public init(showURL: Swift.Bool = true, showToolbar: Swift.Bool = true, clearCache: Swift.Bool = true, clearSessionCache: Swift.Bool = true, mediaPlaybackRequiresUserAction: Swift.Bool = false, closeButtonText: Swift.String = "Close", toolbarPosition: OSInAppBrowserLib.OSIABToolbarPosition = .defaultValue, showNavigationButtons: Swift.Bool = true, leftToRight: Swift.Bool = false, allowOverScroll: Swift.Bool = true, enableViewportScale: Swift.Bool = false, allowInLineMediaPlayback: Swift.Bool = false, surpressIncrementalRendering: Swift.Bool = false, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, customUserAgent: Swift.String? = nil) - @objc deinit -} - - - - - - - - - - - - - - - - - - - - -public class OSIABOptions { - public init(viewStyle: OSInAppBrowserLib.OSIABViewStyle, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect) - @objc deinit -} - - - - - - -public enum OSIABToolbarPosition : Swift.String { - case top - case bottom - public static let defaultValue: OSInAppBrowserLib.OSIABToolbarPosition - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABCacheManager { - typealias CacheCompletion = () -> Swift.Void - func clearCache(_ completionHandler: Self.CacheCompletion?) - func clearSessionCache(_ completionHandler: Self.CacheCompletion?) -} -extension OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: Self.CacheCompletion? = nil) - public func clearSessionCache(_ completionHandler: Self.CacheCompletion? = nil) -} -public struct OSIABBrowserCacheManager { - public init(dataStore: WebKit.WKWebsiteDataStore) -} -extension OSInAppBrowserLib.OSIABBrowserCacheManager : OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) - public func clearSessionCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) -} -public enum OSIABViewStyle : Swift.String { - case formSheet - case fullScreen - case pageSheet - public static let defaultValue: OSInAppBrowserLib.OSIABViewStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABApplicationDelegate : AnyObject { - func canOpenURL(_ url: Foundation.URL) -> Swift.Bool - func open(_ url: Foundation.URL, options: [UIKit.UIApplication.OpenExternalURLOptionsKey : Any], completionHandler completion: ((Swift.Bool) -> Swift.Void)?) -} -extension UIKit.UIApplication : OSInAppBrowserLib.OSIABApplicationDelegate { -} -public class OSIABApplicationRouterAdapter : OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = Swift.Bool - public init(_ application: any OSInAppBrowserLib.OSIABApplicationDelegate) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABApplicationRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -public enum OSIABDismissStyle : Swift.String { - case cancel - case close - case done - public static let defaultValue: OSInAppBrowserLib.OSIABDismissStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum OSIABAnimationEffect : Swift.String { - case coverVertical - case crossDissolve - case flipHorizontal - public static let defaultValue: OSInAppBrowserLib.OSIABAnimationEffect - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public struct OSIABWebViewCallbackHandler { - public init(onDelegateURL: @escaping (Foundation.URL) -> Swift.Void, onDelegateAlertController: @escaping (UIKit.UIAlertController) -> Swift.Void, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping (Swift.Bool) -> Swift.Void) -} - - - - - - -@objc public class OSIABWebViewRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABWebViewOptions, cacheManager: any OSInAppBrowserLib.OSIABCacheManager, callbackHandler: OSInAppBrowserLib.OSIABWebViewCallbackHandler) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABWebViewRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABWebViewRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public class OSIABSystemBrowserOptions : OSInAppBrowserLib.OSIABOptions { - public init(dismissStyle: OSInAppBrowserLib.OSIABDismissStyle = .defaultValue, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, enableBarsCollapsing: Swift.Bool = true, enableReadersMode: Swift.Bool = false) - @objc deinit -} -@objc public class OSIABSafariViewControllerRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABSystemBrowserOptions, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping () -> Swift.Void) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : SafariServices.SFSafariViewControllerDelegate { - @objc dynamic public func safariViewController(_ controller: SafariServices.SFSafariViewController, didCompleteInitialLoad didLoadSuccessfully: Swift.Bool) -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public protocol OSIABRouter { - associatedtype ReturnType - func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (Self.ReturnType) -> Swift.Void) -} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.RawRepresentable {} diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.abi.json b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.abi.json deleted file mode 100644 index 9f43796..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,5694 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABEngine", - "printedName": "OSIABEngine", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABEngine", - "printedName": "OSInAppBrowserLib.OSIABEngine<Ï„_0_0, Ï„_0_1, Ï„_0_2>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_1" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_2" - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABEngineV" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib11OSIABEngineVACyxq_q0_Gycfc", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineVACyxq_q0_Gycfc", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "openExternalBrowser", - "printedName": "openExternalBrowser(_:routerDelegate:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_0" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_0.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_0.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV012openExternalC0_14routerDelegate_y10Foundation3URLV_xySbctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV012openExternalC0_14routerDelegate_y10Foundation3URLV_xySbctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openSystemBrowser", - "printedName": "openSystemBrowser(_:routerDelegate:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_1" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_1.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_1.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV010openSystemC0_14routerDelegate_y10Foundation3URLV_q_ySo16UIViewControllerCctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV010openSystemC0_14routerDelegate_y10Foundation3URLV_q_ySo16UIViewControllerCctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openWebView", - "printedName": "openWebView(_:routerDelegate:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "Ï„_0_2" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_2.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_2.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV11openWebView_14routerDelegate_y10Foundation3URLV_q0_ySo16UIViewControllerCctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV11openWebView_14routerDelegate_y10Foundation3URLV_q0_ySo16UIViewControllerCctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:17OSInAppBrowserLib11OSIABEngineV", - "mangledName": "$s17OSInAppBrowserLib11OSIABEngineV", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0, Ï„_0_1, Ï„_0_2 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter, Ï„_0_1 : OSInAppBrowserLib.OSIABRouter, Ï„_0_2 : OSInAppBrowserLib.OSIABRouter, Ï„_0_0.ReturnType == Swift.Bool, Ï„_0_1.ReturnType == UIKit.UIViewController, Ï„_0_2.ReturnType == UIKit.UIViewController>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABWebViewOptions", - "printedName": "OSIABWebViewOptions", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(showURL:showToolbar:clearCache:clearSessionCache:mediaPlaybackRequiresUserAction:closeButtonText:toolbarPosition:showNavigationButtons:leftToRight:allowOverScroll:enableViewportScale:allowInLineMediaPlayback:surpressIncrementalRendering:viewStyle:animationEffect:customUserAgent:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewOptions", - "printedName": "OSInAppBrowserLib.OSIABWebViewOptions", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfc", - "mangledName": "$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(viewStyle:animationEffect:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewOptions", - "printedName": "OSInAppBrowserLib.OSIABWebViewOptions", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0Otcfc", - "mangledName": "$s17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0Otcfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC", - "mangledName": "$s17OSInAppBrowserLib19OSIABWebViewOptionsC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:17OSInAppBrowserLib12OSIABOptionsC", - "superclassNames": [ - "OSInAppBrowserLib.OSIABOptions" - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABOptions", - "printedName": "OSIABOptions", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(viewStyle:animationEffect:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABOptions", - "printedName": "OSInAppBrowserLib.OSIABOptions", - "usr": "s:17OSInAppBrowserLib12OSIABOptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc", - "mangledName": "$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib12OSIABOptionsC", - "mangledName": "$s17OSInAppBrowserLib12OSIABOptionsC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABToolbarPosition", - "printedName": "OSIABToolbarPosition", - "children": [ - { - "kind": "Var", - "name": "top", - "printedName": "top", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABToolbarPosition.Type) -> OSInAppBrowserLib.OSIABToolbarPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO3topyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO3topyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "bottom", - "printedName": "bottom", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABToolbarPosition.Type) -> OSInAppBrowserLib.OSIABToolbarPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO6bottomyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO6bottomyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABToolbarPosition", - "printedName": "OSInAppBrowserLib.OSIABToolbarPosition", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib20OSIABToolbarPositionO", - "mangledName": "$s17OSInAppBrowserLib20OSIABToolbarPositionO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABCacheManager", - "printedName": "OSIABCacheManager", - "children": [ - { - "kind": "Function", - "name": "clearCache", - "printedName": "clearCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP10clearCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP10clearCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearSessionCache", - "printedName": "clearSessionCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP17clearSessionCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP17clearSessionCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearCache", - "printedName": "clearCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerPAAE10clearCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerPAAE10clearCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearSessionCache", - "printedName": "clearSessionCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerPAAE17clearSessionCacheyyyycSgF", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerPAAE17clearSessionCacheyyyycSgF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABCacheManager>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OSIABBrowserCacheManager", - "printedName": "OSIABBrowserCacheManager", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(dataStore:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABBrowserCacheManager", - "printedName": "OSInAppBrowserLib.OSIABBrowserCacheManager", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV" - }, - { - "kind": "TypeNominal", - "name": "WKWebsiteDataStore", - "printedName": "WebKit.WKWebsiteDataStore", - "usr": "c:objc(cs)WKWebsiteDataStore" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV9dataStoreACSo013WKWebsiteDataI0C_tcfc", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV9dataStoreACSo013WKWebsiteDataI0C_tcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "clearCache", - "printedName": "clearCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF0yyyycSgF", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF0yyyycSgF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearSessionCache", - "printedName": "clearSessionCache(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV012clearSessionF0yyyycSgF", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV012clearSessionF0yyyycSgF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:17OSInAppBrowserLib24OSIABBrowserCacheManagerV", - "mangledName": "$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABCacheManager", - "printedName": "OSIABCacheManager", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP", - "mangledName": "$s17OSInAppBrowserLib17OSIABCacheManagerP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABViewStyle", - "printedName": "OSIABViewStyle", - "children": [ - { - "kind": "Var", - "name": "formSheet", - "printedName": "formSheet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABViewStyle.Type) -> OSInAppBrowserLib.OSIABViewStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABViewStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO9formSheetyA2CmF", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO9formSheetyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "fullScreen", - "printedName": "fullScreen", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABViewStyle.Type) -> OSInAppBrowserLib.OSIABViewStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABViewStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO10fullScreenyA2CmF", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO10fullScreenyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "pageSheet", - "printedName": "pageSheet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABViewStyle.Type) -> OSInAppBrowserLib.OSIABViewStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABViewStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO9pageSheetyA2CmF", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO9pageSheetyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABViewStyle?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO", - "mangledName": "$s17OSInAppBrowserLib14OSIABViewStyleO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABApplicationDelegate", - "printedName": "OSIABApplicationDelegate", - "children": [ - { - "kind": "Function", - "name": "canOpenURL", - "printedName": "canOpenURL(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP10canOpenURLySb10Foundation0I0VF", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP10canOpenURLySb10Foundation0I0VF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABApplicationDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "open", - "printedName": "open(_:options:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[UIKit.UIApplication.OpenExternalURLOptionsKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "OpenExternalURLOptionsKey", - "printedName": "UIKit.UIApplication.OpenExternalURLOptionsKey", - "usr": "c:@T@UIApplicationOpenExternalURLOptionsKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP4open_7options17completionHandlery10Foundation3URLV_SDySo38UIApplicationOpenExternalURLOptionsKeyaypGySbcSgtF", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP4open_7options17completionHandlery10Foundation3URLV_SDySo38UIApplicationOpenExternalURLOptionsKeyaypGySbcSgtF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABApplicationDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OSIABApplicationRouterAdapter", - "printedName": "OSIABApplicationRouterAdapter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABApplicationRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABApplicationRouterAdapter", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterC" - }, - { - "kind": "TypeNominal", - "name": "OSIABApplicationDelegate", - "printedName": "OSInAppBrowserLib.OSIABApplicationDelegate", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfc", - "mangledName": "$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterC10handleOpenyy10Foundation3URLV_ySbctF", - "mangledName": "$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterC10handleOpenyy10Foundation3URLV_ySbctF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib29OSIABApplicationRouterAdapterC", - "mangledName": "$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "TypeWitness", - "name": "ReturnType", - "printedName": "ReturnType", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP" - } - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SafariServices", - "printedName": "SafariServices", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABDismissStyle", - "printedName": "OSIABDismissStyle", - "children": [ - { - "kind": "Var", - "name": "cancel", - "printedName": "cancel", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABDismissStyle.Type) -> OSInAppBrowserLib.OSIABDismissStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO6cancelyA2CmF", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO6cancelyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "close", - "printedName": "close", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABDismissStyle.Type) -> OSInAppBrowserLib.OSIABDismissStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO5closeyA2CmF", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO5closeyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "done", - "printedName": "done", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABDismissStyle.Type) -> OSInAppBrowserLib.OSIABDismissStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO4doneyA2CmF", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO4doneyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO", - "mangledName": "$s17OSInAppBrowserLib17OSIABDismissStyleO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABAnimationEffect", - "printedName": "OSIABAnimationEffect", - "children": [ - { - "kind": "Var", - "name": "coverVertical", - "printedName": "coverVertical", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABAnimationEffect.Type) -> OSInAppBrowserLib.OSIABAnimationEffect", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO13coverVerticalyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO13coverVerticalyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "crossDissolve", - "printedName": "crossDissolve", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABAnimationEffect.Type) -> OSInAppBrowserLib.OSIABAnimationEffect", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO13crossDissolveyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO13crossDissolveyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "flipHorizontal", - "printedName": "flipHorizontal", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSInAppBrowserLib.OSIABAnimationEffect.Type) -> OSInAppBrowserLib.OSIABAnimationEffect", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO14flipHorizontalyA2CmF", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO14flipHorizontalyA2CmF", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvpZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvpZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ", - "moduleName": "OSInAppBrowserLib", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueACSgSS_tcfc", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueACSgSS_tcfc", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvp", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvp", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvg", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvg", - "moduleName": "OSInAppBrowserLib", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO", - "mangledName": "$s17OSInAppBrowserLib20OSIABAnimationEffectO", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABWebViewCallbackHandler", - "printedName": "OSIABWebViewCallbackHandler", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(onDelegateURL:onDelegateAlertController:onBrowserPageLoad:onBrowserClosed:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewCallbackHandler", - "printedName": "OSInAppBrowserLib.OSIABWebViewCallbackHandler", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIAlertController) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIAlertController", - "printedName": "UIKit.UIAlertController", - "usr": "c:objc(cs)UIAlertController" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfc", - "mangledName": "$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV", - "mangledName": "$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABWebViewRouterAdapter", - "printedName": "OSIABWebViewRouterAdapter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:cacheManager:callbackHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABWebViewRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter" - }, - { - "kind": "TypeNominal", - "name": "OSIABWebViewOptions", - "printedName": "OSInAppBrowserLib.OSIABWebViewOptions", - "usr": "s:17OSInAppBrowserLib19OSIABWebViewOptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABCacheManager", - "printedName": "OSInAppBrowserLib.OSIABCacheManager", - "usr": "s:17OSInAppBrowserLib17OSIABCacheManagerP" - }, - { - "kind": "TypeNominal", - "name": "OSIABWebViewCallbackHandler", - "printedName": "OSInAppBrowserLib.OSIABWebViewCallbackHandler", - "usr": "s:17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0Vtcfc", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0Vtcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIViewController) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABWebViewRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABWebViewRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter" - } - ], - "declKind": "Constructor", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter(im)init", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "presentationControllerDidDismiss", - "printedName": "presentationControllerDidDismiss(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIPresentationController", - "printedName": "UIKit.UIPresentationController", - "usr": "c:objc(cs)UIPresentationController" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter(im)presentationControllerDidDismiss:", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC32presentationControllerDidDismissyySo014UIPresentationJ0CF", - "moduleName": "OSInAppBrowserLib", - "objc_name": "presentationControllerDidDismiss:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABWebViewRouterAdapter", - "mangledName": "$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "TypeWitness", - "name": "ReturnType", - "printedName": "ReturnType", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "SafariServices", - "printedName": "SafariServices", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSIABSystemBrowserOptions", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(dismissStyle:viewStyle:animationEffect:enableBarsCollapsing:enableReadersMode:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSInAppBrowserLib.OSIABSystemBrowserOptions", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABDismissStyle", - "printedName": "OSInAppBrowserLib.OSIABDismissStyle", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib17OSIABDismissStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "hasDefaultArg": true, - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfc", - "mangledName": "$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(viewStyle:animationEffect:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSInAppBrowserLib.OSIABSystemBrowserOptions", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC" - }, - { - "kind": "TypeNominal", - "name": "OSIABViewStyle", - "printedName": "OSInAppBrowserLib.OSIABViewStyle", - "usr": "s:17OSInAppBrowserLib14OSIABViewStyleO" - }, - { - "kind": "TypeNominal", - "name": "OSIABAnimationEffect", - "printedName": "OSInAppBrowserLib.OSIABAnimationEffect", - "usr": "s:17OSInAppBrowserLib20OSIABAnimationEffectO" - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0Otcfc", - "mangledName": "$s17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0Otcfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC", - "mangledName": "$s17OSInAppBrowserLib011OSIABSystemC7OptionsC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:17OSInAppBrowserLib12OSIABOptionsC", - "superclassNames": [ - "OSInAppBrowserLib.OSIABOptions" - ] - }, - { - "kind": "Import", - "name": "SafariServices", - "printedName": "SafariServices", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABSafariViewControllerRouterAdapter", - "printedName": "OSIABSafariViewControllerRouterAdapter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:onBrowserPageLoad:onBrowserClosed:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSafariViewControllerRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter" - }, - { - "kind": "TypeNominal", - "name": "OSIABSystemBrowserOptions", - "printedName": "OSInAppBrowserLib.OSIABSystemBrowserOptions", - "usr": "s:17OSInAppBrowserLib011OSIABSystemC7OptionsC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Constructor", - "usr": "s:17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfc", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfc", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIViewController) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSIABSafariViewControllerRouterAdapter", - "printedName": "OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter" - } - ], - "declKind": "Constructor", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter(im)init", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfc", - "moduleName": "OSInAppBrowserLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "safariViewController", - "printedName": "safariViewController(_:didCompleteInitialLoad:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SFSafariViewController", - "printedName": "SafariServices.SFSafariViewController", - "usr": "c:objc(cs)SFSafariViewController" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter(im)safariViewController:didCompleteInitialLoad:", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC06safarifG0_22didCompleteInitialLoadySo08SFSafarifG0C_SbtF", - "moduleName": "OSInAppBrowserLib", - "objc_name": "safariViewController:didCompleteInitialLoad:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentationControllerDidDismiss", - "printedName": "presentationControllerDidDismiss(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIPresentationController", - "printedName": "UIKit.UIPresentationController", - "usr": "c:objc(cs)UIPresentationController" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter(im)presentationControllerDidDismiss:", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC012presentationG10DidDismissyySo014UIPresentationG0CF", - "moduleName": "OSInAppBrowserLib", - "objc_name": "presentationControllerDidDismiss:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@OSInAppBrowserLib@objc(cs)OSIABSafariViewControllerRouterAdapter", - "mangledName": "$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "TypeWitness", - "name": "ReturnType", - "printedName": "ReturnType", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ] - } - ], - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "OSInAppBrowserLib" - }, - { - "kind": "TypeDecl", - "name": "OSIABRouter", - "printedName": "OSIABRouter", - "children": [ - { - "kind": "AssociatedType", - "name": "ReturnType", - "printedName": "ReturnType", - "declKind": "AssociatedType", - "usr": "s:17OSInAppBrowserLib11OSIABRouterP10ReturnTypeQa", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP10ReturnTypeQa", - "moduleName": "OSInAppBrowserLib", - "protocolReq": true - }, - { - "kind": "Function", - "name": "handleOpen", - "printedName": "handleOpen(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Ï„_0_0.ReturnType) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "Ï„_0_0.ReturnType" - } - ] - } - ], - "declKind": "Func", - "usr": "s:17OSInAppBrowserLib11OSIABRouterP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctF", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctF", - "moduleName": "OSInAppBrowserLib", - "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSInAppBrowserLib.OSIABRouter>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:17OSInAppBrowserLib11OSIABRouterP", - "mangledName": "$s17OSInAppBrowserLib11OSIABRouterP", - "moduleName": "OSInAppBrowserLib", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "UIApplication", - "printedName": "UIApplication", - "declKind": "Class", - "usr": "c:objc(cs)UIApplication", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIApplication", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIResponder", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "OSIABApplicationDelegate", - "printedName": "OSIABApplicationDelegate", - "usr": "s:17OSInAppBrowserLib24OSIABApplicationDelegateP", - "mangledName": "$s17OSInAppBrowserLib24OSIABApplicationDelegateP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 3946, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 3980, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4013, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4053, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4107, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "StringLiteral", - "offset": 4148, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4258, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4292, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4331, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4373, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4421, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "BooleanLiteral", - "offset": 4473, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "StringLiteral", - "offset": 4936, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "StringLiteral", - "offset": 159, - "length": 19, - "value": "\"OSInAppBrowserLib.OSIABWebViewOptions\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABWebViewOptions.swift", - "kind": "Array", - "offset": 5750, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "IntegerLiteral", - "offset": 4192, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 4509, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4542, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4576, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4683, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4717, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 4748, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5199, - "length": 20, - "value": "\"https:\/\/outsystems\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5222, - "length": 24, - "value": "\"https:\/\/outsystems.com\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "IntegerLiteral", - "offset": 5616, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5669, - "length": 41, - "value": "\"Close Button count: \"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5709, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5766, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "StringLiteral", - "offset": 247, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "IntegerLiteral", - "offset": 313, - "length": 3, - "value": "155" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "IntegerLiteral", - "offset": 346, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf_.swift", - "kind": "StringLiteral", - "offset": 459, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5827, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "159" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 5924, - "length": 20, - "value": "\"Error - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 5978, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "164" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 20, - "value": "\"Error - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf4_.swift", - "kind": "BooleanLiteral", - "offset": 522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 26, - "value": "\"Custom Close Button Text\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6110, - "length": 6, - "value": "\"Done\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "170" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 26, - "value": "\"Custom Close Button Text\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 553, - "length": 6, - "value": "\"Done\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6163, - "length": 12, - "value": "\"No Toolbar\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6222, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 314, - "length": 3, - "value": "178" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 460, - "length": 12, - "value": "\"No Toolbar\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf8_.swift", - "kind": "BooleanLiteral", - "offset": 535, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6271, - "length": 34, - "value": "\"No URL and No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6348, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6387, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "186" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 34, - "value": "\"No URL and No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 554, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 600, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6411, - "length": 49, - "value": "\"No URL, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6503, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6542, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6570, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "193" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 49, - "value": "\"No URL, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "BooleanLiteral", - "offset": 569, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "BooleanLiteral", - "offset": 615, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf12_.swift", - "kind": "BooleanLiteral", - "offset": 651, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6593, - "length": 8, - "value": "\"No URL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6644, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "201" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 8, - "value": "\"No URL\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf14_.swift", - "kind": "BooleanLiteral", - "offset": 528, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6668, - "length": 26, - "value": "\"No URL and Left-To-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6737, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6766, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "207" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 26, - "value": "\"No URL and Left-To-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "BooleanLiteral", - "offset": 546, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf16_.swift", - "kind": "BooleanLiteral", - "offset": 582, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6789, - "length": 50, - "value": "\"No URL, Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6882, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 6955, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "214" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 50, - "value": "\"No URL, Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "BooleanLiteral", - "offset": 570, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf18_.swift", - "kind": "BooleanLiteral", - "offset": 658, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 6979, - "length": 65, - "value": "\"No URL, Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7087, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7160, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7189, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "222" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 65, - "value": "\"No URL, Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "BooleanLiteral", - "offset": 585, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "BooleanLiteral", - "offset": 673, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf20_.swift", - "kind": "BooleanLiteral", - "offset": 709, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7212, - "length": 27, - "value": "\"No URL and Bottom Toolbar\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7282, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "231" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 27, - "value": "\"No URL and Bottom Toolbar\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf22_.swift", - "kind": "BooleanLiteral", - "offset": 547, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7340, - "length": 42, - "value": "\"No URL, Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7425, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7487, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "238" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 42, - "value": "\"No URL, Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "BooleanLiteral", - "offset": 562, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf24_.swift", - "kind": "BooleanLiteral", - "offset": 640, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7510, - "length": 23, - "value": "\"No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7590, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "246" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 23, - "value": "\"No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf26_.swift", - "kind": "BooleanLiteral", - "offset": 557, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7614, - "length": 41, - "value": "\"No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7740, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "252" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 41, - "value": "\"No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "BooleanLiteral", - "offset": 575, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf28_.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7763, - "length": 15, - "value": "\"Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7825, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "259" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 15, - "value": "\"Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf30_.swift", - "kind": "BooleanLiteral", - "offset": 539, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 7848, - "length": 42, - "value": "\"Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 7982, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "265" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 42, - "value": "\"Bottom Toolbar and No Navigation Buttons\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf32_.swift", - "kind": "BooleanLiteral", - "offset": 618, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 8006, - "length": 57, - "value": "\"Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 8154, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 8182, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "272" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 57, - "value": "\"Bottom Toolbar, No Navigation Buttons and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "BooleanLiteral", - "offset": 633, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf34_.swift", - "kind": "BooleanLiteral", - "offset": 669, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 8205, - "length": 16, - "value": "\"Bottom Toolbar\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "280" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf36_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 16, - "value": "\"Bottom Toolbar\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "StringLiteral", - "offset": 8298, - "length": 34, - "value": "\"Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebView.swift", - "kind": "BooleanLiteral", - "offset": 8413, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 38, - "value": "\"OSInAppBrowserLib\/OSIABWebView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 3, - "value": "286" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "StringLiteral", - "offset": 461, - "length": 34, - "value": "\"Bottom Toolbar and Left-to-Right\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_4A4A017F4904D18ED46D60328459EAE3Ll7PreviewfMf38_.swift", - "kind": "BooleanLiteral", - "offset": 600, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 3825, - "length": 18, - "value": "\"chevron.backward\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 4066, - "length": 17, - "value": "\"chevron.forward\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "IntegerLiteral", - "offset": 4414, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 4455, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 4698, - "length": 20, - "value": "\"No Button Pressed.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 4885, - "length": 13, - "value": "\"URL Address\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 4948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 4988, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 5032, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 5439, - "length": 22, - "value": "\"Back Button Pressed.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 5615, - "length": 25, - "value": "\"Forward Button Pressed.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "FloatLiteral", - "offset": 6000, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6125, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "154" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6193, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "158" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6297, - "length": 34, - "value": "\"Show Navigation Buttons Disabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6386, - "length": 5, - "value": "false" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "163" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 34, - "value": "\"Show Navigation Buttons Disabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf4_.swift", - "kind": "BooleanLiteral", - "offset": 564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6405, - "length": 21, - "value": "\"Back Button Enabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6477, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "167" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 21, - "value": "\"Back Button Enabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf6_.swift", - "kind": "BooleanLiteral", - "offset": 547, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6495, - "length": 24, - "value": "\"Forward Button Enabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6573, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 3, - "value": "171" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 467, - "length": 24, - "value": "\"Forward Button Enabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf8_.swift", - "kind": "BooleanLiteral", - "offset": 553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "StringLiteral", - "offset": 6591, - "length": 22, - "value": "\"Both Buttons Enabled\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABNavigationView.swift", - "kind": "BooleanLiteral", - "offset": 6692, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABNavigationView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 322, - "length": 3, - "value": "175" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "IntegerLiteral", - "offset": 355, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "StringLiteral", - "offset": 468, - "length": 22, - "value": "\"Both Buttons Enabled\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 549, - "length": 4, - "value": "true" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_E6EE006C509F907B5BFD0901EE702BEBLl7PreviewfMf10_.swift", - "kind": "BooleanLiteral", - "offset": 577, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 140, - "length": 5, - "value": "\"TOP\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 164, - "length": 8, - "value": "\"BOTTOM\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 140, - "length": 5, - "value": "\"TOP\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABToolbarPosition.swift", - "kind": "StringLiteral", - "offset": 164, - "length": 8, - "value": "\"BOTTOM\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/OSIABCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 2468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/OSIABCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 2624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1482, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "BooleanLiteral", - "offset": 1623, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewUIModel.swift", - "kind": "StringLiteral", - "offset": 1664, - "length": 7, - "value": "\"Close\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 138, - "length": 12, - "value": "\"FORM_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 173, - "length": 13, - "value": "\"FULL_SCREEN\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 208, - "length": 12, - "value": "\"PAGE_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 138, - "length": 12, - "value": "\"FORM_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 173, - "length": 13, - "value": "\"FULL_SCREEN\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABViewStyle.swift", - "kind": "StringLiteral", - "offset": 208, - "length": 12, - "value": "\"PAGE_SHEET\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABApplicationRouterAdapter.swift", - "kind": "Dictionary", - "offset": 611, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABApplicationRouterAdapter.swift", - "kind": "BooleanLiteral", - "offset": 1626, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 171, - "length": 8, - "value": "\"CANCEL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"CLOSE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 6, - "value": "\"DONE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 171, - "length": 8, - "value": "\"CANCEL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"CLOSE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABDismissStyle.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 6, - "value": "\"DONE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "Array", - "offset": 1362, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "BooleanLiteral", - "offset": 1411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "BooleanLiteral", - "offset": 1462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABWebViewConfigurationModel.swift", - "kind": "BooleanLiteral", - "offset": 1518, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 154, - "length": 16, - "value": "\"COVER_VERTICAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 196, - "length": 16, - "value": "\"CROSS_DISSOLVE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 17, - "value": "\"FLIP_HORIZONTAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 154, - "length": 16, - "value": "\"COVER_VERTICAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 196, - "length": 16, - "value": "\"CROSS_DISSOLVE\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/OSIABAnimationEffect.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 17, - "value": "\"FLIP_HORIZONTAL\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 942, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1383, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1516, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2393, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5132, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 81, - "length": 17, - "value": "\"OSInAppBrowserLib.OSIABWebViewModel\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 12, - "value": "\"itms-appss\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5740, - "length": 11, - "value": "\"itms-apps\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5753, - "length": 5, - "value": "\"tel\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5760, - "length": 5, - "value": "\"sms\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5767, - "length": 8, - "value": "\"mailto\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 5777, - "length": 5, - "value": "\"geo\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6465, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 19, - "value": "\"didFailNavigation\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 6879, - "length": 30, - "value": "\"didFailProvisionalNavigation\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 7059, - "length": 58, - "value": "\"webView: \"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 7084, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 7116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 8065, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 8215, - "length": 4, - "value": "\"OK\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "StringLiteral", - "offset": 8422, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9405, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9557, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9613, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10114, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/OSIABWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10321, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "IntegerLiteral", - "offset": 1043, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1066, - "length": 33, - "value": "\"Couldn't load the page content.\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1281, - "length": 17, - "value": "\"arrow.clockwise\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1329, - "length": 13, - "value": "\"Reload page\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "IntegerLiteral", - "offset": 1576, - "length": 3, - "value": "120" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1608, - "length": 23, - "value": "\"Default - Error Light\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1679, - "length": 9, - "value": "\"Preview\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABErrorView.swift", - "kind": "StringLiteral", - "offset": 1732, - "length": 16, - "value": "\"Clicked reload\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 40, - "value": "\"OSInAppBrowserLib\/OSIABErrorView.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 317, - "length": 2, - "value": "49" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 462, - "length": 23, - "value": "\"Default - Error Light\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 549, - "length": 9, - "value": "\"Preview\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib030_F8831792EA90CA06D0338DD26E9C6J1CLl7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 629, - "length": 16, - "value": "\"Clicked reload\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "Array", - "offset": 648, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 1044, - "length": 24, - "value": "\"https:\/\/outsystems.com\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 1936, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "58" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf0_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 22, - "value": "\"Default - Light Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2007, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "62" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf2_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 21, - "value": "\"Default - Dark Mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2114, - "length": 24, - "value": "\"Bottom Toolbar Defined\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "67" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf4_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 24, - "value": "\"Bottom Toolbar Defined\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2211, - "length": 25, - "value": "\"Error View - Light mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2275, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "71" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 25, - "value": "\"Error View - Light mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf6_.swift", - "kind": "StringLiteral", - "offset": 538, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2311, - "length": 24, - "value": "\"Error View - Dark mode\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/WebView\/Views\/OSIABWebViewWrapper.swift", - "kind": "StringLiteral", - "offset": 2374, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 45, - "value": "\"OSInAppBrowserLib\/OSIABWebViewWrapper.swift\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 2, - "value": "75" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 1, - "value": "1" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 24, - "value": "\"Error View - Dark mode\"" - }, - { - "filePath": "@__swiftmacro_17OSInAppBrowserLib33_6F3C24D83ED9199BBD066778CCE331F9Ll7PreviewfMf8_.swift", - "kind": "StringLiteral", - "offset": 537, - "length": 21, - "value": "\"https:\/\/outsystems\/\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "BooleanLiteral", - "offset": 2005, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 190, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABWebViewRouterAdapter\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "BooleanLiteral", - "offset": 3627, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 3764, - "length": 22, - "value": "\"OSInAppBrowserLib.OSIABWebViewController\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABWebViewRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 3764, - "length": 22, - "value": "\"OSInAppBrowserLib.OSIABWebViewController\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABSystemBrowserOptions.swift", - "kind": "BooleanLiteral", - "offset": 1398, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABSystemBrowserOptions.swift", - "kind": "BooleanLiteral", - "offset": 1438, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/Models\/Options\/OSIABSystemBrowserOptions.swift", - "kind": "StringLiteral", - "offset": 186, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABSystemBrowserOptions\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABSafariViewControllerRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 169, - "length": 38, - "value": "\"OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABSafariViewControllerRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 2943, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABSafariViewController\"" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSInAppBrowserLib-iOS\/OSInAppBrowserLib\/RouterAdapters\/OSIABSafariViewControllerRouterAdapter.swift", - "kind": "StringLiteral", - "offset": 2943, - "length": 25, - "value": "\"OSInAppBrowserLib.OSIABSafariViewController\"" - } - ] -} \ No newline at end of file diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index 0f069e9..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,174 +0,0 @@ -// 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-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSInAppBrowserLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Foundation -import SafariServices -import Swift -import SwiftUI -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public struct OSIABEngine where ExternalBrowser : OSInAppBrowserLib.OSIABRouter, SystemBrowser : OSInAppBrowserLib.OSIABRouter, WebView : OSInAppBrowserLib.OSIABRouter, ExternalBrowser.ReturnType == Swift.Bool, SystemBrowser.ReturnType == UIKit.UIViewController, WebView.ReturnType == UIKit.UIViewController { - public init() - public func openExternalBrowser(_ url: Foundation.URL, routerDelegate: ExternalBrowser, _ completionHandler: @escaping (ExternalBrowser.ReturnType) -> Swift.Void) - public func openSystemBrowser(_ url: Foundation.URL, routerDelegate: SystemBrowser, _ completionHandler: @escaping (SystemBrowser.ReturnType) -> Swift.Void) - public func openWebView(_ url: Foundation.URL, routerDelegate: WebView, _ completionHandler: @escaping (WebView.ReturnType) -> Swift.Void) -} -public class OSIABWebViewOptions : OSInAppBrowserLib.OSIABOptions { - public init(showURL: Swift.Bool = true, showToolbar: Swift.Bool = true, clearCache: Swift.Bool = true, clearSessionCache: Swift.Bool = true, mediaPlaybackRequiresUserAction: Swift.Bool = false, closeButtonText: Swift.String = "Close", toolbarPosition: OSInAppBrowserLib.OSIABToolbarPosition = .defaultValue, showNavigationButtons: Swift.Bool = true, leftToRight: Swift.Bool = false, allowOverScroll: Swift.Bool = true, enableViewportScale: Swift.Bool = false, allowInLineMediaPlayback: Swift.Bool = false, surpressIncrementalRendering: Swift.Bool = false, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, customUserAgent: Swift.String? = nil) - @objc deinit -} - - - - - - - - - - - - - - - - - - - - -public class OSIABOptions { - public init(viewStyle: OSInAppBrowserLib.OSIABViewStyle, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect) - @objc deinit -} - - - - - - -public enum OSIABToolbarPosition : Swift.String { - case top - case bottom - public static let defaultValue: OSInAppBrowserLib.OSIABToolbarPosition - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABCacheManager { - typealias CacheCompletion = () -> Swift.Void - func clearCache(_ completionHandler: Self.CacheCompletion?) - func clearSessionCache(_ completionHandler: Self.CacheCompletion?) -} -extension OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: Self.CacheCompletion? = nil) - public func clearSessionCache(_ completionHandler: Self.CacheCompletion? = nil) -} -public struct OSIABBrowserCacheManager { - public init(dataStore: WebKit.WKWebsiteDataStore) -} -extension OSInAppBrowserLib.OSIABBrowserCacheManager : OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) - public func clearSessionCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) -} -public enum OSIABViewStyle : Swift.String { - case formSheet - case fullScreen - case pageSheet - public static let defaultValue: OSInAppBrowserLib.OSIABViewStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABApplicationDelegate : AnyObject { - func canOpenURL(_ url: Foundation.URL) -> Swift.Bool - func open(_ url: Foundation.URL, options: [UIKit.UIApplication.OpenExternalURLOptionsKey : Any], completionHandler completion: ((Swift.Bool) -> Swift.Void)?) -} -extension UIKit.UIApplication : OSInAppBrowserLib.OSIABApplicationDelegate { -} -public class OSIABApplicationRouterAdapter : OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = Swift.Bool - public init(_ application: any OSInAppBrowserLib.OSIABApplicationDelegate) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABApplicationRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -public enum OSIABDismissStyle : Swift.String { - case cancel - case close - case done - public static let defaultValue: OSInAppBrowserLib.OSIABDismissStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum OSIABAnimationEffect : Swift.String { - case coverVertical - case crossDissolve - case flipHorizontal - public static let defaultValue: OSInAppBrowserLib.OSIABAnimationEffect - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public struct OSIABWebViewCallbackHandler { - public init(onDelegateURL: @escaping (Foundation.URL) -> Swift.Void, onDelegateAlertController: @escaping (UIKit.UIAlertController) -> Swift.Void, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping (Swift.Bool) -> Swift.Void) -} - - - - - - -@objc public class OSIABWebViewRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABWebViewOptions, cacheManager: any OSInAppBrowserLib.OSIABCacheManager, callbackHandler: OSInAppBrowserLib.OSIABWebViewCallbackHandler) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABWebViewRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABWebViewRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public class OSIABSystemBrowserOptions : OSInAppBrowserLib.OSIABOptions { - public init(dismissStyle: OSInAppBrowserLib.OSIABDismissStyle = .defaultValue, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, enableBarsCollapsing: Swift.Bool = true, enableReadersMode: Swift.Bool = false) - @objc deinit -} -@objc public class OSIABSafariViewControllerRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABSystemBrowserOptions, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping () -> Swift.Void) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : SafariServices.SFSafariViewControllerDelegate { - @objc dynamic public func safariViewController(_ controller: SafariServices.SFSafariViewController, didCompleteInitialLoad didLoadSuccessfully: Swift.Bool) -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public protocol OSIABRouter { - associatedtype ReturnType - func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (Self.ReturnType) -> Swift.Void) -} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.RawRepresentable {} diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 747c935..0000000 Binary files a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface deleted file mode 100644 index 0f069e9..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,174 +0,0 @@ -// 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-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSInAppBrowserLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Foundation -import SafariServices -import Swift -import SwiftUI -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public struct OSIABEngine where ExternalBrowser : OSInAppBrowserLib.OSIABRouter, SystemBrowser : OSInAppBrowserLib.OSIABRouter, WebView : OSInAppBrowserLib.OSIABRouter, ExternalBrowser.ReturnType == Swift.Bool, SystemBrowser.ReturnType == UIKit.UIViewController, WebView.ReturnType == UIKit.UIViewController { - public init() - public func openExternalBrowser(_ url: Foundation.URL, routerDelegate: ExternalBrowser, _ completionHandler: @escaping (ExternalBrowser.ReturnType) -> Swift.Void) - public func openSystemBrowser(_ url: Foundation.URL, routerDelegate: SystemBrowser, _ completionHandler: @escaping (SystemBrowser.ReturnType) -> Swift.Void) - public func openWebView(_ url: Foundation.URL, routerDelegate: WebView, _ completionHandler: @escaping (WebView.ReturnType) -> Swift.Void) -} -public class OSIABWebViewOptions : OSInAppBrowserLib.OSIABOptions { - public init(showURL: Swift.Bool = true, showToolbar: Swift.Bool = true, clearCache: Swift.Bool = true, clearSessionCache: Swift.Bool = true, mediaPlaybackRequiresUserAction: Swift.Bool = false, closeButtonText: Swift.String = "Close", toolbarPosition: OSInAppBrowserLib.OSIABToolbarPosition = .defaultValue, showNavigationButtons: Swift.Bool = true, leftToRight: Swift.Bool = false, allowOverScroll: Swift.Bool = true, enableViewportScale: Swift.Bool = false, allowInLineMediaPlayback: Swift.Bool = false, surpressIncrementalRendering: Swift.Bool = false, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, customUserAgent: Swift.String? = nil) - @objc deinit -} - - - - - - - - - - - - - - - - - - - - -public class OSIABOptions { - public init(viewStyle: OSInAppBrowserLib.OSIABViewStyle, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect) - @objc deinit -} - - - - - - -public enum OSIABToolbarPosition : Swift.String { - case top - case bottom - public static let defaultValue: OSInAppBrowserLib.OSIABToolbarPosition - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABCacheManager { - typealias CacheCompletion = () -> Swift.Void - func clearCache(_ completionHandler: Self.CacheCompletion?) - func clearSessionCache(_ completionHandler: Self.CacheCompletion?) -} -extension OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: Self.CacheCompletion? = nil) - public func clearSessionCache(_ completionHandler: Self.CacheCompletion? = nil) -} -public struct OSIABBrowserCacheManager { - public init(dataStore: WebKit.WKWebsiteDataStore) -} -extension OSInAppBrowserLib.OSIABBrowserCacheManager : OSInAppBrowserLib.OSIABCacheManager { - public func clearCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) - public func clearSessionCache(_ completionHandler: OSInAppBrowserLib.OSIABBrowserCacheManager.CacheCompletion?) -} -public enum OSIABViewStyle : Swift.String { - case formSheet - case fullScreen - case pageSheet - public static let defaultValue: OSInAppBrowserLib.OSIABViewStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public protocol OSIABApplicationDelegate : AnyObject { - func canOpenURL(_ url: Foundation.URL) -> Swift.Bool - func open(_ url: Foundation.URL, options: [UIKit.UIApplication.OpenExternalURLOptionsKey : Any], completionHandler completion: ((Swift.Bool) -> Swift.Void)?) -} -extension UIKit.UIApplication : OSInAppBrowserLib.OSIABApplicationDelegate { -} -public class OSIABApplicationRouterAdapter : OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = Swift.Bool - public init(_ application: any OSInAppBrowserLib.OSIABApplicationDelegate) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABApplicationRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -public enum OSIABDismissStyle : Swift.String { - case cancel - case close - case done - public static let defaultValue: OSInAppBrowserLib.OSIABDismissStyle - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum OSIABAnimationEffect : Swift.String { - case coverVertical - case crossDissolve - case flipHorizontal - public static let defaultValue: OSInAppBrowserLib.OSIABAnimationEffect - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public struct OSIABWebViewCallbackHandler { - public init(onDelegateURL: @escaping (Foundation.URL) -> Swift.Void, onDelegateAlertController: @escaping (UIKit.UIAlertController) -> Swift.Void, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping (Swift.Bool) -> Swift.Void) -} - - - - - - -@objc public class OSIABWebViewRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABWebViewOptions, cacheManager: any OSInAppBrowserLib.OSIABCacheManager, callbackHandler: OSInAppBrowserLib.OSIABWebViewCallbackHandler) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABWebViewRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABWebViewRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public class OSIABSystemBrowserOptions : OSInAppBrowserLib.OSIABOptions { - public init(dismissStyle: OSInAppBrowserLib.OSIABDismissStyle = .defaultValue, viewStyle: OSInAppBrowserLib.OSIABViewStyle = .defaultValue, animationEffect: OSInAppBrowserLib.OSIABAnimationEffect = .defaultValue, enableBarsCollapsing: Swift.Bool = true, enableReadersMode: Swift.Bool = false) - @objc deinit -} -@objc public class OSIABSafariViewControllerRouterAdapter : ObjectiveC.NSObject, OSInAppBrowserLib.OSIABRouter { - public typealias ReturnType = UIKit.UIViewController - public init(_ options: OSInAppBrowserLib.OSIABSystemBrowserOptions, onBrowserPageLoad: @escaping () -> Swift.Void, onBrowserClosed: @escaping () -> Swift.Void) - public func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter.ReturnType) -> Swift.Void) - @objc deinit -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : SafariServices.SFSafariViewControllerDelegate { - @objc dynamic public func safariViewController(_ controller: SafariServices.SFSafariViewController, didCompleteInitialLoad didLoadSuccessfully: Swift.Bool) -} -extension OSInAppBrowserLib.OSIABSafariViewControllerRouterAdapter : UIKit.UIAdaptivePresentationControllerDelegate { - @_Concurrency.MainActor(unsafe) @objc dynamic public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController) -} -public protocol OSIABRouter { - associatedtype ReturnType - func handleOpen(_ url: Foundation.URL, _ completionHandler: @escaping (Self.ReturnType) -> Swift.Void) -} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABToolbarPosition : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABViewStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABDismissStyle : Swift.RawRepresentable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Equatable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.Hashable {} -extension OSInAppBrowserLib.OSIABAnimationEffect : Swift.RawRepresentable {} diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/module.modulemap b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/module.modulemap deleted file mode 100644 index ad5451f..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,4 +0,0 @@ -framework module OSInAppBrowserLib { - header "OSInAppBrowserLib-Swift.h" - requires objc -} diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/OSInAppBrowserLib b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/OSInAppBrowserLib deleted file mode 100755 index 08f7d98..0000000 Binary files a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/OSInAppBrowserLib and /dev/null differ diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/_CodeSignature/CodeResources b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/_CodeSignature/CodeResources deleted file mode 100644 index b696e73..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/OSInAppBrowserLib.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,234 +0,0 @@ - - - - - files - - Headers/OSInAppBrowserLib-Swift.h - - 7BagsdfOTMBD3CgxGr2CtHZ7R3Y= - - Info.plist - - PfEi//cqIzcDKk8Z449fDDgimgM= - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - h/WOLllyT/ChfQB+sfvk/PKXUX0= - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - JbJ7oOOsLITf+x5QM2b8vQXhNNg= - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - 0P2chbSAaGK437/8wzZsV5S/S4w= - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - JbJ7oOOsLITf+x5QM2b8vQXhNNg= - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - zVYpnRjbUzSBLROIAJqVdqGGw8g= - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - h/WOLllyT/ChfQB+sfvk/PKXUX0= - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - YOW0XjTWYarEUjyTHReBOXt1ook= - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - 7G65nigj/nIDuBMB/25w01r40u4= - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - YOW0XjTWYarEUjyTHReBOXt1ook= - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - pSOBQOqw8dt1u69PhzLFTThCahY= - - Modules/module.modulemap - - 97qE/JP5FQV7bzcaBPYeVZ/V2B8= - - - files2 - - Headers/OSInAppBrowserLib-Swift.h - - hash2 - - gTx2NQ1xmU5BHtsZTr2v7xl0Gwby1IZxdixEqzo9/ww= - - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - hash2 - - qaFn897tqnIMln8WgdmHoEYnkkIaYRZNcZT+4p/o+T0= - - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - hash2 - - v1lATR2/kPDGW5R8RMwYv7DyrRti0FeAtZI3FV9morw= - - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - hash2 - - G6sptmBvZLkdENQCuxC06b+8Q6rULRVvzsz6g2YAThU= - - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - hash2 - - v1lATR2/kPDGW5R8RMwYv7DyrRti0FeAtZI3FV9morw= - - - Modules/OSInAppBrowserLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - hash2 - - J3irktVT6vdDwwe1++Ceb+fdqlere5ZS6UsyQGFJ1nE= - - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - hash2 - - qaFn897tqnIMln8WgdmHoEYnkkIaYRZNcZT+4p/o+T0= - - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - hash2 - - XcbUAOiR+mlyNjnAHKIT2wpxx9i2fUTZwW0DUcKX1Ls= - - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - hash2 - - tn/LPTAAFRTgsSKgVmRh8NXL97BYZy8yOsqaNsEUxIc= - - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - hash2 - - XcbUAOiR+mlyNjnAHKIT2wpxx9i2fUTZwW0DUcKX1Ls= - - - Modules/OSInAppBrowserLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - hash2 - - ZRIr0BhSbP1XLPV56/Ogp3+yx0X6cqAOY8DzeytYR8E= - - - Modules/module.modulemap - - hash2 - - IQ6Ew+1iWwE9w/V3IQDI+mNzyu1Fv4Lz8d9HT6zvsHA= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Info.plist b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 303c185..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.outsystems.rd.inappbrowser.OSInAppBrowserLib - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - - diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/DWARF/OSInAppBrowserLib b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/DWARF/OSInAppBrowserLib deleted file mode 100644 index c508278..0000000 Binary files a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/DWARF/OSInAppBrowserLib and /dev/null differ diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSInAppBrowserLib.yml b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSInAppBrowserLib.yml deleted file mode 100644 index 13af0cb..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSInAppBrowserLib.yml +++ /dev/null @@ -1,493 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/rcj/Library/Developer/Xcode/DerivedData/OSInAppBrowserLib-exxamiccymxcjdabdfefbzmbgbsk/Build/Intermediates.noindex/ArchiveIntermediates/OSInAppBrowserLib/InstallationBuildProductsLocation/Library/Frameworks/OSInAppBrowserLib.framework/OSInAppBrowserLib' -relocations: - - { offsetInCU: 0x34, offset: 0x58025, size: 0x8, addend: 0x0, symName: _OSInAppBrowserLibVersionString, symObjAddr: 0x0, symBinAddr: 0x153E0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x5805A, size: 0x8, addend: 0x0, symName: _OSInAppBrowserLibVersionNumber, symObjAddr: 0x40, symBinAddr: 0x15420, symSize: 0x0 } - - { offsetInCU: 0x46, offset: 0x580B6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineVACyxq_q0_GycfC', symObjAddr: 0x0, symBinAddr: 0x4010, symSize: 0x4 } - - { offsetInCU: 0x83, offset: 0x580F3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineV012openExternalC0_14routerDelegate_y10Foundation3URLV_xySbctF', symObjAddr: 0x4, symBinAddr: 0x4014, symSize: 0x98 } - - { offsetInCU: 0xE0, offset: 0x58150, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineV010openSystemC0_14routerDelegate_y10Foundation3URLV_q_ySo16UIViewControllerCctF', symObjAddr: 0xE4, symBinAddr: 0x40F4, symSize: 0x98 } - - { offsetInCU: 0x13D, offset: 0x581AD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineV11openWebView_14routerDelegate_y10Foundation3URLV_q0_ySo16UIViewControllerCctF', symObjAddr: 0x1A0, symBinAddr: 0x41B0, symSize: 0x98 } - - { offsetInCU: 0x1A6, offset: 0x58216, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SbIegn_TRTA', symObjAddr: 0xC0, symBinAddr: 0x40D0, symSize: 0x24 } - - { offsetInCU: 0x1DA, offset: 0x5824A, size: 0x8, addend: 0x0, symName: '_$sSo16UIViewControllerCIegg_ABIegn_TRTA', symObjAddr: 0x17C, symBinAddr: 0x418C, symSize: 0x24 } - - { offsetInCU: 0x203, offset: 0x58273, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineVMi', symObjAddr: 0x238, symBinAddr: 0x4248, symSize: 0x8 } - - { offsetInCU: 0x217, offset: 0x58287, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineVMa', symObjAddr: 0x240, symBinAddr: 0x4250, symSize: 0xC } - - { offsetInCU: 0x278, offset: 0x582E8, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaMa', symObjAddr: 0x4A0, symBinAddr: 0x449C, symSize: 0x54 } - - { offsetInCU: 0x28C, offset: 0x582FC, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x560, symBinAddr: 0x455C, symSize: 0x24 } - - { offsetInCU: 0x2A0, offset: 0x58310, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x584, symBinAddr: 0x4580, symSize: 0x24 } - - { offsetInCU: 0x2B4, offset: 0x58324, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSQWb', symObjAddr: 0x5A8, symBinAddr: 0x45A4, symSize: 0x24 } - - { offsetInCU: 0x358, offset: 0x583C8, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromF1C_6resulty01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x260, symBinAddr: 0x4268, symSize: 0x4 } - - { offsetInCU: 0x378, offset: 0x583E8, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromF1C_6resulty01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x260, symBinAddr: 0x4268, symSize: 0x4 } - - { offsetInCU: 0x39E, offset: 0x5840E, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromF1C_6resultSb01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x264, symBinAddr: 0x426C, symSize: 0x4 } - - { offsetInCU: 0x3BE, offset: 0x5842E, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromF1C_6resultSb01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x264, symBinAddr: 0x426C, symSize: 0x4 } - - { offsetInCU: 0x3EA, offset: 0x5845A, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromF1Cyx01_F5CTypeQzSgFZTW', symObjAddr: 0x268, symBinAddr: 0x4270, symSize: 0x40 } - - { offsetInCU: 0x468, offset: 0x584D8, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2F0, symBinAddr: 0x42F8, symSize: 0x40 } - - { offsetInCU: 0x4EC, offset: 0x5855C, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x330, symBinAddr: 0x4338, symSize: 0x70 } - - { offsetInCU: 0x57F, offset: 0x585EF, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x3AC, symBinAddr: 0x43A8, symSize: 0x88 } - - { offsetInCU: 0x600, offset: 0x58670, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toghI0s0hI0VSgyFTW', symObjAddr: 0x4F4, symBinAddr: 0x44F0, symSize: 0x6C } - - { offsetInCU: 0x628, offset: 0x58698, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo38UIApplicationOpenExternalURLOptionsKeya_Tgq5Tf4nnd_n', symObjAddr: 0x5CC, symBinAddr: 0x45C8, symSize: 0x80 } - - { offsetInCU: 0x6B9, offset: 0x58729, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo38UIApplicationOpenExternalURLOptionsKeya_Tgq5Tf4nnd_n', symObjAddr: 0x64C, symBinAddr: 0x4648, symSize: 0x90 } - - { offsetInCU: 0x7AA, offset: 0x5881A, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSYSCSY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x434, symBinAddr: 0x4430, symSize: 0x44 } - - { offsetInCU: 0x7D3, offset: 0x58843, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSYSCSY8rawValue03RawG0QzvgTW', symObjAddr: 0x478, symBinAddr: 0x4474, symSize: 0x28 } - - { offsetInCU: 0x2B, offset: 0x58A03, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfC', symObjAddr: 0x0, symBinAddr: 0x4724, symSize: 0xE0 } - - { offsetInCU: 0x5E, offset: 0x58A36, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfC', symObjAddr: 0x0, symBinAddr: 0x4724, symSize: 0xE0 } - - { offsetInCU: 0x92, offset: 0x58A6A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfc', symObjAddr: 0xE0, symBinAddr: 0x4804, symSize: 0x78 } - - { offsetInCU: 0xC4, offset: 0x58A9C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0OtcfC', symObjAddr: 0x158, symBinAddr: 0x487C, symSize: 0x2C } - - { offsetInCU: 0x123, offset: 0x58AFB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0Otcfc', symObjAddr: 0x184, symBinAddr: 0x48A8, symSize: 0x2C } - - { offsetInCU: 0x168, offset: 0x58B40, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCfd', symObjAddr: 0x1CC, symBinAddr: 0x48F0, symSize: 0x24 } - - { offsetInCU: 0x1A3, offset: 0x58B7B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCfD', symObjAddr: 0x1F0, symBinAddr: 0x4914, symSize: 0x2C } - - { offsetInCU: 0x1E6, offset: 0x58BBE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfcTf4nnnnngnnnnnnnnnnn_n', symObjAddr: 0x21C, symBinAddr: 0x4940, symSize: 0x110 } - - { offsetInCU: 0x357, offset: 0x58D2F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCfE', symObjAddr: 0x1B0, symBinAddr: 0x48D4, symSize: 0x1C } - - { offsetInCU: 0x3DF, offset: 0x58DB7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCMa', symObjAddr: 0x32C, symBinAddr: 0x4A50, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x58F41, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwCP', symObjAddr: 0x0, symBinAddr: 0x4AD8, symSize: 0x2C } - - { offsetInCU: 0x57, offset: 0x58F55, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwxx', symObjAddr: 0x2C, symBinAddr: 0x4B04, symSize: 0x8 } - - { offsetInCU: 0x6B, offset: 0x58F69, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwcp', symObjAddr: 0x34, symBinAddr: 0x4B0C, symSize: 0x2C } - - { offsetInCU: 0x7F, offset: 0x58F7D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwca', symObjAddr: 0x60, symBinAddr: 0x4B38, symSize: 0x40 } - - { offsetInCU: 0x93, offset: 0x58F91, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0xA0, symBinAddr: 0x4B78, symSize: 0xC } - - { offsetInCU: 0xA7, offset: 0x58FA5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwta', symObjAddr: 0xAC, symBinAddr: 0x4B84, symSize: 0x30 } - - { offsetInCU: 0xBB, offset: 0x58FB9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwet', symObjAddr: 0xDC, symBinAddr: 0x4BB4, symSize: 0x48 } - - { offsetInCU: 0xCF, offset: 0x58FCD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwst', symObjAddr: 0x124, symBinAddr: 0x4BFC, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x58FE1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVMa', symObjAddr: 0x160, symBinAddr: 0x4C38, symSize: 0x10 } - - { offsetInCU: 0xF7, offset: 0x58FF5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x170, symBinAddr: 0x4C48, symSize: 0x10 } - - { offsetInCU: 0x16E, offset: 0x5906C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg', symObjAddr: 0x180, symBinAddr: 0x4C58, symSize: 0x210 } - - { offsetInCU: 0x2B9, offset: 0x591B7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_', symObjAddr: 0x390, symBinAddr: 0x4E68, symSize: 0x8A4 } - - { offsetInCU: 0x61A, offset: 0x59518, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_', symObjAddr: 0xC34, symBinAddr: 0x570C, symSize: 0x5C4 } - - { offsetInCU: 0x7C1, offset: 0x596BF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_A3_yXEfU_', symObjAddr: 0x11F8, symBinAddr: 0x5CD0, symSize: 0xD0 } - - { offsetInCU: 0x7FC, offset: 0x596FA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_yycAA0eF5ModelCcfu_yycfu0_', symObjAddr: 0x12C8, symBinAddr: 0x5DA0, symSize: 0x134 } - - { offsetInCU: 0x85B, offset: 0x59759, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvgyycfU0_', symObjAddr: 0x13FC, symBinAddr: 0x5ED4, symSize: 0x134 } - - { offsetInCU: 0x8D5, offset: 0x597D3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x1550, symBinAddr: 0x6028, symSize: 0x8 } - - { offsetInCU: 0xACB, offset: 0x599C9, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x1558, symBinAddr: 0x6030, symSize: 0x40 } - - { offsetInCU: 0xADF, offset: 0x599DD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvgyycfU0_TA', symObjAddr: 0x15BC, symBinAddr: 0x6094, symSize: 0x8 } - - { offsetInCU: 0xAF3, offset: 0x599F1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVAC7SwiftUI0F0AAWl', symObjAddr: 0x15D4, symBinAddr: 0x60AC, symSize: 0x44 } - - { offsetInCU: 0xB07, offset: 0x59A05, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_yycAA0eF5ModelCcfu_yycfu0_TA', symObjAddr: 0x166C, symBinAddr: 0x6144, symSize: 0x8 } - - { offsetInCU: 0xB1B, offset: 0x59A19, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_yycAA0eF5ModelCcfu3_yycfu4_TA', symObjAddr: 0x1738, symBinAddr: 0x6210, symSize: 0x34 } - - { offsetInCU: 0xB5A, offset: 0x59A58, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_A3_yXEfU_TA', symObjAddr: 0x176C, symBinAddr: 0x6244, symSize: 0x8 } - - { offsetInCU: 0xB6E, offset: 0x59A6C, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x1774, symBinAddr: 0x624C, symSize: 0x44 } - - { offsetInCU: 0xB82, offset: 0x59A80, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVWOb', symObjAddr: 0x1888, symBinAddr: 0x6360, symSize: 0x44 } - - { offsetInCU: 0xB96, offset: 0x59A94, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x18CC, symBinAddr: 0x63A4, symSize: 0x44 } - - { offsetInCU: 0xBAA, offset: 0x59AA8, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOe', symObjAddr: 0x1910, symBinAddr: 0x63E8, symSize: 0x10 } - - { offsetInCU: 0xBBE, offset: 0x59ABC, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyACyAA6VStackVyAA9TupleViewVyACyAA6HStackVyAGy17OSInAppBrowserLib015OSIABNavigationG0VSg_AA6SpacerVAA0G0PAAE11buttonStyleyQrqd__AA015PrimitiveButtonP0Rd__lFQOyAA0R0VyAA4TextVG_AA05PlainrP0VQo_tGGAA14_PaddingLayoutVGSg_AA012_ConditionalD0VyAJ010OSIABErrorG0VAJ08OSIABWebG13RepresentableVGACyALA3_GSgtGGAA25_AppearanceActionModifierVGAJ28OSIABLayoutDirectionModifierVGACyxq_GAap2aPRzAA0G8ModifierR_rlWl', symObjAddr: 0x1924, symBinAddr: 0x63FC, symSize: 0x84 } - - { offsetInCU: 0xBD2, offset: 0x59AD0, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA6VStackVyAA9TupleViewVyACyAA6HStackVyAGy17OSInAppBrowserLib015OSIABNavigationG0VSg_AA6SpacerVAA0G0PAAE11buttonStyleyQrqd__AA015PrimitiveButtonP0Rd__lFQOyAA0R0VyAA4TextVG_AA05PlainrP0VQo_tGGAA14_PaddingLayoutVGSg_AA012_ConditionalD0VyAJ010OSIABErrorG0VAJ08OSIABWebG13RepresentableVGACyALA3_GSgtGGAA25_AppearanceActionModifierVGACyxq_GAap2aPRzAA0G8ModifierR_rlWl', symObjAddr: 0x19A8, symBinAddr: 0x6480, symSize: 0x84 } - - { offsetInCU: 0xE40, offset: 0x59D3E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x1530, symBinAddr: 0x6008, symSize: 0x4 } - - { offsetInCU: 0xE5C, offset: 0x59D5A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fJ7OutputsVAD11_GraphValueVyxG_AD01_fJ6InputsVtFZTW', symObjAddr: 0x1534, symBinAddr: 0x600C, symSize: 0x4 } - - { offsetInCU: 0xE78, offset: 0x59D76, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fjK6InputsV_tFZTW', symObjAddr: 0x1538, symBinAddr: 0x6010, symSize: 0x18 } - - { offsetInCU: 0x2B, offset: 0x59EC5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc', symObjAddr: 0x0, symBinAddr: 0x6598, symSize: 0x18 } - - { offsetInCU: 0x4F, offset: 0x59EE9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc', symObjAddr: 0x0, symBinAddr: 0x6598, symSize: 0x18 } - - { offsetInCU: 0x80, offset: 0x59F1A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsCfd', symObjAddr: 0x18, symBinAddr: 0x65B0, symSize: 0x8 } - - { offsetInCU: 0xE5, offset: 0x59F7F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0OtcfC', symObjAddr: 0x20, symBinAddr: 0x65B8, symSize: 0x48 } - - { offsetInCU: 0x136, offset: 0x59FD0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsCfD', symObjAddr: 0x68, symBinAddr: 0x6600, symSize: 0x10 } - - { offsetInCU: 0x166, offset: 0x5A000, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsCMa', symObjAddr: 0x78, symBinAddr: 0x6610, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x5A119, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwCP', symObjAddr: 0x0, symBinAddr: 0x6644, symSize: 0xB0 } - - { offsetInCU: 0x57, offset: 0x5A12D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwxx', symObjAddr: 0xB0, symBinAddr: 0x66F4, symSize: 0x48 } - - { offsetInCU: 0x6B, offset: 0x5A141, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwcp', symObjAddr: 0xF8, symBinAddr: 0x673C, symSize: 0x88 } - - { offsetInCU: 0x7F, offset: 0x5A155, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwca', symObjAddr: 0x180, symBinAddr: 0x67C4, symSize: 0x98 } - - { offsetInCU: 0x93, offset: 0x5A169, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOWOh', symObjAddr: 0x218, symBinAddr: 0x685C, symSize: 0x3C } - - { offsetInCU: 0xA7, offset: 0x5A17D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwtk', symObjAddr: 0x268, symBinAddr: 0x68AC, symSize: 0x88 } - - { offsetInCU: 0xBB, offset: 0x5A191, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwta', symObjAddr: 0x2F0, symBinAddr: 0x6934, symSize: 0x98 } - - { offsetInCU: 0xCF, offset: 0x5A1A5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwet', symObjAddr: 0x388, symBinAddr: 0x69CC, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x5A1B9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwst', symObjAddr: 0x394, symBinAddr: 0x69D8, symSize: 0xC } - - { offsetInCU: 0xF7, offset: 0x5A1CD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwug', symObjAddr: 0x3A0, symBinAddr: 0x69E4, symSize: 0x4 } - - { offsetInCU: 0x10B, offset: 0x5A1E1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwup', symObjAddr: 0x3A4, symBinAddr: 0x69E8, symSize: 0x4 } - - { offsetInCU: 0x11F, offset: 0x5A1F5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwui', symObjAddr: 0x3A8, symBinAddr: 0x69EC, symSize: 0x10 } - - { offsetInCU: 0x133, offset: 0x5A209, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOMr', symObjAddr: 0x3B8, symBinAddr: 0x69FC, symSize: 0x6C } - - { offsetInCU: 0x147, offset: 0x5A21D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwCP', symObjAddr: 0x424, symBinAddr: 0x6A68, symSize: 0xB8 } - - { offsetInCU: 0x15B, offset: 0x5A231, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwxx', symObjAddr: 0x4DC, symBinAddr: 0x6B20, symSize: 0x58 } - - { offsetInCU: 0x16F, offset: 0x5A245, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwcp', symObjAddr: 0x534, symBinAddr: 0x6B78, symSize: 0x90 } - - { offsetInCU: 0x183, offset: 0x5A259, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwca', symObjAddr: 0x5C4, symBinAddr: 0x6C08, symSize: 0xA0 } - - { offsetInCU: 0x197, offset: 0x5A26D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwtk', symObjAddr: 0x664, symBinAddr: 0x6CA8, symSize: 0x90 } - - { offsetInCU: 0x1AB, offset: 0x5A281, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwta', symObjAddr: 0x6F4, symBinAddr: 0x6D38, symSize: 0xA0 } - - { offsetInCU: 0x1BF, offset: 0x5A295, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwet', symObjAddr: 0x794, symBinAddr: 0x6DD8, symSize: 0xC } - - { offsetInCU: 0x1D3, offset: 0x5A2A9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwst', symObjAddr: 0x7DC, symBinAddr: 0x6E20, symSize: 0xC } - - { offsetInCU: 0x1E7, offset: 0x5A2BD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVMr', symObjAddr: 0x870, symBinAddr: 0x6EB4, symSize: 0x68 } - - { offsetInCU: 0x1FB, offset: 0x5A2D1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AA4BodyAdEP_AD0J0PWT', symObjAddr: 0x8D8, symBinAddr: 0x6F1C, symSize: 0x10 } - - { offsetInCU: 0x231, offset: 0x5A307, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV4body7contentQr7SwiftUI05_ViewG8_ContentVyACG_tF', symObjAddr: 0x8E8, symBinAddr: 0x6F2C, symSize: 0x1F0 } - - { offsetInCU: 0x2CA, offset: 0x5A3A0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP4body7content4BodyQzAD01_jG8_ContentVyxG_tFTW', symObjAddr: 0xB64, symBinAddr: 0x71A8, symSize: 0x4 } - - { offsetInCU: 0x2E7, offset: 0x5A3BD, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI17EnvironmentValuesV15layoutDirectionAA06LayoutF0OvpACTk', symObjAddr: 0xAD8, symBinAddr: 0x711C, symSize: 0x6C } - - { offsetInCU: 0x2FF, offset: 0x5A3D5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOWOc', symObjAddr: 0xBA8, symBinAddr: 0x71AC, symSize: 0x44 } - - { offsetInCU: 0x313, offset: 0x5A3E9, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI30_EnvironmentKeyWritingModifierVyAA15LayoutDirectionOGWOc', symObjAddr: 0xC10, symBinAddr: 0x7214, symSize: 0x48 } - - { offsetInCU: 0x327, offset: 0x5A3FD, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI30_EnvironmentKeyWritingModifierVyAA15LayoutDirectionOGWOh', symObjAddr: 0xC58, symBinAddr: 0x725C, symSize: 0x40 } - - { offsetInCU: 0x33B, offset: 0x5A411, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA014_ViewModifier_D0Vy17OSInAppBrowserLib020OSIABLayoutDirectionF0VGAA022_EnvironmentKeyWritingF0VyAA06LayoutL0OGGACyxq_GAA0E0A2aQRzAA0eF0R_rlWl', symObjAddr: 0xC9C, symBinAddr: 0x72A0, symSize: 0x9C } - - { offsetInCU: 0x3B1, offset: 0x5A487, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP05_makeJ08modifier6inputs4bodyAD01_J7OutputsVAD11_GraphValueVyxG_AD01_J6InputsVAlD01_P0V_AQtctFZTW', symObjAddr: 0xB44, symBinAddr: 0x7188, symSize: 0x4 } - - { offsetInCU: 0x3CD, offset: 0x5A4A3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP05_makeJ4List8modifier6inputs4bodyAD01_jL7OutputsVAD11_GraphValueVyxG_AD01_jL6InputsVAlD01_Q0V_AQtctFZTW', symObjAddr: 0xB48, symBinAddr: 0x718C, symSize: 0x4 } - - { offsetInCU: 0x3E9, offset: 0x5A4BF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP14_viewListCount6inputs4bodySiSgAD01_jlM6InputsV_AjLXEtFZTW', symObjAddr: 0xB4C, symBinAddr: 0x7190, symSize: 0x18 } - - { offsetInCU: 0x43, offset: 0x5A5FD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwCP', symObjAddr: 0x0, symBinAddr: 0x737C, symSize: 0x124 } - - { offsetInCU: 0x57, offset: 0x5A611, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwxx', symObjAddr: 0x124, symBinAddr: 0x74A0, symSize: 0x7C } - - { offsetInCU: 0x6B, offset: 0x5A625, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwcp', symObjAddr: 0x1A0, symBinAddr: 0x751C, symSize: 0xF8 } - - { offsetInCU: 0x7F, offset: 0x5A639, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwca', symObjAddr: 0x298, symBinAddr: 0x7614, symSize: 0x130 } - - { offsetInCU: 0x93, offset: 0x5A64D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwtk', symObjAddr: 0x3C8, symBinAddr: 0x7744, symSize: 0xD0 } - - { offsetInCU: 0xA7, offset: 0x5A661, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwta', symObjAddr: 0x498, symBinAddr: 0x7814, symSize: 0x108 } - - { offsetInCU: 0xBB, offset: 0x5A675, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwet', symObjAddr: 0x5A0, symBinAddr: 0x791C, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x5A689, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwst', symObjAddr: 0x628, symBinAddr: 0x79A4, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x5A69D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVMa', symObjAddr: 0x6A8, symBinAddr: 0x7A24, symSize: 0x3C } - - { offsetInCU: 0xF7, offset: 0x5A6B1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVMr', symObjAddr: 0x6E4, symBinAddr: 0x7A60, symSize: 0x9C } - - { offsetInCU: 0x10B, offset: 0x5A6C5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x780, symBinAddr: 0x7AFC, symSize: 0x10 } - - { offsetInCU: 0x13C, offset: 0x5A6F6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV4bodyQrvg', symObjAddr: 0x790, symBinAddr: 0x7B0C, symSize: 0x230 } - - { offsetInCU: 0x1F6, offset: 0x5A7B0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAaeFP4body4BodyQzvgTW', symObjAddr: 0x9C8, symBinAddr: 0x7D44, symSize: 0x38 } - - { offsetInCU: 0x255, offset: 0x5A80F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV4bodyQrvg7SwiftUI05TupleF0VyAGyAE0F0PAAE15layoutDirectionyQrAA011OSIABLayoutL4EnumOFQOyAE6HStackVyAGyAA0E6Button33_E6EE006C509F907B5BFD0901EE702BEBLLV_AQtGG_Qo__AE6SpacerVtGSg_AiEE5frame8minWidth10idealWidth8maxWidth9minHeight11idealHeight9maxHeight9alignmentQr12CoreGraphics7CGFloatVSg_A8_A8_A8_A8_A8_AE9AlignmentVtFQOyAiEE16allowsHitTestingyQrSbFQOyAiEE9lineLimityQrSiSgFQOyAE4TextV_Qo__Qo__Qo_SgtGyXEfU_', symObjAddr: 0xA00, symBinAddr: 0x7D7C, symSize: 0x7A8 } - - { offsetInCU: 0x365, offset: 0x5A91F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV4bodyQrvg7SwiftUI05TupleF0VyAGyAE0F0PAAE15layoutDirectionyQrAA011OSIABLayoutL4EnumOFQOyAE6HStackVyAGyAA0E6Button33_E6EE006C509F907B5BFD0901EE702BEBLLV_AQtGG_Qo__AE6SpacerVtGSg_AiEE5frame8minWidth10idealWidth8maxWidth9minHeight11idealHeight9maxHeight9alignmentQr12CoreGraphics7CGFloatVSg_A8_A8_A8_A8_A8_AE9AlignmentVtFQOyAiEE16allowsHitTestingyQrSbFQOyAiEE9lineLimityQrSiSgFQOyAE4TextV_Qo__Qo__Qo_SgtGyXEfU_ARyXEfU_', symObjAddr: 0x11A8, symBinAddr: 0x8524, symSize: 0xA0 } - - { offsetInCU: 0x3F8, offset: 0x5A9B2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x146C, symBinAddr: 0x87E8, symSize: 0x54 } - - { offsetInCU: 0x499, offset: 0x5AA53, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyACyACyAA4TextVAA30_EnvironmentKeyWritingModifierVySiSgGGAA017_AllowsHitTestingI0VGAA16_FlexFrameLayoutVGSgWOy', symObjAddr: 0x15B0, symBinAddr: 0x8898, symSize: 0x3C } - - { offsetInCU: 0x4AD, offset: 0x5AA67, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOy', symObjAddr: 0x15EC, symBinAddr: 0x88D4, symSize: 0x10 } - - { offsetInCU: 0x4C1, offset: 0x5AA7B, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyACyACyAA4TextVAA30_EnvironmentKeyWritingModifierVySiSgGGAA017_AllowsHitTestingI0VGAA16_FlexFrameLayoutVGSgWOe', symObjAddr: 0x15FC, symBinAddr: 0x88E4, symSize: 0x3C } - - { offsetInCU: 0x4D5, offset: 0x5AA8F, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOb', symObjAddr: 0x1738, symBinAddr: 0x8A20, symSize: 0x3C } - - { offsetInCU: 0x4E9, offset: 0x5AAA3, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOr', symObjAddr: 0x1774, symBinAddr: 0x8A5C, symSize: 0x30 } - - { offsetInCU: 0x4FD, offset: 0x5AAB7, size: 0x8, addend: 0x0, symName: '_$sSay7SwiftUI4TextV8ModifierOGWOr', symObjAddr: 0x17A4, symBinAddr: 0x8A8C, symSize: 0x28 } - - { offsetInCU: 0x511, offset: 0x5AACB, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI30_EnvironmentKeyWritingModifierVySiSgGWOr', symObjAddr: 0x17CC, symBinAddr: 0x8AB4, symSize: 0x28 } - - { offsetInCU: 0x525, offset: 0x5AADF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwCP', symObjAddr: 0x17F4, symBinAddr: 0x8ADC, symSize: 0x30 } - - { offsetInCU: 0x539, offset: 0x5AAF3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwxx', symObjAddr: 0x1824, symBinAddr: 0x8B0C, symSize: 0x28 } - - { offsetInCU: 0x54D, offset: 0x5AB07, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwcp', symObjAddr: 0x184C, symBinAddr: 0x8B34, symSize: 0x44 } - - { offsetInCU: 0x561, offset: 0x5AB1B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwca', symObjAddr: 0x1890, symBinAddr: 0x8B78, symSize: 0x6C } - - { offsetInCU: 0x575, offset: 0x5AB2F, size: 0x8, addend: 0x0, symName: ___swift_memcpy33_8, symObjAddr: 0x18FC, symBinAddr: 0x8BE4, symSize: 0x14 } - - { offsetInCU: 0x589, offset: 0x5AB43, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwta', symObjAddr: 0x1910, symBinAddr: 0x8BF8, symSize: 0x4C } - - { offsetInCU: 0x59D, offset: 0x5AB57, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwet', symObjAddr: 0x195C, symBinAddr: 0x8C44, symSize: 0x48 } - - { offsetInCU: 0x5B1, offset: 0x5AB6B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwst', symObjAddr: 0x19A4, symBinAddr: 0x8C8C, symSize: 0x44 } - - { offsetInCU: 0x5C5, offset: 0x5AB7F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVMa', symObjAddr: 0x19E8, symBinAddr: 0x8CD0, symSize: 0x10 } - - { offsetInCU: 0x5D9, offset: 0x5AB93, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAA4BodyAeFP_AHWT', symObjAddr: 0x1A68, symBinAddr: 0x8D0C, symSize: 0x10 } - - { offsetInCU: 0x5ED, offset: 0x5ABA7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV4bodyQrvg7SwiftUI5ImageVyXEfU_TA', symObjAddr: 0x1A78, symBinAddr: 0x8D1C, symSize: 0x44 } - - { offsetInCU: 0x62B, offset: 0x5ABE5, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI16PlainButtonStyleVAcA09PrimitivedE0AAWl', symObjAddr: 0x1ABC, symBinAddr: 0x8D60, symSize: 0x48 } - - { offsetInCU: 0x64A, offset: 0x5AC04, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4ViewPAAE8disabledyQrSbFySbzcfU_TA', symObjAddr: 0x1B64, symBinAddr: 0x8E08, symSize: 0x18 } - - { offsetInCU: 0x673, offset: 0x5AC2D, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA4ViewPAAE11buttonStyleyQrqd__AA015PrimitiveButtonG0Rd__lFQOyAA0I0VyAA5ImageVG_AA05PlainiG0VQo_AA32_EnvironmentKeyTransformModifierVySbGGACyxq_GAad2aDRzAA0eO0R_rlWl', symObjAddr: 0x1BC4, symBinAddr: 0x8E68, symSize: 0xE4 } - - { offsetInCU: 0x756, offset: 0x5AD10, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAaeFP05_makeQ04view6inputsAE01_Q7OutputsVAE11_GraphValueVyxG_AE01_Q6InputsVtFZTW', symObjAddr: 0x9C0, symBinAddr: 0x7D3C, symSize: 0x4 } - - { offsetInCU: 0x772, offset: 0x5AD2C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAaeFP05_makeQ4List4view6inputsAE01_qS7OutputsVAE11_GraphValueVyxG_AE01_qS6InputsVtFZTW', symObjAddr: 0x9C4, symBinAddr: 0x7D40, symSize: 0x4 } - - { offsetInCU: 0x83D, offset: 0x5ADF7, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4ViewPAAE5frame8minWidth05idealF003maxF00E6Height0gI00hI09alignmentQr12CoreGraphics7CGFloatVSg_A5oA9AlignmentVtFAA15ModifiedContentVyASyAA4TextVAA30_EnvironmentKeyWritingModifierVySiSgGGAA017_AllowsHitTestingU0VG_Tg5', symObjAddr: 0x1248, symBinAddr: 0x85C4, symSize: 0x204 } - - { offsetInCU: 0x897, offset: 0x5AE51, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x144C, symBinAddr: 0x87C8, symSize: 0x4 } - - { offsetInCU: 0x8B3, offset: 0x5AE6D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fJ7OutputsVAD11_GraphValueVyxG_AD01_fJ6InputsVtFZTW', symObjAddr: 0x1450, symBinAddr: 0x87CC, symSize: 0x4 } - - { offsetInCU: 0x8CF, offset: 0x5AE89, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fjK6InputsV_tFZTW', symObjAddr: 0x1454, symBinAddr: 0x87D0, symSize: 0x18 } - - { offsetInCU: 0x27, offset: 0x5AFD1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0x8F90, symSize: 0x50 } - - { offsetInCU: 0x4B, offset: 0x5AFF5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvpZ', symObjAddr: 0x468, symBinAddr: 0x22CA8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5B00F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0x8F90, symSize: 0x50 } - - { offsetInCU: 0x9D, offset: 0x5B047, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueACSgSS_tcfC', symObjAddr: 0x5C, symBinAddr: 0x8FEC, symSize: 0x80 } - - { offsetInCU: 0xC8, offset: 0x5B072, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvg', symObjAddr: 0x11C, symBinAddr: 0x906C, symSize: 0x30 } - - { offsetInCU: 0xF3, offset: 0x5B09D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1B8, symBinAddr: 0x9108, symSize: 0xC } - - { offsetInCU: 0x10F, offset: 0x5B0B9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1C4, symBinAddr: 0x9114, symSize: 0x24 } - - { offsetInCU: 0x13D, offset: 0x5B0E7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValue_WZ', symObjAddr: 0x50, symBinAddr: 0x8FE0, symSize: 0xC } - - { offsetInCU: 0x157, offset: 0x5B101, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASQWb', symObjAddr: 0x158, symBinAddr: 0x90A8, symSize: 0x4 } - - { offsetInCU: 0x16B, offset: 0x5B115, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOACSQAAWl', symObjAddr: 0x15C, symBinAddr: 0x90AC, symSize: 0x44 } - - { offsetInCU: 0x17F, offset: 0x5B129, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x1E8, symBinAddr: 0x9138, symSize: 0xC } - - { offsetInCU: 0x193, offset: 0x5B13D, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x1F4, symBinAddr: 0x9144, symSize: 0x4 } - - { offsetInCU: 0x1A7, offset: 0x5B151, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwet', symObjAddr: 0x1F8, symBinAddr: 0x9148, symSize: 0x90 } - - { offsetInCU: 0x1BB, offset: 0x5B165, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwst', symObjAddr: 0x288, symBinAddr: 0x91D8, symSize: 0xBC } - - { offsetInCU: 0x1CF, offset: 0x5B179, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwug', symObjAddr: 0x344, symBinAddr: 0x9294, symSize: 0x8 } - - { offsetInCU: 0x1E3, offset: 0x5B18D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwup', symObjAddr: 0x34C, symBinAddr: 0x929C, symSize: 0x4 } - - { offsetInCU: 0x1F7, offset: 0x5B1A1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwui', symObjAddr: 0x350, symBinAddr: 0x92A0, symSize: 0xC } - - { offsetInCU: 0x20B, offset: 0x5B1B5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOMa', symObjAddr: 0x35C, symBinAddr: 0x92AC, symSize: 0x10 } - - { offsetInCU: 0x235, offset: 0x5B1DF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14C, symBinAddr: 0x909C, symSize: 0xC } - - { offsetInCU: 0x251, offset: 0x5B1FB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASH9hashValueSivgTW', symObjAddr: 0x1A0, symBinAddr: 0x90F0, symSize: 0x8 } - - { offsetInCU: 0x26D, offset: 0x5B217, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A8, symBinAddr: 0x90F8, symSize: 0x8 } - - { offsetInCU: 0x289, offset: 0x5B233, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1B0, symBinAddr: 0x9100, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x5B35F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerP10clearCacheyyyycSgF', symObjAddr: 0x0, symBinAddr: 0x92BC, symSize: 0x4 } - - { offsetInCU: 0x5F, offset: 0x5B37B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerPAAE10clearCacheyyyycSgF', symObjAddr: 0x4, symBinAddr: 0x92C0, symSize: 0x8 } - - { offsetInCU: 0xA9, offset: 0x5B3C5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerP17clearSessionCacheyyyycSgF', symObjAddr: 0xC, symBinAddr: 0x92C8, symSize: 0x4 } - - { offsetInCU: 0xC5, offset: 0x5B3E1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerPAAE17clearSessionCacheyyyycSgF', symObjAddr: 0x10, symBinAddr: 0x92CC, symSize: 0x8 } - - { offsetInCU: 0x11B, offset: 0x5B437, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV9dataStoreACSo013WKWebsiteDataI0C_tcfC', symObjAddr: 0x18, symBinAddr: 0x92D4, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x5B50D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF033_5C90474E0718C79AB93258AA826B5964LL18sessionCookiesOnly_ySb_yycSgtF6deleteL_yySaySo12NSHTTPCookieCG_AGtF', symObjAddr: 0x20, symBinAddr: 0x92DC, symSize: 0x18C } - - { offsetInCU: 0x344, offset: 0x5B660, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF033_5C90474E0718C79AB93258AA826B5964LL18sessionCookiesOnly_ySb_yycSgtF6deleteL_yySaySo12NSHTTPCookieCG_AGtFyycfU_', symObjAddr: 0x1AC, symBinAddr: 0x9468, symSize: 0x1B0 } - - { offsetInCU: 0x6D2, offset: 0x5B9EE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF033_5C90474E0718C79AB93258AA826B5964LL18sessionCookiesOnly_ySb_yycSgtFySaySo12NSHTTPCookieCGcfU_', symObjAddr: 0x35C, symBinAddr: 0x9618, symSize: 0x304 } - - { offsetInCU: 0xA63, offset: 0x5BD7F, size: 0x8, addend: 0x0, symName: '_$sSaySo12NSHTTPCookieCGIegg_So7NSArrayCIeyBy_TR', symObjAddr: 0x660, symBinAddr: 0x991C, symSize: 0x5C } - - { offsetInCU: 0xA7B, offset: 0x5BD97, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x6E4, symBinAddr: 0x99A0, symSize: 0x10 } - - { offsetInCU: 0xA8F, offset: 0x5BDAB, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x6F4, symBinAddr: 0x99B0, symSize: 0x8 } - - { offsetInCU: 0xAA3, offset: 0x5BDBF, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x6FC, symBinAddr: 0x99B8, symSize: 0x10 } - - { offsetInCU: 0xAB7, offset: 0x5BDD3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerVMa', symObjAddr: 0x98C, symBinAddr: 0x9C48, symSize: 0x10 } - - { offsetInCU: 0xACB, offset: 0x5BDE7, size: 0x8, addend: 0x0, symName: '_$sSo12NSHTTPCookieCMa', symObjAddr: 0x9F0, symBinAddr: 0x9CAC, symSize: 0x3C } - - { offsetInCU: 0xADF, offset: 0x5BDFB, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0xA2C, symBinAddr: 0x9CE8, symSize: 0x1C } - - { offsetInCU: 0xB4F, offset: 0x5BE6B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0xA48, symBinAddr: 0x9D04, symSize: 0x130 } - - { offsetInCU: 0xCC6, offset: 0x5BFE2, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVySo12NSHTTPCookieCG_Tg5', symObjAddr: 0xB80, symBinAddr: 0x9E3C, symSize: 0xE4 } - - { offsetInCU: 0xE1F, offset: 0x5C13B, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo12NSHTTPCookieC_Tg5Tf4d_n', symObjAddr: 0xC64, symBinAddr: 0x9F20, symSize: 0x54 } - - { offsetInCU: 0xF4E, offset: 0x5C26A, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSo12NSHTTPCookieC_s10ArraySliceVyAEGTg5Tf4nd_n', symObjAddr: 0xCF8, symBinAddr: 0x9F74, symSize: 0xD0 } - - { offsetInCU: 0x27, offset: 0x5C50C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xA0BC, symSize: 0x50 } - - { offsetInCU: 0x4B, offset: 0x5C530, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvpZ', symObjAddr: 0x468, symBinAddr: 0x22CD8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5C54A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xA0BC, symSize: 0x50 } - - { offsetInCU: 0x9D, offset: 0x5C582, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueACSgSS_tcfC', symObjAddr: 0x60, symBinAddr: 0xA11C, symSize: 0x6C } - - { offsetInCU: 0xC8, offset: 0x5C5AD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvg', symObjAddr: 0x10C, symBinAddr: 0xA188, symSize: 0x24 } - - { offsetInCU: 0xEF, offset: 0x5C5D4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x19C, symBinAddr: 0xA218, symSize: 0xC } - - { offsetInCU: 0x10B, offset: 0x5C5F0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1A8, symBinAddr: 0xA224, symSize: 0x24 } - - { offsetInCU: 0x139, offset: 0x5C61E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValue_WZ', symObjAddr: 0x50, symBinAddr: 0xA10C, symSize: 0x10 } - - { offsetInCU: 0x153, offset: 0x5C638, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASQWb', symObjAddr: 0x13C, symBinAddr: 0xA1B8, symSize: 0x4 } - - { offsetInCU: 0x167, offset: 0x5C64C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOACSQAAWl', symObjAddr: 0x140, symBinAddr: 0xA1BC, symSize: 0x44 } - - { offsetInCU: 0x17B, offset: 0x5C660, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwet', symObjAddr: 0x1DC, symBinAddr: 0xA248, symSize: 0x90 } - - { offsetInCU: 0x18F, offset: 0x5C674, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwst', symObjAddr: 0x26C, symBinAddr: 0xA2D8, symSize: 0xBC } - - { offsetInCU: 0x1A3, offset: 0x5C688, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwug', symObjAddr: 0x328, symBinAddr: 0xA394, symSize: 0x8 } - - { offsetInCU: 0x1B7, offset: 0x5C69C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwup', symObjAddr: 0x330, symBinAddr: 0xA39C, symSize: 0x4 } - - { offsetInCU: 0x1CB, offset: 0x5C6B0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwui', symObjAddr: 0x334, symBinAddr: 0xA3A0, symSize: 0x8 } - - { offsetInCU: 0x1DF, offset: 0x5C6C4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOMa', symObjAddr: 0x33C, symBinAddr: 0xA3A8, symSize: 0x10 } - - { offsetInCU: 0x209, offset: 0x5C6EE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130, symBinAddr: 0xA1AC, symSize: 0xC } - - { offsetInCU: 0x225, offset: 0x5C70A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASH9hashValueSivgTW', symObjAddr: 0x184, symBinAddr: 0xA200, symSize: 0x8 } - - { offsetInCU: 0x241, offset: 0x5C726, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x18C, symBinAddr: 0xA208, symSize: 0x8 } - - { offsetInCU: 0x25D, offset: 0x5C742, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x194, symBinAddr: 0xA210, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x5C870, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABApplicationDelegatePAAE4open_7options17completionHandlery10Foundation3URLV_SDySo38UIApplicationOpenExternalURLOptionsKeyaypGySbcSgtF', symObjAddr: 0x0, symBinAddr: 0xA3B8, symSize: 0x8 } - - { offsetInCU: 0x83, offset: 0x5C8B0, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SbIeyBy_TR', symObjAddr: 0x15C, symBinAddr: 0xA514, symSize: 0x3C } - - { offsetInCU: 0xD1, offset: 0x5C8FE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfC', symObjAddr: 0x198, symBinAddr: 0xA550, symSize: 0x3C } - - { offsetInCU: 0x118, offset: 0x5C945, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfc', symObjAddr: 0x1D4, symBinAddr: 0xA58C, symSize: 0xC } - - { offsetInCU: 0x13F, offset: 0x5C96C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterC10handleOpenyy10Foundation3URLV_ySbctF', symObjAddr: 0x1E0, symBinAddr: 0xA598, symSize: 0xD0 } - - { offsetInCU: 0x1F3, offset: 0x5CA20, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCfd', symObjAddr: 0x2B0, symBinAddr: 0xA668, symSize: 0x1C } - - { offsetInCU: 0x22E, offset: 0x5CA5B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCfD', symObjAddr: 0x2CC, symBinAddr: 0xA684, symSize: 0x24 } - - { offsetInCU: 0x2AF, offset: 0x5CADC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCAA11OSIABRouterA2aDP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctFTW', symObjAddr: 0x2F0, symBinAddr: 0xA6A8, symSize: 0x130 } - - { offsetInCU: 0x442, offset: 0x5CC6F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCMa', symObjAddr: 0x524, symBinAddr: 0xA8DC, symSize: 0x20 } - - { offsetInCU: 0x456, offset: 0x5CC83, size: 0x8, addend: 0x0, symName: '_$sSbIegn_SbIegy_TRTA', symObjAddr: 0x588, symBinAddr: 0xA940, symSize: 0x30 } - - { offsetInCU: 0x47F, offset: 0x5CCAC, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaABSHSCWl', symObjAddr: 0x5B8, symBinAddr: 0xA970, symSize: 0x48 } - - { offsetInCU: 0x493, offset: 0x5CCC0, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x600, symBinAddr: 0xA9B8, symSize: 0x10 } - - { offsetInCU: 0x4A7, offset: 0x5CCD4, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x610, symBinAddr: 0xA9C8, symSize: 0x8 } - - { offsetInCU: 0x4BB, offset: 0x5CCE8, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeya_yptWOc', symObjAddr: 0x658, symBinAddr: 0xA9D0, symSize: 0x48 } - - { offsetInCU: 0x4CF, offset: 0x5CCFC, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x6A0, symBinAddr: 0xAA18, symSize: 0x10 } - - { offsetInCU: 0x55B, offset: 0x5CD88, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSo38UIApplicationOpenExternalURLOptionsKeya_ypTg5Tf4gd_n', symObjAddr: 0x420, symBinAddr: 0xA7D8, symSize: 0xF4 } - - { offsetInCU: 0x6A5, offset: 0x5CED2, size: 0x8, addend: 0x0, symName: '_$sSo13UIApplicationC17OSInAppBrowserLib24OSIABApplicationDelegateA2cDP10canOpenURLySb10Foundation0J0VFTW', symObjAddr: 0x8, symBinAddr: 0xA3C0, symSize: 0x4C } - - { offsetInCU: 0x6D6, offset: 0x5CF03, size: 0x8, addend: 0x0, symName: '_$sSo13UIApplicationC17OSInAppBrowserLib24OSIABApplicationDelegateA2cDP4open_7options17completionHandlery10Foundation3URLV_SDySo0A25OpenExternalURLOptionsKeyaypGySbcSgtFTW', symObjAddr: 0x54, symBinAddr: 0xA40C, symSize: 0x4 } - - { offsetInCU: 0x6F2, offset: 0x5CF1F, size: 0x8, addend: 0x0, symName: '_$sSo13UIApplicationC4open_7options17completionHandlery10Foundation3URLV_SDySo0A25OpenExternalURLOptionsKeyaypGySbcSgtFTO', symObjAddr: 0x58, symBinAddr: 0xA410, symSize: 0x104 } - - { offsetInCU: 0x2B, offset: 0x5D077, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVMa', symObjAddr: 0x0, symBinAddr: 0xAA28, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x5D08F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVMa', symObjAddr: 0x0, symBinAddr: 0xAA28, symSize: 0x10 } - - { offsetInCU: 0x57, offset: 0x5D0A3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AaD0F0PWb', symObjAddr: 0x10, symBinAddr: 0xAA38, symSize: 0x4 } - - { offsetInCU: 0x90, offset: 0x5D0DC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP04makeJ07context0J4TypeQzAD0jG7ContextVyxG_tFTW', symObjAddr: 0x58, symBinAddr: 0xAA3C, symSize: 0x8 } - - { offsetInCU: 0xC2, offset: 0x5D10E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP06updateJ0_7contexty0J4TypeQz_AD0jG7ContextVyxGtFTW', symObjAddr: 0x60, symBinAddr: 0xAA44, symSize: 0x4 } - - { offsetInCU: 0xDF, offset: 0x5D12B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0xD0, symBinAddr: 0xAAB4, symSize: 0xC } - - { offsetInCU: 0xF3, offset: 0x5D13F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVAC7SwiftUI06UIViewG0AAWl', symObjAddr: 0x1B8, symBinAddr: 0xAB9C, symSize: 0x44 } - - { offsetInCU: 0x176, offset: 0x5D1C2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP09dismantleJ0_11coordinatory0J4TypeQz_11CoordinatorQztFZTW', symObjAddr: 0x64, symBinAddr: 0xAA48, symSize: 0x4 } - - { offsetInCU: 0x192, offset: 0x5D1DE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP15makeCoordinator0L0QzyFTW', symObjAddr: 0x68, symBinAddr: 0xAA4C, symSize: 0x4 } - - { offsetInCU: 0x1AE, offset: 0x5D1FA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP011_identifiedF4Tree2inAD011_IdentifiedfL0O0J4TypeQz_tFTW', symObjAddr: 0x6C, symBinAddr: 0xAA50, symSize: 0x4 } - - { offsetInCU: 0x1CA, offset: 0x5D216, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP12sizeThatFits_02uiF07contextSo6CGSizeVSgAD08ProposedF4SizeV_0J4TypeQzAD0jG7ContextVyxGtFTW', symObjAddr: 0x70, symBinAddr: 0xAA54, symSize: 0x30 } - - { offsetInCU: 0x1E6, offset: 0x5D232, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP21_overrideSizeThatFits_2in02uiF0ySo6CGSizeVz_AD09_ProposedL0V0J4TypeQztFTW', symObjAddr: 0xA0, symBinAddr: 0xAA84, symSize: 0x4 } - - { offsetInCU: 0x202, offset: 0x5D24E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP21_overrideLayoutTraits_3foryAD01_lM0Vz_0J4TypeQztFTW', symObjAddr: 0xA4, symBinAddr: 0xAA88, symSize: 0x4 } - - { offsetInCU: 0x21E, offset: 0x5D26A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP014_modifyBridgedF6InputsyyAD01_fM0VzFZTW', symObjAddr: 0xA8, symBinAddr: 0xAA8C, symSize: 0x14 } - - { offsetInCU: 0x23A, offset: 0x5D286, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP14_layoutOptionsyAD09_Platformfg6LayoutL0V0J4TypeQzFZTW', symObjAddr: 0xBC, symBinAddr: 0xAAA0, symSize: 0x14 } - - { offsetInCU: 0x256, offset: 0x5D2A2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0xDC, symBinAddr: 0xAAC0, symSize: 0x50 } - - { offsetInCU: 0x272, offset: 0x5D2BE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fK7OutputsVAD11_GraphValueVyxG_AD01_fK6InputsVtFZTW', symObjAddr: 0x12C, symBinAddr: 0xAB10, symSize: 0x50 } - - { offsetInCU: 0x28E, offset: 0x5D2DA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fkL6InputsV_tFZTW', symObjAddr: 0x17C, symBinAddr: 0xAB60, symSize: 0x18 } - - { offsetInCU: 0x2AA, offset: 0x5D2F6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x194, symBinAddr: 0xAB78, symSize: 0x24 } - - { offsetInCU: 0x27, offset: 0x5D3F3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValue_WZ', symObjAddr: 0x0, symBinAddr: 0xABE0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x5D417, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvpZ', symObjAddr: 0x460, symBinAddr: 0x22DC0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5D431, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvgZ', symObjAddr: 0x10, symBinAddr: 0xABF0, symSize: 0x50 } - - { offsetInCU: 0x9D, offset: 0x5D469, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueACSgSS_tcfC', symObjAddr: 0x60, symBinAddr: 0xAC40, symSize: 0x6C } - - { offsetInCU: 0xC8, offset: 0x5D494, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvg', symObjAddr: 0x10C, symBinAddr: 0xACAC, symSize: 0x20 } - - { offsetInCU: 0xF3, offset: 0x5D4BF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x198, symBinAddr: 0xAD38, symSize: 0xC } - - { offsetInCU: 0x10F, offset: 0x5D4DB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1A4, symBinAddr: 0xAD44, symSize: 0x24 } - - { offsetInCU: 0x12C, offset: 0x5D4F8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValue_WZ', symObjAddr: 0x0, symBinAddr: 0xABE0, symSize: 0x10 } - - { offsetInCU: 0x157, offset: 0x5D523, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASQWb', symObjAddr: 0x138, symBinAddr: 0xACD8, symSize: 0x4 } - - { offsetInCU: 0x16B, offset: 0x5D537, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOACSQAAWl', symObjAddr: 0x13C, symBinAddr: 0xACDC, symSize: 0x44 } - - { offsetInCU: 0x17F, offset: 0x5D54B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwet', symObjAddr: 0x1D8, symBinAddr: 0xAD68, symSize: 0x90 } - - { offsetInCU: 0x193, offset: 0x5D55F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwst', symObjAddr: 0x268, symBinAddr: 0xADF8, symSize: 0xBC } - - { offsetInCU: 0x1A7, offset: 0x5D573, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwug', symObjAddr: 0x324, symBinAddr: 0xAEB4, symSize: 0x8 } - - { offsetInCU: 0x1BB, offset: 0x5D587, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwup', symObjAddr: 0x32C, symBinAddr: 0xAEBC, symSize: 0x4 } - - { offsetInCU: 0x1CF, offset: 0x5D59B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwui', symObjAddr: 0x330, symBinAddr: 0xAEC0, symSize: 0x8 } - - { offsetInCU: 0x1E3, offset: 0x5D5AF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOMa', symObjAddr: 0x338, symBinAddr: 0xAEC8, symSize: 0x10 } - - { offsetInCU: 0x20D, offset: 0x5D5D9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x12C, symBinAddr: 0xACCC, symSize: 0xC } - - { offsetInCU: 0x229, offset: 0x5D5F5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASH9hashValueSivgTW', symObjAddr: 0x180, symBinAddr: 0xAD20, symSize: 0x8 } - - { offsetInCU: 0x245, offset: 0x5D611, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x188, symBinAddr: 0xAD28, symSize: 0x8 } - - { offsetInCU: 0x261, offset: 0x5D62D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x190, symBinAddr: 0xAD30, symSize: 0x8 } - - { offsetInCU: 0x27, offset: 0x5D745, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xAED8, symSize: 0x50 } - - { offsetInCU: 0x4B, offset: 0x5D769, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvpZ', symObjAddr: 0x910, symBinAddr: 0x22DD0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5D783, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xAED8, symSize: 0x50 } - - { offsetInCU: 0xC6, offset: 0x5D7E4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueACSgSS_tcfC', symObjAddr: 0x4B4, symBinAddr: 0xB38C, symSize: 0x6C } - - { offsetInCU: 0xF1, offset: 0x5D80F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvg', symObjAddr: 0x560, symBinAddr: 0xB3F8, symSize: 0x24 } - - { offsetInCU: 0x10C, offset: 0x5D82A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x5F0, symBinAddr: 0xB488, symSize: 0xC } - - { offsetInCU: 0x128, offset: 0x5D846, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x5FC, symBinAddr: 0xB494, symSize: 0x24 } - - { offsetInCU: 0x1C5, offset: 0x5D8E3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValue_WZ', symObjAddr: 0x4A8, symBinAddr: 0xB380, symSize: 0xC } - - { offsetInCU: 0x1DF, offset: 0x5D8FD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASQWb', symObjAddr: 0x590, symBinAddr: 0xB428, symSize: 0x4 } - - { offsetInCU: 0x1F3, offset: 0x5D911, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOACSQAAWl', symObjAddr: 0x594, symBinAddr: 0xB42C, symSize: 0x44 } - - { offsetInCU: 0x207, offset: 0x5D925, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwet', symObjAddr: 0x630, symBinAddr: 0xB4B8, symSize: 0x90 } - - { offsetInCU: 0x21B, offset: 0x5D939, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwst', symObjAddr: 0x6C0, symBinAddr: 0xB548, symSize: 0xBC } - - { offsetInCU: 0x22F, offset: 0x5D94D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwug', symObjAddr: 0x77C, symBinAddr: 0xB604, symSize: 0x8 } - - { offsetInCU: 0x243, offset: 0x5D961, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwup', symObjAddr: 0x784, symBinAddr: 0xB60C, symSize: 0x4 } - - { offsetInCU: 0x257, offset: 0x5D975, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwui', symObjAddr: 0x788, symBinAddr: 0xB610, symSize: 0x8 } - - { offsetInCU: 0x26B, offset: 0x5D989, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOMa', symObjAddr: 0x790, symBinAddr: 0xB618, symSize: 0x10 } - - { offsetInCU: 0x2D7, offset: 0x5D9F5, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x50, symBinAddr: 0xAF28, symSize: 0x74 } - - { offsetInCU: 0x388, offset: 0x5DAA6, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0xC4, symBinAddr: 0xAF9C, symSize: 0x68 } - - { offsetInCU: 0x462, offset: 0x5DB80, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x12C, symBinAddr: 0xB004, symSize: 0x68 } - - { offsetInCU: 0x545, offset: 0x5DC63, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x194, symBinAddr: 0xB06C, symSize: 0x68 } - - { offsetInCU: 0x5E3, offset: 0x5DD01, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x1FC, symBinAddr: 0xB0D4, symSize: 0x4C } - - { offsetInCU: 0x60C, offset: 0x5DD2A, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x248, symBinAddr: 0xB120, symSize: 0x40 } - - { offsetInCU: 0x669, offset: 0x5DD87, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x288, symBinAddr: 0xB160, symSize: 0x44 } - - { offsetInCU: 0x6C4, offset: 0x5DDE2, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0x2CC, symBinAddr: 0xB1A4, symSize: 0x40 } - - { offsetInCU: 0x721, offset: 0x5DE3F, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0x30C, symBinAddr: 0xB1E4, symSize: 0x64 } - - { offsetInCU: 0x79D, offset: 0x5DEBB, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x370, symBinAddr: 0xB248, symSize: 0x64 } - - { offsetInCU: 0x822, offset: 0x5DF40, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x3D4, symBinAddr: 0xB2AC, symSize: 0x64 } - - { offsetInCU: 0x89E, offset: 0x5DFBC, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x438, symBinAddr: 0xB310, symSize: 0x70 } - - { offsetInCU: 0x8F1, offset: 0x5E00F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x584, symBinAddr: 0xB41C, symSize: 0xC } - - { offsetInCU: 0x90D, offset: 0x5E02B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASH9hashValueSivgTW', symObjAddr: 0x5D8, symBinAddr: 0xB470, symSize: 0x8 } - - { offsetInCU: 0x929, offset: 0x5E047, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E0, symBinAddr: 0xB478, symSize: 0x8 } - - { offsetInCU: 0x93D, offset: 0x5E05B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E8, symBinAddr: 0xB480, symSize: 0x8 } - - { offsetInCU: 0x4F, offset: 0x5E191, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url10Foundation3URLVvg', symObjAddr: 0x0, symBinAddr: 0xB628, symSize: 0x64 } - - { offsetInCU: 0xB6, offset: 0x5E1F8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC4$url7Combine9PublishedV9PublisherVy10Foundation3URLV_GvM', symObjAddr: 0x64, symBinAddr: 0xB68C, symSize: 0xC8 } - - { offsetInCU: 0x158, offset: 0x5E29A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC10$isLoading7Combine9PublishedV9PublisherVySb_GvM', symObjAddr: 0x144, symBinAddr: 0xB76C, symSize: 0xC8 } - - { offsetInCU: 0x1B2, offset: 0x5E2F4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC5errors5Error_pSgvg', symObjAddr: 0x210, symBinAddr: 0xB838, symSize: 0x70 } - - { offsetInCU: 0x219, offset: 0x5E35B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC18$backButtonEnabled7Combine9PublishedV9PublisherVySb_GvM', symObjAddr: 0x294, symBinAddr: 0xB8BC, symSize: 0xC8 } - - { offsetInCU: 0x2BB, offset: 0x5E3FD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC21$forwardButtonEnabled7Combine9PublishedV9PublisherVySb_GvM', symObjAddr: 0x3DC, symBinAddr: 0xBA04, symSize: 0xC8 } - - { offsetInCU: 0x315, offset: 0x5E457, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC12addressLabelSSvg', symObjAddr: 0x4A8, symBinAddr: 0xBAD0, symSize: 0x70 } - - { offsetInCU: 0x37C, offset: 0x5E4BE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC13$addressLabel7Combine9PublishedV9PublisherVySS_GvM', symObjAddr: 0x518, symBinAddr: 0xBB40, symSize: 0xC8 } - - { offsetInCU: 0x3D6, offset: 0x5E518, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url___02uiG015callbackHandlerAC10Foundation3URLV_So05WKWebF13ConfigurationCSbSSSgAA0eF7UIModelVAA0ef8CallbackK0Vtcfc', symObjAddr: 0x710, symBinAddr: 0xBD38, symSize: 0x624 } - - { offsetInCU: 0x601, offset: 0x5E743, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC13setupBindings33_9465A02ABBCEE1A843D14F7D6FC63749LLyySb_S2btF', symObjAddr: 0xD34, symBinAddr: 0xC35C, symSize: 0x4AC } - - { offsetInCU: 0x67D, offset: 0x5E7BF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC13setupBindings33_9465A02ABBCEE1A843D14F7D6FC63749LLyySb_S2btF10Foundation3URLVSgAIcfU_', symObjAddr: 0x1268, symBinAddr: 0xC890, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x5E808, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCACycfcTo', symObjAddr: 0x1270, symBinAddr: 0xC898, symSize: 0x2C } - - { offsetInCU: 0x72D, offset: 0x5E86F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCfD', symObjAddr: 0x129C, symBinAddr: 0xC8C4, symSize: 0x34 } - - { offsetInCU: 0x923, offset: 0x5EA65, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC3url10Foundation3URLVSgvpABTK', symObjAddr: 0x11E0, symBinAddr: 0xC808, symSize: 0x88 } - - { offsetInCU: 0x951, offset: 0x5EA93, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCfETo', symObjAddr: 0x12D0, symBinAddr: 0xC8F8, symSize: 0x158 } - - { offsetInCU: 0x980, offset: 0x5EAC2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCMU', symObjAddr: 0x1428, symBinAddr: 0xCA50, symSize: 0x8 } - - { offsetInCU: 0x994, offset: 0x5EAD6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCMa', symObjAddr: 0x1430, symBinAddr: 0xCA58, symSize: 0x3C } - - { offsetInCU: 0x9A8, offset: 0x5EAEA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCMr', symObjAddr: 0x146C, symBinAddr: 0xCA94, symSize: 0x11C } - - { offsetInCU: 0x9BC, offset: 0x5EAFE, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVy10Foundation3URLVGMa', symObjAddr: 0x1588, symBinAddr: 0xCBB0, symSize: 0x54 } - - { offsetInCU: 0x9D0, offset: 0x5EB12, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVys5Error_pSgGMa', symObjAddr: 0x15DC, symBinAddr: 0xCC04, symSize: 0x58 } - - { offsetInCU: 0x9F3, offset: 0x5EB35, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_15decidePolicyFor15decisionHandlerySo05WKWebF0C_So18WKNavigationActionCySo0opJ0VctFTo', symObjAddr: 0x16F8, symBinAddr: 0xCCDC, symSize: 0xA8 } - - { offsetInCU: 0xA34, offset: 0x5EB76, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_9didFinishySo05WKWebF0C_So12WKNavigationCSgtFTo', symObjAddr: 0x17A0, symBinAddr: 0xCD84, symSize: 0x70 } - - { offsetInCU: 0xAD2, offset: 0x5EC14, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCyyctFTo', symObjAddr: 0x18F0, symBinAddr: 0xCED4, symSize: 0x138 } - - { offsetInCU: 0xBC7, offset: 0x5ED09, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCySbctFTo', symObjAddr: 0x1A28, symBinAddr: 0xD00C, symSize: 0x1A0 } - - { offsetInCU: 0xCFD, offset: 0x5EE3F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo17UIAlertControllerC_SbtcfU_', symObjAddr: 0x1BC8, symBinAddr: 0xD1AC, symSize: 0x19C } - - { offsetInCU: 0xE58, offset: 0x5EF9A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU2_', symObjAddr: 0x1D64, symBinAddr: 0xD348, symSize: 0x50 } - - { offsetInCU: 0xEA2, offset: 0x5EFE4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFTo', symObjAddr: 0x1E08, symBinAddr: 0xD3EC, symSize: 0x110 } - - { offsetInCU: 0xED4, offset: 0x5F016, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC7Combine16ObservableObjectAA0J19WillChangePublisherAdEP_AD0M0PWT', symObjAddr: 0x1F18, symBinAddr: 0xD4FC, symSize: 0xC } - - { offsetInCU: 0xEE8, offset: 0x5F02A, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TR', symObjAddr: 0x1F24, symBinAddr: 0xD508, symSize: 0x44 } - - { offsetInCU: 0xF00, offset: 0x5F042, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TRTA', symObjAddr: 0x1F8C, symBinAddr: 0xD570, symSize: 0x8 } - - { offsetInCU: 0xF14, offset: 0x5F056, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url10Foundation3URLVvpACTK', symObjAddr: 0x1F94, symBinAddr: 0xD578, symSize: 0x68 } - - { offsetInCU: 0xF41, offset: 0x5F083, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url10Foundation3URLVvpACTk', symObjAddr: 0x1FFC, symBinAddr: 0xD5E0, symSize: 0xE4 } - - { offsetInCU: 0xF7B, offset: 0x5F0BD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC12addressLabelSSvpACTK', symObjAddr: 0x20E0, symBinAddr: 0xD6C4, symSize: 0x7C } - - { offsetInCU: 0xFA0, offset: 0x5F0E2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC12addressLabelSSvpACTk', symObjAddr: 0x215C, symBinAddr: 0xD740, symSize: 0x80 } - - { offsetInCU: 0xFD8, offset: 0x5F11A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC5errors5Error_pSgvpACTK', symObjAddr: 0x21DC, symBinAddr: 0xD7C0, symSize: 0x7C } - - { offsetInCU: 0xFFD, offset: 0x5F13F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC5errors5Error_pSgvpACTk', symObjAddr: 0x2258, symBinAddr: 0xD83C, symSize: 0x78 } - - { offsetInCU: 0x1049, offset: 0x5F18B, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x2404, symBinAddr: 0xD9E8, symSize: 0x80 } - - { offsetInCU: 0x10E7, offset: 0x5F229, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x2484, symBinAddr: 0xDA68, symSize: 0x64 } - - { offsetInCU: 0x114A, offset: 0x5F28C, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x24E8, symBinAddr: 0xDACC, symSize: 0x174 } - - { offsetInCU: 0x11C7, offset: 0x5F309, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x265C, symBinAddr: 0xDC40, symSize: 0xE0 } - - { offsetInCU: 0x12CB, offset: 0x5F40D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_15decidePolicyFor15decisionHandlerySo05WKWebF0C_So18WKNavigationActionCySo0opJ0VctF06$sSo24opJ16VIeyBy_ABIegy_TRALIeyBy_Tf1nncn_nTf4nnng_n', symObjAddr: 0x2960, symBinAddr: 0xDF44, symSize: 0x7D4 } - - { offsetInCU: 0x1472, offset: 0x5F5B4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_9didFinishySo05WKWebF0C_So12WKNavigationCSgtFTf4ddn_n', symObjAddr: 0x3134, symBinAddr: 0xE718, symSize: 0x98 } - - { offsetInCU: 0x1575, offset: 0x5F6B7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF033_9465A02ABBCEE1A843D14F7D6FC63749LL_19didFailedNavigation4withySo05WKWebF0C_SSs5Error_ptFTf4dnnn_n', symObjAddr: 0x31CC, symBinAddr: 0xE7B0, symSize: 0x208 } - - { offsetInCU: 0x1767, offset: 0x5F8A9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC21createAlertController33_9465A02ABBCEE1A843D14F7D6FC63749LL12withBodyText15okButtonHandler06cancelvW0So07UIAlertJ0CSS_yAJcyAJcSgtFTf4nnnd_n', symObjAddr: 0x33D4, symBinAddr: 0xE9B8, symSize: 0x428 } - - { offsetInCU: 0x188D, offset: 0x5F9CF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFTf4dnndnn_n', symObjAddr: 0x37FC, symBinAddr: 0xEDE0, symSize: 0x1B4 } - - { offsetInCU: 0x192F, offset: 0x5FA71, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo17UIAlertControllerC_SbtcfU_TA', symObjAddr: 0x39D4, symBinAddr: 0xEFB8, symSize: 0x8 } - - { offsetInCU: 0x1943, offset: 0x5FA85, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU2_TA', symObjAddr: 0x3A10, symBinAddr: 0xEFF4, symSize: 0x8 } - - { offsetInCU: 0x1957, offset: 0x5FA99, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x3A18, symBinAddr: 0xEFFC, symSize: 0x10 } - - { offsetInCU: 0x196B, offset: 0x5FAAD, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x3A28, symBinAddr: 0xF00C, symSize: 0x8 } - - { offsetInCU: 0x197F, offset: 0x5FAC1, size: 0x8, addend: 0x0, symName: '_$sSo17UIAlertControllerCIegg_SgWOy', symObjAddr: 0x3AD4, symBinAddr: 0xF078, symSize: 0x10 } - - { offsetInCU: 0x1993, offset: 0x5FAD5, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x3AE4, symBinAddr: 0xF088, symSize: 0x3C } - - { offsetInCU: 0x19B2, offset: 0x5FAF4, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x3B20, symBinAddr: 0xF0C4, symSize: 0x14 } - - { offsetInCU: 0x1A0D, offset: 0x5FB4F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCySbctFySo17UIAlertControllerC_SbtcfU_TA', symObjAddr: 0x3B34, symBinAddr: 0xF0D8, symSize: 0x3C } - - { offsetInCU: 0x1A55, offset: 0x5FB97, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0x3BA0, symBinAddr: 0xF144, symSize: 0x8 } - - { offsetInCU: 0x1A8F, offset: 0x5FBD1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCyyctFySo17UIAlertControllerCcfU_TA', symObjAddr: 0x3BA8, symBinAddr: 0xF14C, symSize: 0x38 } - - { offsetInCU: 0x1ACD, offset: 0x5FC0F, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOc', symObjAddr: 0x3BE8, symBinAddr: 0xF18C, symSize: 0x48 } - - { offsetInCU: 0x1AE1, offset: 0x5FC23, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACSQAAWl', symObjAddr: 0x3C6C, symBinAddr: 0xF210, symSize: 0x48 } - - { offsetInCU: 0x1AF5, offset: 0x5FC37, size: 0x8, addend: 0x0, symName: _keypath_get_selector_isLoading, symObjAddr: 0x3CB4, symBinAddr: 0xF258, symSize: 0xC } - - { offsetInCU: 0x1B09, offset: 0x5FC4B, size: 0x8, addend: 0x0, symName: _keypath_get_selector_URL, symObjAddr: 0x3CF0, symBinAddr: 0xF294, symSize: 0xC } - - { offsetInCU: 0x1B1D, offset: 0x5FC5F, size: 0x8, addend: 0x0, symName: _keypath_get_selector_canGoBack, symObjAddr: 0x3D68, symBinAddr: 0xF30C, symSize: 0xC } - - { offsetInCU: 0x1B31, offset: 0x5FC73, size: 0x8, addend: 0x0, symName: _keypath_get_selector_canGoForward, symObjAddr: 0x3DA4, symBinAddr: 0xF348, symSize: 0xC } - - { offsetInCU: 0x1F25, offset: 0x60067, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC7Combine16ObservableObjectAadEP16objectWillChange0jlM9PublisherQzvgTW', symObjAddr: 0x16BC, symBinAddr: 0xCCA0, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x601A1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfC', symObjAddr: 0x0, symBinAddr: 0xF494, symSize: 0x14 } - - { offsetInCU: 0x4B, offset: 0x601C5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfC', symObjAddr: 0x0, symBinAddr: 0xF494, symSize: 0x14 } - - { offsetInCU: 0xBB, offset: 0x60235, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwCP', symObjAddr: 0x14, symBinAddr: 0xF4A8, symSize: 0x30 } - - { offsetInCU: 0xCF, offset: 0x60249, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwxx', symObjAddr: 0x44, symBinAddr: 0xF4D8, symSize: 0x38 } - - { offsetInCU: 0xE3, offset: 0x6025D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwcp', symObjAddr: 0x7C, symBinAddr: 0xF510, symSize: 0x64 } - - { offsetInCU: 0xF7, offset: 0x60271, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwca', symObjAddr: 0xE0, symBinAddr: 0xF574, symSize: 0x8C } - - { offsetInCU: 0x10B, offset: 0x60285, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x16C, symBinAddr: 0xF600, symSize: 0x14 } - - { offsetInCU: 0x11F, offset: 0x60299, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwta', symObjAddr: 0x180, symBinAddr: 0xF614, symSize: 0x64 } - - { offsetInCU: 0x133, offset: 0x602AD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwet', symObjAddr: 0x1E4, symBinAddr: 0xF678, symSize: 0x48 } - - { offsetInCU: 0x147, offset: 0x602C1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwst', symObjAddr: 0x22C, symBinAddr: 0xF6C0, symSize: 0x50 } - - { offsetInCU: 0x15B, offset: 0x602D5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVMa', symObjAddr: 0x27C, symBinAddr: 0xF710, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x60417, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwCP', symObjAddr: 0x0, symBinAddr: 0xF720, symSize: 0xF4 } - - { offsetInCU: 0x57, offset: 0x6042B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwxx', symObjAddr: 0xF4, symBinAddr: 0xF814, symSize: 0x74 } - - { offsetInCU: 0x6B, offset: 0x6043F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwcp', symObjAddr: 0x168, symBinAddr: 0xF888, symSize: 0xC8 } - - { offsetInCU: 0x7F, offset: 0x60453, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwca', symObjAddr: 0x230, symBinAddr: 0xF950, symSize: 0xE8 } - - { offsetInCU: 0x93, offset: 0x60467, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwtk', symObjAddr: 0x318, symBinAddr: 0xFA38, symSize: 0xA8 } - - { offsetInCU: 0xA7, offset: 0x6047B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwta', symObjAddr: 0x3C0, symBinAddr: 0xFAE0, symSize: 0xD8 } - - { offsetInCU: 0xBB, offset: 0x6048F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwet', symObjAddr: 0x498, symBinAddr: 0xFBB8, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x604A3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwst', symObjAddr: 0x520, symBinAddr: 0xFC40, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x604B7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVMa', symObjAddr: 0x5A0, symBinAddr: 0xFCC0, symSize: 0x3C } - - { offsetInCU: 0xF7, offset: 0x604CB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVMr', symObjAddr: 0x5DC, symBinAddr: 0xFCFC, symSize: 0x80 } - - { offsetInCU: 0x10B, offset: 0x604DF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x65C, symBinAddr: 0xFD7C, symSize: 0x10 } - - { offsetInCU: 0x145, offset: 0x60519, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_', symObjAddr: 0x66C, symBinAddr: 0xFD8C, symSize: 0x378 } - - { offsetInCU: 0x1F8, offset: 0x605CC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_A1_yXEfU_AYyXEfU_', symObjAddr: 0x9E4, symBinAddr: 0x10104, symSize: 0x138 } - - { offsetInCU: 0x29C, offset: 0x60670, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_A1_yXEfU_AYyXEfU_AWyXEfU_', symObjAddr: 0xB1C, symBinAddr: 0x1023C, symSize: 0x154 } - - { offsetInCU: 0x2F5, offset: 0x606C9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0xC90, symBinAddr: 0x103B0, symSize: 0x140 } - - { offsetInCU: 0x414, offset: 0x607E8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_A1_yXEfU_AYyXEfU_TA', symObjAddr: 0xE20, symBinAddr: 0x104F0, symSize: 0x8 } - - { offsetInCU: 0x428, offset: 0x607FC, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA6HStackVyAA9TupleViewVyAA5ImageV_AA4TextVtGG17OSInAppBrowserLib28OSIABLayoutDirectionModifierVGACyxq_GAA0G0A2aSRzAA0gP0R_rlWl', symObjAddr: 0xE28, symBinAddr: 0x104F8, symSize: 0x9C } - - { offsetInCU: 0x43C, offset: 0x60810, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA6VStackVyAA9TupleViewVyAA4TextV_AA6HStackVyAA0G0PAAE11buttonStyleyQrqd__AA015PrimitiveButtonK0Rd__lFQOyAA0M0VyACyAKyAGyAA5ImageV_AItGG17OSInAppBrowserLib28OSIABLayoutDirectionModifierVGG_AA05PlainmK0VQo_GAA6SpacerVtGGAA14_PaddingLayoutVGACyxq_GAal2aLRzAA0gU0R_rlWl', symObjAddr: 0x10A0, symBinAddr: 0x1071C, symSize: 0x84 } - - { offsetInCU: 0x571, offset: 0x60945, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0xC70, symBinAddr: 0x10390, symSize: 0x4 } - - { offsetInCU: 0x58D, offset: 0x60961, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fJ7OutputsVAD11_GraphValueVyxG_AD01_fJ6InputsVtFZTW', symObjAddr: 0xC74, symBinAddr: 0x10394, symSize: 0x4 } - - { offsetInCU: 0x5A9, offset: 0x6097D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fjK6InputsV_tFZTW', symObjAddr: 0xC78, symBinAddr: 0x10398, symSize: 0x18 } - - { offsetInCU: 0x2B, offset: 0x60AC8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwCP', symObjAddr: 0x0, symBinAddr: 0x107E0, symSize: 0x48 } - - { offsetInCU: 0x43, offset: 0x60AE0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwCP', symObjAddr: 0x0, symBinAddr: 0x107E0, symSize: 0x48 } - - { offsetInCU: 0x57, offset: 0x60AF4, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI11StateObjectV7StorageOy17OSInAppBrowserLib17OSIABWebViewModelC_GWOy', symObjAddr: 0x48, symBinAddr: 0x10828, symSize: 0x10 } - - { offsetInCU: 0x6B, offset: 0x60B08, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwxx', symObjAddr: 0x58, symBinAddr: 0x10838, symSize: 0x10 } - - { offsetInCU: 0x7F, offset: 0x60B1C, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI11StateObjectV7StorageOy17OSInAppBrowserLib17OSIABWebViewModelC_GWOe', symObjAddr: 0x68, symBinAddr: 0x10848, symSize: 0x10 } - - { offsetInCU: 0x93, offset: 0x60B30, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwcp', symObjAddr: 0x78, symBinAddr: 0x10858, symSize: 0x48 } - - { offsetInCU: 0xA7, offset: 0x60B44, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwca', symObjAddr: 0xC0, symBinAddr: 0x108A0, symSize: 0x54 } - - { offsetInCU: 0xBB, offset: 0x60B58, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x114, symBinAddr: 0x108F4, symSize: 0x14 } - - { offsetInCU: 0xCF, offset: 0x60B6C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwta', symObjAddr: 0x128, symBinAddr: 0x10908, symSize: 0x44 } - - { offsetInCU: 0xE3, offset: 0x60B80, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwet', symObjAddr: 0x16C, symBinAddr: 0x1094C, symSize: 0x48 } - - { offsetInCU: 0xF7, offset: 0x60B94, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwst', symObjAddr: 0x1B4, symBinAddr: 0x10994, symSize: 0x44 } - - { offsetInCU: 0x10B, offset: 0x60BA8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVMa', symObjAddr: 0x1F8, symBinAddr: 0x109D8, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x60BBC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x208, symBinAddr: 0x109E8, symSize: 0x10 } - - { offsetInCU: 0x202, offset: 0x60C9F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVyAcA0eF5ModelCcfcAEycfu_', symObjAddr: 0x448, symBinAddr: 0x10C28, symSize: 0x4 } - - { offsetInCU: 0x21A, offset: 0x60CB7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE15ignoresSafeArea_5edgesQrAE0mN7RegionsV_AE4EdgeO3SetVtFQOyAA0eF0V_Qo__AE08ProgressF0VyAE05EmptyF0VAXGSgtGyXEfU_', symObjAddr: 0x44C, symBinAddr: 0x10C2C, symSize: 0x274 } - - { offsetInCU: 0x3B0, offset: 0x60E4D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x6E0, symBinAddr: 0x10EC0, symSize: 0x68 } - - { offsetInCU: 0x4F9, offset: 0x60F96, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCAC7Combine16ObservableObjectAAWl', symObjAddr: 0x788, symBinAddr: 0x10F28, symSize: 0x48 } - - { offsetInCU: 0x50D, offset: 0x60FAA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC9isLoadingSbvpACTK', symObjAddr: 0x7D0, symBinAddr: 0x10F70, symSize: 0x7C } - - { offsetInCU: 0x532, offset: 0x60FCF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC9isLoadingSbvpACTk', symObjAddr: 0x850, symBinAddr: 0x10FF0, symSize: 0x70 } - - { offsetInCU: 0x568, offset: 0x61005, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI12ProgressViewVyAA05EmptyD0VAEGSgWOc', symObjAddr: 0x8C4, symBinAddr: 0x11064, symSize: 0x48 } - - { offsetInCU: 0x57C, offset: 0x61019, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI12ProgressViewVyAA05EmptyD0VAEGSgWOh', symObjAddr: 0x90C, symBinAddr: 0x110AC, symSize: 0x40 } - - { offsetInCU: 0x590, offset: 0x6102D, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI6ZStackVyAA9TupleViewVyAA15ModifiedContentVy17OSInAppBrowserLib08OSIABWebE0VAA30_SafeAreaRegionsIgnoringLayoutVG_AA08ProgressE0VyAA05EmptyE0VAQGSgtGGACyxGAA0E0AAWl', symObjAddr: 0x950, symBinAddr: 0x110F0, symSize: 0x4C } - - { offsetInCU: 0x5B5, offset: 0x61052, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x218, symBinAddr: 0x109F8, symSize: 0x94 } - - { offsetInCU: 0x608, offset: 0x610A5, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x2AC, symBinAddr: 0x10A8C, symSize: 0x84 } - - { offsetInCU: 0x697, offset: 0x61134, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x330, symBinAddr: 0x10B10, symSize: 0x94 } - - { offsetInCU: 0x726, offset: 0x611C3, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0x3C4, symBinAddr: 0x10BA4, symSize: 0x84 } - - { offsetInCU: 0x841, offset: 0x612DE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x6C0, symBinAddr: 0x10EA0, symSize: 0x4 } - - { offsetInCU: 0x85D, offset: 0x612FA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fK7OutputsVAD11_GraphValueVyxG_AD01_fK6InputsVtFZTW', symObjAddr: 0x6C4, symBinAddr: 0x10EA4, symSize: 0x4 } - - { offsetInCU: 0x879, offset: 0x61316, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fkL6InputsV_tFZTW', symObjAddr: 0x6C8, symBinAddr: 0x10EA8, symSize: 0x18 } - - { offsetInCU: 0x91, offset: 0x614E0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0VtcfC', symObjAddr: 0x0, symBinAddr: 0x1113C, symSize: 0xDC } - - { offsetInCU: 0xE9, offset: 0x61538, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0Vtcfc', symObjAddr: 0xDC, symBinAddr: 0x11218, symSize: 0xD0 } - - { offsetInCU: 0x126, offset: 0x61575, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF', symObjAddr: 0x230, symBinAddr: 0x1136C, symSize: 0x3A4 } - - { offsetInCU: 0x349, offset: 0x61798, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfC', symObjAddr: 0x5D4, symBinAddr: 0x11710, symSize: 0x20 } - - { offsetInCU: 0x367, offset: 0x617B6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfc', symObjAddr: 0x5F4, symBinAddr: 0x11730, symSize: 0x2C } - - { offsetInCU: 0x3CA, offset: 0x61819, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfcTo', symObjAddr: 0x620, symBinAddr: 0x1175C, symSize: 0x2C } - - { offsetInCU: 0x440, offset: 0x6188F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCAA11OSIABRouterA2aDP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctFTW', symObjAddr: 0x6D0, symBinAddr: 0x1180C, symSize: 0x50 } - - { offsetInCU: 0x472, offset: 0x618C1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF06$sSo16mN15CIegn_ABIegg_TRAIIegn_Tf1ncn_nTf4nng_n', symObjAddr: 0xC04, symBinAddr: 0x11D30, symSize: 0x3C0 } - - { offsetInCU: 0x6A5, offset: 0x61AF4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManager_pWOc', symObjAddr: 0x1AC, symBinAddr: 0x112E8, symSize: 0x44 } - - { offsetInCU: 0x6B9, offset: 0x61B08, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x1F0, symBinAddr: 0x1132C, symSize: 0x20 } - - { offsetInCU: 0x6CD, offset: 0x61B1C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCMa', symObjAddr: 0x210, symBinAddr: 0x1134C, symSize: 0x20 } - - { offsetInCU: 0x874, offset: 0x61CC3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC5coderADSgSo7NSCoderC_tcfcTo', symObjAddr: 0x7B0, symBinAddr: 0x118EC, symSize: 0x60 } - - { offsetInCU: 0x8ED, offset: 0x61D3C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC7dismiss8animated10completionySb_yycSgtFTo', symObjAddr: 0x810, symBinAddr: 0x1194C, symSize: 0x13C } - - { offsetInCU: 0x956, offset: 0x61DA5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC04rootF0AdA0eF7WrapperV_tcfC7SwiftUI09UIHostingG0CAeJyxGx_tcfCTV', symObjAddr: 0x9B4, symBinAddr: 0x11AF0, symSize: 0x2C } - - { offsetInCU: 0x9F6, offset: 0x61E45, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC5coder04rootF0ADSgSo7NSCoderC_AA0eF7WrapperVtcfC7SwiftUI09UIHostingG0CAefNyxGSgAI_xtcfCTV', symObjAddr: 0x9E0, symBinAddr: 0x11B1C, symSize: 0x2C } - - { offsetInCU: 0xBC5, offset: 0x62014, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCfETo', symObjAddr: 0x658, symBinAddr: 0x11794, symSize: 0x78 } - - { offsetInCU: 0xBF4, offset: 0x62043, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC32presentationControllerDidDismissyySo014UIPresentationJ0CF', symObjAddr: 0x720, symBinAddr: 0x1185C, symSize: 0x30 } - - { offsetInCU: 0xC43, offset: 0x62092, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC32presentationControllerDidDismissyySo014UIPresentationJ0CFTo', symObjAddr: 0x750, symBinAddr: 0x1188C, symSize: 0x60 } - - { offsetInCU: 0xC82, offset: 0x620D1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCfE', symObjAddr: 0x94C, symBinAddr: 0x11A88, symSize: 0x14 } - - { offsetInCU: 0xCAF, offset: 0x620FE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCfETo', symObjAddr: 0x9A0, symBinAddr: 0x11ADC, symSize: 0x14 } - - { offsetInCU: 0xCDE, offset: 0x6212D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVyAcA0eF5ModelCcfcAEycfu_TA', symObjAddr: 0xA30, symBinAddr: 0x11B6C, symSize: 0x8 } - - { offsetInCU: 0xCF2, offset: 0x62141, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCMa', symObjAddr: 0xA3C, symBinAddr: 0x11B78, symSize: 0x3C } - - { offsetInCU: 0xD06, offset: 0x62155, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0xA78, symBinAddr: 0x11BB4, symSize: 0x24 } - - { offsetInCU: 0xD1A, offset: 0x62169, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCMr', symObjAddr: 0xACC, symBinAddr: 0x11C08, symSize: 0x48 } - - { offsetInCU: 0xD2E, offset: 0x6217D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCMU', symObjAddr: 0xB14, symBinAddr: 0x11C50, symSize: 0x8 } - - { offsetInCU: 0xD42, offset: 0x62191, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC7dismiss8animated10completionySb_yycSgtFyycfU_TA', symObjAddr: 0xB50, symBinAddr: 0x11C8C, symSize: 0x50 } - - { offsetInCU: 0xD76, offset: 0x621C5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xBA0, symBinAddr: 0x11CDC, symSize: 0x10 } - - { offsetInCU: 0xD8A, offset: 0x621D9, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xBB0, symBinAddr: 0x11CEC, symSize: 0x8 } - - { offsetInCU: 0xD9E, offset: 0x621ED, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xBC8, symBinAddr: 0x11CF4, symSize: 0x10 } - - { offsetInCU: 0xDB2, offset: 0x62201, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0xBFC, symBinAddr: 0x11D28, symSize: 0x8 } - - { offsetInCU: 0x2B, offset: 0x62426, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfC', symObjAddr: 0x0, symBinAddr: 0x12138, symSize: 0x6C } - - { offsetInCU: 0xB5, offset: 0x624B0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfC', symObjAddr: 0x0, symBinAddr: 0x12138, symSize: 0x6C } - - { offsetInCU: 0x146, offset: 0x62541, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfc', symObjAddr: 0x6C, symBinAddr: 0x121A4, symSize: 0x28 } - - { offsetInCU: 0x1E1, offset: 0x625DC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0OtcfC', symObjAddr: 0x94, symBinAddr: 0x121CC, symSize: 0x2C } - - { offsetInCU: 0x240, offset: 0x6263B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0Otcfc', symObjAddr: 0xC0, symBinAddr: 0x121F8, symSize: 0x2C } - - { offsetInCU: 0x285, offset: 0x62680, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsCfd', symObjAddr: 0xEC, symBinAddr: 0x12224, symSize: 0x8 } - - { offsetInCU: 0x2B4, offset: 0x626AF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsCfD', symObjAddr: 0xF4, symBinAddr: 0x1222C, symSize: 0x10 } - - { offsetInCU: 0x33D, offset: 0x62738, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsCMa', symObjAddr: 0x104, symBinAddr: 0x1223C, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x62866, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x0, symBinAddr: 0x12270, symSize: 0x2C } - - { offsetInCU: 0x5B, offset: 0x6287E, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TR', symObjAddr: 0x2C, symBinAddr: 0x1229C, symSize: 0x8 } - - { offsetInCU: 0xBD, offset: 0x628E0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfC', symObjAddr: 0x34, symBinAddr: 0x122A4, symSize: 0x8C } - - { offsetInCU: 0x118, offset: 0x6293B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfc', symObjAddr: 0xC0, symBinAddr: 0x12330, symSize: 0x5C } - - { offsetInCU: 0x153, offset: 0x62976, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF', symObjAddr: 0x13C, symBinAddr: 0x123AC, symSize: 0x260 } - - { offsetInCU: 0x2E4, offset: 0x62B07, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfC', symObjAddr: 0x3E4, symBinAddr: 0x12654, symSize: 0x20 } - - { offsetInCU: 0x302, offset: 0x62B25, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfc', symObjAddr: 0x404, symBinAddr: 0x12674, symSize: 0x2C } - - { offsetInCU: 0x365, offset: 0x62B88, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfcTo', symObjAddr: 0x430, symBinAddr: 0x126A0, symSize: 0x2C } - - { offsetInCU: 0x3DB, offset: 0x62BFE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCAA11OSIABRouterA2aDP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctFTW', symObjAddr: 0x4B8, symBinAddr: 0x12728, symSize: 0x50 } - - { offsetInCU: 0x40D, offset: 0x62C30, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF06$sSo16nG15CIegn_ABIegg_TRAIIegn_Tf1ncn_nTf4nng_n', symObjAddr: 0x994, symBinAddr: 0x12BE4, symSize: 0x278 } - - { offsetInCU: 0x5A2, offset: 0x62DC5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCMa', symObjAddr: 0x11C, symBinAddr: 0x1238C, symSize: 0x20 } - - { offsetInCU: 0x65D, offset: 0x62E80, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC7dismiss8animated10completionySb_yycSgtFTo', symObjAddr: 0x654, symBinAddr: 0x128C4, symSize: 0x13C } - - { offsetInCU: 0x6D6, offset: 0x62EF9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC3url13configurationAD10Foundation3URLV_So08SFSafarifG13ConfigurationCtcfcTo', symObjAddr: 0x790, symBinAddr: 0x12A00, symSize: 0x6C } - - { offsetInCU: 0x763, offset: 0x62F86, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC3url23entersReaderIfAvailableAD10Foundation3URLV_SbtcfcTo', symObjAddr: 0x7FC, symBinAddr: 0x12A6C, symSize: 0x60 } - - { offsetInCU: 0x986, offset: 0x631A9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLCMa', symObjAddr: 0x3C4, symBinAddr: 0x12634, symSize: 0x20 } - - { offsetInCU: 0x9B0, offset: 0x631D3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCfETo', symObjAddr: 0x468, symBinAddr: 0x126D8, symSize: 0x50 } - - { offsetInCU: 0x9DF, offset: 0x63202, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC06safarifG0_22didCompleteInitialLoadySo08SFSafarifG0C_SbtF', symObjAddr: 0x508, symBinAddr: 0x12778, symSize: 0x30 } - - { offsetInCU: 0xA44, offset: 0x63267, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC06safarifG0_22didCompleteInitialLoadySo08SFSafarifG0C_SbtFTo', symObjAddr: 0x538, symBinAddr: 0x127A8, symSize: 0x64 } - - { offsetInCU: 0xA8D, offset: 0x632B0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC012presentationG10DidDismissyySo014UIPresentationG0CF', symObjAddr: 0x59C, symBinAddr: 0x1280C, symSize: 0x2C } - - { offsetInCU: 0xADC, offset: 0x632FF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC012presentationG10DidDismissyySo014UIPresentationG0CFTo', symObjAddr: 0x5F8, symBinAddr: 0x12868, symSize: 0x5C } - - { offsetInCU: 0xB1B, offset: 0x6333E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLCfETo', symObjAddr: 0x89C, symBinAddr: 0x12B0C, symSize: 0x14 } - - { offsetInCU: 0xB4A, offset: 0x6336D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC7dismiss8animated10completionySb_yycSgtFyycfU_TA', symObjAddr: 0x8E4, symBinAddr: 0x12B54, symSize: 0x48 } - - { offsetInCU: 0xB7E, offset: 0x633A1, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x92C, symBinAddr: 0x12B9C, symSize: 0x10 } - - { offsetInCU: 0xB92, offset: 0x633B5, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x93C, symBinAddr: 0x12BAC, symSize: 0x8 } - - { offsetInCU: 0xBB1, offset: 0x633D4, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0x988, symBinAddr: 0x12BD8, symSize: 0xC } -... diff --git a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/Relocations/x86_64/OSInAppBrowserLib.yml b/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/Relocations/x86_64/OSInAppBrowserLib.yml deleted file mode 100644 index ccb4cee..0000000 --- a/ios/Sources/InAppBrowserPlugin/OSInAppBrowserLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSInAppBrowserLib.framework.dSYM/Contents/Resources/Relocations/x86_64/OSInAppBrowserLib.yml +++ /dev/null @@ -1,491 +0,0 @@ ---- -triple: 'x86_64-apple-darwin' -binary-path: '/Users/rcj/Library/Developer/Xcode/DerivedData/OSInAppBrowserLib-exxamiccymxcjdabdfefbzmbgbsk/Build/Intermediates.noindex/ArchiveIntermediates/OSInAppBrowserLib/InstallationBuildProductsLocation/Library/Frameworks/OSInAppBrowserLib.framework/OSInAppBrowserLib' -relocations: - - { offsetInCU: 0x34, offset: 0x58B9E, size: 0x8, addend: 0x0, symName: _OSInAppBrowserLibVersionString, symObjAddr: 0x0, symBinAddr: 0x151E0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x58BD3, size: 0x8, addend: 0x0, symName: _OSInAppBrowserLibVersionNumber, symObjAddr: 0x40, symBinAddr: 0x15220, symSize: 0x0 } - - { offsetInCU: 0x46, offset: 0x58C2F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineVACyxq_q0_GycfC', symObjAddr: 0x0, symBinAddr: 0x3A90, symSize: 0x10 } - - { offsetInCU: 0x83, offset: 0x58C6C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineV012openExternalC0_14routerDelegate_y10Foundation3URLV_xySbctF', symObjAddr: 0x10, symBinAddr: 0x3AA0, symSize: 0x90 } - - { offsetInCU: 0xE0, offset: 0x58CC9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineV010openSystemC0_14routerDelegate_y10Foundation3URLV_q_ySo16UIViewControllerCctF', symObjAddr: 0xE0, symBinAddr: 0x3B70, symSize: 0x90 } - - { offsetInCU: 0x13D, offset: 0x58D26, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineV11openWebView_14routerDelegate_y10Foundation3URLV_q0_ySo16UIViewControllerCctF', symObjAddr: 0x190, symBinAddr: 0x3C20, symSize: 0x90 } - - { offsetInCU: 0x1A6, offset: 0x58D8F, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SbIegn_TRTA', symObjAddr: 0xC0, symBinAddr: 0x3B50, symSize: 0x20 } - - { offsetInCU: 0x1DA, offset: 0x58DC3, size: 0x8, addend: 0x0, symName: '_$sSo16UIViewControllerCIegg_ABIegn_TRTA', symObjAddr: 0x170, symBinAddr: 0x3C00, symSize: 0x20 } - - { offsetInCU: 0x203, offset: 0x58DEC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineVMi', symObjAddr: 0x220, symBinAddr: 0x3CB0, symSize: 0x10 } - - { offsetInCU: 0x217, offset: 0x58E00, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib11OSIABEngineVMa', symObjAddr: 0x230, symBinAddr: 0x3CC0, symSize: 0x10 } - - { offsetInCU: 0x278, offset: 0x58E61, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaMa', symObjAddr: 0x4B0, symBinAddr: 0x3F20, symSize: 0x30 } - - { offsetInCU: 0x28C, offset: 0x58E75, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x540, symBinAddr: 0x3FB0, symSize: 0x20 } - - { offsetInCU: 0x2A0, offset: 0x58E89, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x560, symBinAddr: 0x3FD0, symSize: 0x20 } - - { offsetInCU: 0x2B4, offset: 0x58E9D, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSQWb', symObjAddr: 0x580, symBinAddr: 0x3FF0, symSize: 0x20 } - - { offsetInCU: 0x358, offset: 0x58F41, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromF1C_6resulty01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x270, symBinAddr: 0x3CF0, symSize: 0x10 } - - { offsetInCU: 0x39E, offset: 0x58F87, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromF1C_6resultSb01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x280, symBinAddr: 0x3D00, symSize: 0x10 } - - { offsetInCU: 0x3EA, offset: 0x58FD3, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromF1Cyx01_F5CTypeQzSgFZTW', symObjAddr: 0x290, symBinAddr: 0x3D10, symSize: 0x40 } - - { offsetInCU: 0x468, offset: 0x59051, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x330, symBinAddr: 0x3DB0, symSize: 0x30 } - - { offsetInCU: 0x4EC, offset: 0x590D5, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x360, symBinAddr: 0x3DE0, symSize: 0x60 } - - { offsetInCU: 0x57F, offset: 0x59168, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x3D0, symBinAddr: 0x3E40, symSize: 0x80 } - - { offsetInCU: 0x618, offset: 0x59201, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toghI0s0hI0VSgyFTW', symObjAddr: 0x4E0, symBinAddr: 0x3F50, symSize: 0x60 } - - { offsetInCU: 0x640, offset: 0x59229, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo38UIApplicationOpenExternalURLOptionsKeya_Tgq5Tf4nnd_n', symObjAddr: 0x5A0, symBinAddr: 0x4010, symSize: 0x80 } - - { offsetInCU: 0x6D1, offset: 0x592BA, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo38UIApplicationOpenExternalURLOptionsKeya_Tgq5Tf4nnd_n', symObjAddr: 0x620, symBinAddr: 0x4090, symSize: 0x80 } - - { offsetInCU: 0x7C2, offset: 0x593AB, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSYSCSY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x450, symBinAddr: 0x3EC0, symSize: 0x40 } - - { offsetInCU: 0x7EB, offset: 0x593D4, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSYSCSY8rawValue03RawG0QzvgTW', symObjAddr: 0x490, symBinAddr: 0x3F00, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x59594, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfC', symObjAddr: 0x0, symBinAddr: 0x4180, symSize: 0xC0 } - - { offsetInCU: 0x5E, offset: 0x595C7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfC', symObjAddr: 0x0, symBinAddr: 0x4180, symSize: 0xC0 } - - { offsetInCU: 0x92, offset: 0x595FB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfc', symObjAddr: 0xC0, symBinAddr: 0x4240, symSize: 0x80 } - - { offsetInCU: 0xC4, offset: 0x5962D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0OtcfC', symObjAddr: 0x140, symBinAddr: 0x42C0, symSize: 0x30 } - - { offsetInCU: 0x123, offset: 0x5968C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC9viewStyle15animationEffectAcA09OSIABViewI0O_AA014OSIABAnimationK0Otcfc', symObjAddr: 0x170, symBinAddr: 0x42F0, symSize: 0x30 } - - { offsetInCU: 0x168, offset: 0x596D1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCfd', symObjAddr: 0x1C0, symBinAddr: 0x4340, symSize: 0x20 } - - { offsetInCU: 0x1A3, offset: 0x5970C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCfD', symObjAddr: 0x1E0, symBinAddr: 0x4360, symSize: 0x30 } - - { offsetInCU: 0x1E6, offset: 0x5974F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsC7showURL0H7Toolbar10clearCache0k7SessionL031mediaPlaybackRequiresUserAction15closeButtonText15toolbarPosition0H17NavigationButtons11leftToRight15allowOverScroll19enableViewportScale016allowInLineMediaO028surpressIncrementalRendering9viewStyle15animationEffect06customQ5AgentACSb_S4bSSAA012OSIABToolbarW0OS6bAA14OSIABViewStyleOAA20OSIABAnimationEffectOSSSgtcfcTf4nnnnngnnnnnnnnnnn_n', symObjAddr: 0x210, symBinAddr: 0x4390, symSize: 0x140 } - - { offsetInCU: 0x366, offset: 0x598CF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCfE', symObjAddr: 0x1A0, symBinAddr: 0x4320, symSize: 0x20 } - - { offsetInCU: 0x3EE, offset: 0x59957, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewOptionsCMa', symObjAddr: 0x350, symBinAddr: 0x44D0, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x59AE1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwCP', symObjAddr: 0x0, symBinAddr: 0x4520, symSize: 0x30 } - - { offsetInCU: 0x57, offset: 0x59AF5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwxx', symObjAddr: 0x30, symBinAddr: 0x4550, symSize: 0x10 } - - { offsetInCU: 0x6B, offset: 0x59B09, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwcp', symObjAddr: 0x40, symBinAddr: 0x4560, symSize: 0x30 } - - { offsetInCU: 0x7F, offset: 0x59B1D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwca', symObjAddr: 0x70, symBinAddr: 0x4590, symSize: 0x40 } - - { offsetInCU: 0x93, offset: 0x59B31, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0xB0, symBinAddr: 0x45D0, symSize: 0x10 } - - { offsetInCU: 0xA7, offset: 0x59B45, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwta', symObjAddr: 0xC0, symBinAddr: 0x45E0, symSize: 0x30 } - - { offsetInCU: 0xBB, offset: 0x59B59, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwet', symObjAddr: 0xF0, symBinAddr: 0x4610, symSize: 0x40 } - - { offsetInCU: 0xCF, offset: 0x59B6D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVwst', symObjAddr: 0x130, symBinAddr: 0x4650, symSize: 0x40 } - - { offsetInCU: 0xE3, offset: 0x59B81, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewVMa', symObjAddr: 0x170, symBinAddr: 0x4690, symSize: 0x10 } - - { offsetInCU: 0xF7, offset: 0x59B95, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x180, symBinAddr: 0x46A0, symSize: 0x20 } - - { offsetInCU: 0x16E, offset: 0x59C0C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg', symObjAddr: 0x1A0, symBinAddr: 0x46C0, symSize: 0x230 } - - { offsetInCU: 0x2BB, offset: 0x59D59, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_', symObjAddr: 0x3D0, symBinAddr: 0x48F0, symSize: 0x8E0 } - - { offsetInCU: 0x635, offset: 0x5A0D3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_', symObjAddr: 0xCB0, symBinAddr: 0x51D0, symSize: 0x5E0 } - - { offsetInCU: 0x7E6, offset: 0x5A284, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_A3_yXEfU_', symObjAddr: 0x1290, symBinAddr: 0x57B0, symSize: 0xD0 } - - { offsetInCU: 0x821, offset: 0x5A2BF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_yycAA0eF5ModelCcfu_yycfu0_', symObjAddr: 0x1360, symBinAddr: 0x5880, symSize: 0x120 } - - { offsetInCU: 0x880, offset: 0x5A31E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvgyycfU0_', symObjAddr: 0x1480, symBinAddr: 0x59A0, symSize: 0x120 } - - { offsetInCU: 0x8FA, offset: 0x5A398, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x15D0, symBinAddr: 0x5AF0, symSize: 0x20 } - - { offsetInCU: 0xAF0, offset: 0x5A58E, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x15F0, symBinAddr: 0x5B10, symSize: 0x40 } - - { offsetInCU: 0xB04, offset: 0x5A5A2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvgyycfU0_TA', symObjAddr: 0x1660, symBinAddr: 0x5B80, symSize: 0x20 } - - { offsetInCU: 0xB18, offset: 0x5A5B6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVAC7SwiftUI0F0AAWl', symObjAddr: 0x16C0, symBinAddr: 0x5BE0, symSize: 0x30 } - - { offsetInCU: 0xB2C, offset: 0x5A5CA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_yycAA0eF5ModelCcfu_yycfu0_TA', symObjAddr: 0x17C0, symBinAddr: 0x5CE0, symSize: 0x10 } - - { offsetInCU: 0xB40, offset: 0x5A5DE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_yycAA0eF5ModelCcfu3_yycfu4_TA', symObjAddr: 0x1860, symBinAddr: 0x5D80, symSize: 0x30 } - - { offsetInCU: 0xB7F, offset: 0x5A61D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE7paddingyQrAE4EdgeO3SetV_12CoreGraphics7CGFloatVSgtFQOyAE6HStackVyAGyAA015OSIABNavigationF0VSg_AE6SpacerVAiEE11buttonStyleyQrqd__AE015PrimitiveButtonU0Rd__lFQOyAE0W0VyAE4TextVG_AE05PlainwU0VQo_tGG_Qo_Sg_AE19_ConditionalContentVyAA010OSIABErrorF0VAA0eF13RepresentableVGAiEEAJyQrAN_ARtFQOyAV_Qo_SgtGyXEfU_A8_yXEfU_A3_yXEfU_TA', symObjAddr: 0x1890, symBinAddr: 0x5DB0, symSize: 0x20 } - - { offsetInCU: 0xB93, offset: 0x5A631, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x18B0, symBinAddr: 0x5DD0, symSize: 0x40 } - - { offsetInCU: 0xBA7, offset: 0x5A645, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVWOb', symObjAddr: 0x19D0, symBinAddr: 0x5EF0, symSize: 0x30 } - - { offsetInCU: 0xBBB, offset: 0x5A659, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x1A00, symBinAddr: 0x5F20, symSize: 0x30 } - - { offsetInCU: 0xBCF, offset: 0x5A66D, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOe', symObjAddr: 0x1A30, symBinAddr: 0x5F50, symSize: 0x20 } - - { offsetInCU: 0xBE3, offset: 0x5A681, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyACyAA6VStackVyAA9TupleViewVyACyAA6HStackVyAGy17OSInAppBrowserLib015OSIABNavigationG0VSg_AA6SpacerVAA0G0PAAE11buttonStyleyQrqd__AA015PrimitiveButtonP0Rd__lFQOyAA0R0VyAA4TextVG_AA05PlainrP0VQo_tGGAA14_PaddingLayoutVGSg_AA012_ConditionalD0VyAJ010OSIABErrorG0VAJ08OSIABWebG13RepresentableVGACyALA3_GSgtGGAA25_AppearanceActionModifierVGAJ28OSIABLayoutDirectionModifierVGACyxq_GAap2aPRzAA0G8ModifierR_rlWl', symObjAddr: 0x1A60, symBinAddr: 0x5F80, symSize: 0x80 } - - { offsetInCU: 0xBF7, offset: 0x5A695, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA6VStackVyAA9TupleViewVyACyAA6HStackVyAGy17OSInAppBrowserLib015OSIABNavigationG0VSg_AA6SpacerVAA0G0PAAE11buttonStyleyQrqd__AA015PrimitiveButtonP0Rd__lFQOyAA0R0VyAA4TextVG_AA05PlainrP0VQo_tGGAA14_PaddingLayoutVGSg_AA012_ConditionalD0VyAJ010OSIABErrorG0VAJ08OSIABWebG13RepresentableVGACyALA3_GSgtGGAA25_AppearanceActionModifierVGACyxq_GAap2aPRzAA0G8ModifierR_rlWl', symObjAddr: 0x1AE0, symBinAddr: 0x6000, symSize: 0x70 } - - { offsetInCU: 0xE65, offset: 0x5A903, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x15A0, symBinAddr: 0x5AC0, symSize: 0x10 } - - { offsetInCU: 0xE81, offset: 0x5A91F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fJ7OutputsVAD11_GraphValueVyxG_AD01_fJ6InputsVtFZTW', symObjAddr: 0x15B0, symBinAddr: 0x5AD0, symSize: 0x10 } - - { offsetInCU: 0xE9D, offset: 0x5A93B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABWebViewV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fjK6InputsV_tFZTW', symObjAddr: 0x15C0, symBinAddr: 0x5AE0, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x5AA8A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc', symObjAddr: 0x0, symBinAddr: 0x6120, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x5AAAE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0Otcfc', symObjAddr: 0x0, symBinAddr: 0x6120, symSize: 0x20 } - - { offsetInCU: 0x80, offset: 0x5AADF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsCfd', symObjAddr: 0x20, symBinAddr: 0x6140, symSize: 0x10 } - - { offsetInCU: 0xE3, offset: 0x5AB42, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsC9viewStyle15animationEffectAcA09OSIABViewG0O_AA014OSIABAnimationI0OtcfC', symObjAddr: 0x30, symBinAddr: 0x6150, symSize: 0x40 } - - { offsetInCU: 0x134, offset: 0x5AB93, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsCfD', symObjAddr: 0x70, symBinAddr: 0x6190, symSize: 0x20 } - - { offsetInCU: 0x162, offset: 0x5ABC1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib12OSIABOptionsCMa', symObjAddr: 0x90, symBinAddr: 0x61B0, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x5ACDA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwCP', symObjAddr: 0x0, symBinAddr: 0x6200, symSize: 0x90 } - - { offsetInCU: 0x57, offset: 0x5ACEE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwxx', symObjAddr: 0x90, symBinAddr: 0x6290, symSize: 0x40 } - - { offsetInCU: 0x6B, offset: 0x5AD02, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwcp', symObjAddr: 0xD0, symBinAddr: 0x62D0, symSize: 0x70 } - - { offsetInCU: 0x7F, offset: 0x5AD16, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwca', symObjAddr: 0x140, symBinAddr: 0x6340, symSize: 0x80 } - - { offsetInCU: 0x93, offset: 0x5AD2A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOWOh', symObjAddr: 0x1C0, symBinAddr: 0x63C0, symSize: 0x30 } - - { offsetInCU: 0xA7, offset: 0x5AD3E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwtk', symObjAddr: 0x210, symBinAddr: 0x6410, symSize: 0x70 } - - { offsetInCU: 0xBB, offset: 0x5AD52, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwta', symObjAddr: 0x280, symBinAddr: 0x6480, symSize: 0x80 } - - { offsetInCU: 0xCF, offset: 0x5AD66, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwet', symObjAddr: 0x300, symBinAddr: 0x6500, symSize: 0x10 } - - { offsetInCU: 0xE3, offset: 0x5AD7A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwst', symObjAddr: 0x310, symBinAddr: 0x6510, symSize: 0x10 } - - { offsetInCU: 0xF7, offset: 0x5AD8E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwug', symObjAddr: 0x320, symBinAddr: 0x6520, symSize: 0x10 } - - { offsetInCU: 0x10B, offset: 0x5ADA2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwup', symObjAddr: 0x330, symBinAddr: 0x6530, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x5ADB6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOwui', symObjAddr: 0x340, symBinAddr: 0x6540, symSize: 0x20 } - - { offsetInCU: 0x133, offset: 0x5ADCA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOMr', symObjAddr: 0x360, symBinAddr: 0x6560, symSize: 0x60 } - - { offsetInCU: 0x147, offset: 0x5ADDE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwCP', symObjAddr: 0x3C0, symBinAddr: 0x65C0, symSize: 0xA0 } - - { offsetInCU: 0x15B, offset: 0x5ADF2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwxx', symObjAddr: 0x460, symBinAddr: 0x6660, symSize: 0x50 } - - { offsetInCU: 0x16F, offset: 0x5AE06, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwcp', symObjAddr: 0x4B0, symBinAddr: 0x66B0, symSize: 0x70 } - - { offsetInCU: 0x183, offset: 0x5AE1A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwca', symObjAddr: 0x520, symBinAddr: 0x6720, symSize: 0x80 } - - { offsetInCU: 0x197, offset: 0x5AE2E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwtk', symObjAddr: 0x5A0, symBinAddr: 0x67A0, symSize: 0x70 } - - { offsetInCU: 0x1AB, offset: 0x5AE42, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwta', symObjAddr: 0x610, symBinAddr: 0x6810, symSize: 0x80 } - - { offsetInCU: 0x1BF, offset: 0x5AE56, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwet', symObjAddr: 0x690, symBinAddr: 0x6890, symSize: 0x20 } - - { offsetInCU: 0x1D3, offset: 0x5AE6A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVwst', symObjAddr: 0x6E0, symBinAddr: 0x68E0, symSize: 0x20 } - - { offsetInCU: 0x1E7, offset: 0x5AE7E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierVMr', symObjAddr: 0x770, symBinAddr: 0x6970, symSize: 0x60 } - - { offsetInCU: 0x1FB, offset: 0x5AE92, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AA4BodyAdEP_AD0J0PWT', symObjAddr: 0x7D0, symBinAddr: 0x69D0, symSize: 0x20 } - - { offsetInCU: 0x231, offset: 0x5AEC8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV4body7contentQr7SwiftUI05_ViewG8_ContentVyACG_tF', symObjAddr: 0x7F0, symBinAddr: 0x69F0, symSize: 0x1B0 } - - { offsetInCU: 0x2CA, offset: 0x5AF61, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP4body7content4BodyQzAD01_jG8_ContentVyxG_tFTW', symObjAddr: 0xA20, symBinAddr: 0x6C20, symSize: 0x10 } - - { offsetInCU: 0x2E7, offset: 0x5AF7E, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI17EnvironmentValuesV15layoutDirectionAA06LayoutF0OvpACTk', symObjAddr: 0x9A0, symBinAddr: 0x6BA0, symSize: 0x50 } - - { offsetInCU: 0x2FF, offset: 0x5AF96, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABLayoutDirectionEnumOWOc', symObjAddr: 0xA70, symBinAddr: 0x6C30, symSize: 0x30 } - - { offsetInCU: 0x313, offset: 0x5AFAA, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI30_EnvironmentKeyWritingModifierVyAA15LayoutDirectionOGWOc', symObjAddr: 0xAD0, symBinAddr: 0x6C90, symSize: 0x40 } - - { offsetInCU: 0x327, offset: 0x5AFBE, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI30_EnvironmentKeyWritingModifierVyAA15LayoutDirectionOGWOh', symObjAddr: 0xB10, symBinAddr: 0x6CD0, symSize: 0x30 } - - { offsetInCU: 0x33B, offset: 0x5AFD2, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA014_ViewModifier_D0Vy17OSInAppBrowserLib020OSIABLayoutDirectionF0VGAA022_EnvironmentKeyWritingF0VyAA06LayoutL0OGGACyxq_GAA0E0A2aQRzAA0eF0R_rlWl', symObjAddr: 0xB50, symBinAddr: 0x6D10, symSize: 0x90 } - - { offsetInCU: 0x3B1, offset: 0x5B048, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP05_makeJ08modifier6inputs4bodyAD01_J7OutputsVAD11_GraphValueVyxG_AD01_J6InputsVAlD01_P0V_AQtctFZTW', symObjAddr: 0x9F0, symBinAddr: 0x6BF0, symSize: 0x10 } - - { offsetInCU: 0x3CD, offset: 0x5B064, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP05_makeJ4List8modifier6inputs4bodyAD01_jL7OutputsVAD11_GraphValueVyxG_AD01_jL6InputsVAlD01_Q0V_AQtctFZTW', symObjAddr: 0xA00, symBinAddr: 0x6C00, symSize: 0x10 } - - { offsetInCU: 0x3E9, offset: 0x5B080, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib28OSIABLayoutDirectionModifierV7SwiftUI04ViewG0AadEP14_viewListCount6inputs4bodySiSgAD01_jlM6InputsV_AjLXEtFZTW', symObjAddr: 0xA10, symBinAddr: 0x6C10, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x5B1BE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwCP', symObjAddr: 0x0, symBinAddr: 0x6DD0, symSize: 0x130 } - - { offsetInCU: 0x57, offset: 0x5B1D2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwxx', symObjAddr: 0x130, symBinAddr: 0x6F00, symSize: 0x70 } - - { offsetInCU: 0x6B, offset: 0x5B1E6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwcp', symObjAddr: 0x1A0, symBinAddr: 0x6F70, symSize: 0x100 } - - { offsetInCU: 0x7F, offset: 0x5B1FA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwca', symObjAddr: 0x2A0, symBinAddr: 0x7070, symSize: 0x120 } - - { offsetInCU: 0x93, offset: 0x5B20E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwtk', symObjAddr: 0x3C0, symBinAddr: 0x7190, symSize: 0xB0 } - - { offsetInCU: 0xA7, offset: 0x5B222, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwta', symObjAddr: 0x470, symBinAddr: 0x7240, symSize: 0x100 } - - { offsetInCU: 0xBB, offset: 0x5B236, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwet', symObjAddr: 0x570, symBinAddr: 0x7340, symSize: 0x20 } - - { offsetInCU: 0xCF, offset: 0x5B24A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVwst', symObjAddr: 0x600, symBinAddr: 0x73D0, symSize: 0x20 } - - { offsetInCU: 0xE3, offset: 0x5B25E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVMa', symObjAddr: 0x680, symBinAddr: 0x7450, symSize: 0x30 } - - { offsetInCU: 0xF7, offset: 0x5B272, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewVMr', symObjAddr: 0x6B0, symBinAddr: 0x7480, symSize: 0xA0 } - - { offsetInCU: 0x10B, offset: 0x5B286, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x750, symBinAddr: 0x7520, symSize: 0x20 } - - { offsetInCU: 0x13C, offset: 0x5B2B7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV4bodyQrvg', symObjAddr: 0x770, symBinAddr: 0x7540, symSize: 0x220 } - - { offsetInCU: 0x1F6, offset: 0x5B371, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAaeFP4body4BodyQzvgTW', symObjAddr: 0x9B0, symBinAddr: 0x7780, symSize: 0x40 } - - { offsetInCU: 0x255, offset: 0x5B3D0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV4bodyQrvg7SwiftUI05TupleF0VyAGyAE0F0PAAE15layoutDirectionyQrAA011OSIABLayoutL4EnumOFQOyAE6HStackVyAGyAA0E6Button33_E6EE006C509F907B5BFD0901EE702BEBLLV_AQtGG_Qo__AE6SpacerVtGSg_AiEE5frame8minWidth10idealWidth8maxWidth9minHeight11idealHeight9maxHeight9alignmentQr12CoreGraphics7CGFloatVSg_A8_A8_A8_A8_A8_AE9AlignmentVtFQOyAiEE16allowsHitTestingyQrSbFQOyAiEE9lineLimityQrSiSgFQOyAE4TextV_Qo__Qo__Qo_SgtGyXEfU_', symObjAddr: 0x9F0, symBinAddr: 0x77C0, symSize: 0x7A0 } - - { offsetInCU: 0x365, offset: 0x5B4E0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV4bodyQrvg7SwiftUI05TupleF0VyAGyAE0F0PAAE15layoutDirectionyQrAA011OSIABLayoutL4EnumOFQOyAE6HStackVyAGyAA0E6Button33_E6EE006C509F907B5BFD0901EE702BEBLLV_AQtGG_Qo__AE6SpacerVtGSg_AiEE5frame8minWidth10idealWidth8maxWidth9minHeight11idealHeight9maxHeight9alignmentQr12CoreGraphics7CGFloatVSg_A8_A8_A8_A8_A8_AE9AlignmentVtFQOyAiEE16allowsHitTestingyQrSbFQOyAiEE9lineLimityQrSiSgFQOyAE4TextV_Qo__Qo__Qo_SgtGyXEfU_ARyXEfU_', symObjAddr: 0x1190, symBinAddr: 0x7F60, symSize: 0xB0 } - - { offsetInCU: 0x3F8, offset: 0x5B573, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x1520, symBinAddr: 0x82F0, symSize: 0x50 } - - { offsetInCU: 0x498, offset: 0x5B613, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyACyACyAA4TextVAA30_EnvironmentKeyWritingModifierVySiSgGGAA017_AllowsHitTestingI0VGAA16_FlexFrameLayoutVGSgWOy', symObjAddr: 0x1650, symBinAddr: 0x8390, symSize: 0x30 } - - { offsetInCU: 0x4AC, offset: 0x5B627, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOy', symObjAddr: 0x1680, symBinAddr: 0x83C0, symSize: 0x20 } - - { offsetInCU: 0x4C0, offset: 0x5B63B, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyACyACyAA4TextVAA30_EnvironmentKeyWritingModifierVySiSgGGAA017_AllowsHitTestingI0VGAA16_FlexFrameLayoutVGSgWOe', symObjAddr: 0x16A0, symBinAddr: 0x83E0, symSize: 0x30 } - - { offsetInCU: 0x4D4, offset: 0x5B64F, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOb', symObjAddr: 0x1790, symBinAddr: 0x84D0, symSize: 0x30 } - - { offsetInCU: 0x4E8, offset: 0x5B663, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4TextV7StorageOWOr', symObjAddr: 0x17C0, symBinAddr: 0x8500, symSize: 0x30 } - - { offsetInCU: 0x4FC, offset: 0x5B677, size: 0x8, addend: 0x0, symName: '_$sSay7SwiftUI4TextV8ModifierOGWOr', symObjAddr: 0x17F0, symBinAddr: 0x8530, symSize: 0x20 } - - { offsetInCU: 0x510, offset: 0x5B68B, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI30_EnvironmentKeyWritingModifierVySiSgGWOr', symObjAddr: 0x1810, symBinAddr: 0x8550, symSize: 0x20 } - - { offsetInCU: 0x524, offset: 0x5B69F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwCP', symObjAddr: 0x1830, symBinAddr: 0x8570, symSize: 0x30 } - - { offsetInCU: 0x538, offset: 0x5B6B3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwxx', symObjAddr: 0x1860, symBinAddr: 0x85A0, symSize: 0x30 } - - { offsetInCU: 0x54C, offset: 0x5B6C7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwcp', symObjAddr: 0x1890, symBinAddr: 0x85D0, symSize: 0x50 } - - { offsetInCU: 0x560, offset: 0x5B6DB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwca', symObjAddr: 0x18E0, symBinAddr: 0x8620, symSize: 0x70 } - - { offsetInCU: 0x574, offset: 0x5B6EF, size: 0x8, addend: 0x0, symName: ___swift_memcpy33_8, symObjAddr: 0x1950, symBinAddr: 0x8690, symSize: 0x20 } - - { offsetInCU: 0x588, offset: 0x5B703, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwta', symObjAddr: 0x1970, symBinAddr: 0x86B0, symSize: 0x50 } - - { offsetInCU: 0x59C, offset: 0x5B717, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwet', symObjAddr: 0x19C0, symBinAddr: 0x8700, symSize: 0x40 } - - { offsetInCU: 0x5B0, offset: 0x5B72B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVwst', symObjAddr: 0x1A00, symBinAddr: 0x8740, symSize: 0x50 } - - { offsetInCU: 0x5C4, offset: 0x5B73F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLVMa', symObjAddr: 0x1A50, symBinAddr: 0x8790, symSize: 0x10 } - - { offsetInCU: 0x5D8, offset: 0x5B753, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAA4BodyAeFP_AHWT', symObjAddr: 0x1AC0, symBinAddr: 0x87C0, symSize: 0x20 } - - { offsetInCU: 0x5EC, offset: 0x5B767, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV4bodyQrvg7SwiftUI5ImageVyXEfU_TA', symObjAddr: 0x1AE0, symBinAddr: 0x87E0, symSize: 0x40 } - - { offsetInCU: 0x62A, offset: 0x5B7A5, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI16PlainButtonStyleVAcA09PrimitivedE0AAWl', symObjAddr: 0x1B20, symBinAddr: 0x8820, symSize: 0x40 } - - { offsetInCU: 0x649, offset: 0x5B7C4, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4ViewPAAE8disabledyQrSbFySbzcfU_TA', symObjAddr: 0x1BC0, symBinAddr: 0x88C0, symSize: 0x20 } - - { offsetInCU: 0x672, offset: 0x5B7ED, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA4ViewPAAE11buttonStyleyQrqd__AA015PrimitiveButtonG0Rd__lFQOyAA0I0VyAA5ImageVG_AA05PlainiG0VQo_AA32_EnvironmentKeyTransformModifierVySbGGACyxq_GAad2aDRzAA0eO0R_rlWl', symObjAddr: 0x1C20, symBinAddr: 0x8920, symSize: 0xE0 } - - { offsetInCU: 0x755, offset: 0x5B8D0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAaeFP05_makeQ04view6inputsAE01_Q7OutputsVAE11_GraphValueVyxG_AE01_Q6InputsVtFZTW', symObjAddr: 0x990, symBinAddr: 0x7760, symSize: 0x10 } - - { offsetInCU: 0x771, offset: 0x5B8EC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib21OSIABNavigationButton33_E6EE006C509F907B5BFD0901EE702BEBLLV7SwiftUI4ViewAaeFP05_makeQ4List4view6inputsAE01_qS7OutputsVAE11_GraphValueVyxG_AE01_qS6InputsVtFZTW', symObjAddr: 0x9A0, symBinAddr: 0x7770, symSize: 0x10 } - - { offsetInCU: 0x83C, offset: 0x5B9B7, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI4ViewPAAE5frame8minWidth05idealF003maxF00E6Height0gI00hI09alignmentQr12CoreGraphics7CGFloatVSg_A5oA9AlignmentVtFAA15ModifiedContentVyASyAA4TextVAA30_EnvironmentKeyWritingModifierVySiSgGGAA017_AllowsHitTestingU0VG_Tg5', symObjAddr: 0x1240, symBinAddr: 0x8010, symSize: 0x2B0 } - - { offsetInCU: 0x896, offset: 0x5BA11, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x14F0, symBinAddr: 0x82C0, symSize: 0x10 } - - { offsetInCU: 0x8B2, offset: 0x5BA2D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fJ7OutputsVAD11_GraphValueVyxG_AD01_fJ6InputsVtFZTW', symObjAddr: 0x1500, symBinAddr: 0x82D0, symSize: 0x10 } - - { offsetInCU: 0x8CE, offset: 0x5BA49, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABNavigationViewV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fjK6InputsV_tFZTW', symObjAddr: 0x1510, symBinAddr: 0x82E0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x5BB91, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0x8A40, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x5BBB5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvpZ', symObjAddr: 0x3B0, symBinAddr: 0x22C98, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5BBCF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0x8A40, symSize: 0x40 } - - { offsetInCU: 0x9D, offset: 0x5BC07, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueACSgSS_tcfC', symObjAddr: 0x50, symBinAddr: 0x8A90, symSize: 0x70 } - - { offsetInCU: 0xC8, offset: 0x5BC32, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO8rawValueSSvg', symObjAddr: 0x100, symBinAddr: 0x8B00, symSize: 0x40 } - - { offsetInCU: 0xEF, offset: 0x5BC59, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1C0, symBinAddr: 0x8BC0, symSize: 0x20 } - - { offsetInCU: 0x10B, offset: 0x5BC75, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1E0, symBinAddr: 0x8BE0, symSize: 0x20 } - - { offsetInCU: 0x139, offset: 0x5BCA3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionO12defaultValue_WZ', symObjAddr: 0x40, symBinAddr: 0x8A80, symSize: 0x10 } - - { offsetInCU: 0x153, offset: 0x5BCBD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASQWb', symObjAddr: 0x150, symBinAddr: 0x8B50, symSize: 0x10 } - - { offsetInCU: 0x167, offset: 0x5BCD1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOACSQAAWl', symObjAddr: 0x160, symBinAddr: 0x8B60, symSize: 0x30 } - - { offsetInCU: 0x17B, offset: 0x5BCE5, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x200, symBinAddr: 0x8C00, symSize: 0x10 } - - { offsetInCU: 0x18F, offset: 0x5BCF9, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x210, symBinAddr: 0x8C10, symSize: 0x10 } - - { offsetInCU: 0x1A3, offset: 0x5BD0D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwet', symObjAddr: 0x220, symBinAddr: 0x8C20, symSize: 0x80 } - - { offsetInCU: 0x1B7, offset: 0x5BD21, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwst', symObjAddr: 0x2A0, symBinAddr: 0x8CA0, symSize: 0xD0 } - - { offsetInCU: 0x1CB, offset: 0x5BD35, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwug', symObjAddr: 0x370, symBinAddr: 0x8D70, symSize: 0x10 } - - { offsetInCU: 0x1DF, offset: 0x5BD49, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwup', symObjAddr: 0x380, symBinAddr: 0x8D80, symSize: 0x10 } - - { offsetInCU: 0x1F3, offset: 0x5BD5D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOwui', symObjAddr: 0x390, symBinAddr: 0x8D90, symSize: 0x10 } - - { offsetInCU: 0x207, offset: 0x5BD71, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOMa', symObjAddr: 0x3A0, symBinAddr: 0x8DA0, symSize: 0xA } - - { offsetInCU: 0x231, offset: 0x5BD9B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x140, symBinAddr: 0x8B40, symSize: 0x10 } - - { offsetInCU: 0x24D, offset: 0x5BDB7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASH9hashValueSivgTW', symObjAddr: 0x190, symBinAddr: 0x8B90, symSize: 0x10 } - - { offsetInCU: 0x269, offset: 0x5BDD3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A0, symBinAddr: 0x8BA0, symSize: 0x10 } - - { offsetInCU: 0x285, offset: 0x5BDEF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABToolbarPositionOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1B0, symBinAddr: 0x8BB0, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x5BF1B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerP10clearCacheyyyycSgF', symObjAddr: 0x0, symBinAddr: 0x8DB0, symSize: 0x10 } - - { offsetInCU: 0x5F, offset: 0x5BF37, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerPAAE10clearCacheyyyycSgF', symObjAddr: 0x10, symBinAddr: 0x8DC0, symSize: 0x10 } - - { offsetInCU: 0xA9, offset: 0x5BF81, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerP17clearSessionCacheyyyycSgF', symObjAddr: 0x20, symBinAddr: 0x8DD0, symSize: 0x10 } - - { offsetInCU: 0xC5, offset: 0x5BF9D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManagerPAAE17clearSessionCacheyyyycSgF', symObjAddr: 0x30, symBinAddr: 0x8DE0, symSize: 0x10 } - - { offsetInCU: 0x11B, offset: 0x5BFF3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV9dataStoreACSo013WKWebsiteDataI0C_tcfC', symObjAddr: 0x40, symBinAddr: 0x8DF0, symSize: 0x10 } - - { offsetInCU: 0x1FC, offset: 0x5C0D4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF033_5C90474E0718C79AB93258AA826B5964LL18sessionCookiesOnly_ySb_yycSgtF6deleteL_yySaySo12NSHTTPCookieCG_AGtF', symObjAddr: 0x50, symBinAddr: 0x8E00, symSize: 0x1B0 } - - { offsetInCU: 0x363, offset: 0x5C23B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF033_5C90474E0718C79AB93258AA826B5964LL18sessionCookiesOnly_ySb_yycSgtF6deleteL_yySaySo12NSHTTPCookieCG_AGtFyycfU_', symObjAddr: 0x200, symBinAddr: 0x8FB0, symSize: 0x1D0 } - - { offsetInCU: 0x6E9, offset: 0x5C5C1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerV05clearF033_5C90474E0718C79AB93258AA826B5964LL18sessionCookiesOnly_ySb_yycSgtFySaySo12NSHTTPCookieCGcfU_', symObjAddr: 0x3D0, symBinAddr: 0x9180, symSize: 0x380 } - - { offsetInCU: 0xA8B, offset: 0x5C963, size: 0x8, addend: 0x0, symName: '_$sSaySo12NSHTTPCookieCGIegg_So7NSArrayCIeyBy_TR', symObjAddr: 0x750, symBinAddr: 0x9500, symSize: 0x60 } - - { offsetInCU: 0xAA3, offset: 0x5C97B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x800, symBinAddr: 0x95B0, symSize: 0x20 } - - { offsetInCU: 0xAB7, offset: 0x5C98F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x820, symBinAddr: 0x95D0, symSize: 0x10 } - - { offsetInCU: 0xACB, offset: 0x5C9A3, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x830, symBinAddr: 0x95E0, symSize: 0x20 } - - { offsetInCU: 0xADF, offset: 0x5C9B7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABBrowserCacheManagerVMa', symObjAddr: 0xB10, symBinAddr: 0x98C0, symSize: 0x10 } - - { offsetInCU: 0xAF3, offset: 0x5C9CB, size: 0x8, addend: 0x0, symName: '_$sSo12NSHTTPCookieCMa', symObjAddr: 0xBC0, symBinAddr: 0x9970, symSize: 0x30 } - - { offsetInCU: 0xB07, offset: 0x5C9DF, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0xBF0, symBinAddr: 0x99A0, symSize: 0x20 } - - { offsetInCU: 0xB82, offset: 0x5CA5A, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0xC10, symBinAddr: 0x99C0, symSize: 0x140 } - - { offsetInCU: 0xD04, offset: 0x5CBDC, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVySo12NSHTTPCookieCG_Tg5', symObjAddr: 0xD70, symBinAddr: 0x9B20, symSize: 0xE0 } - - { offsetInCU: 0xE76, offset: 0x5CD4E, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo12NSHTTPCookieC_Tg5Tf4d_n', symObjAddr: 0xE50, symBinAddr: 0x9C00, symSize: 0x50 } - - { offsetInCU: 0xFB0, offset: 0x5CE88, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSo12NSHTTPCookieC_s10ArraySliceVyAEGTg5Tf4nd_n', symObjAddr: 0xEE0, symBinAddr: 0x9C50, symSize: 0xC0 } - - { offsetInCU: 0x27, offset: 0x5D13E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0x9E30, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x5D162, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvpZ', symObjAddr: 0x3A0, symBinAddr: 0x22CC8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5D17C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0x9E30, symSize: 0x40 } - - { offsetInCU: 0x9D, offset: 0x5D1B4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueACSgSS_tcfC', symObjAddr: 0x50, symBinAddr: 0x9E80, symSize: 0x70 } - - { offsetInCU: 0xC8, offset: 0x5D1DF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO8rawValueSSvg', symObjAddr: 0x100, symBinAddr: 0x9EF0, symSize: 0x30 } - - { offsetInCU: 0xEF, offset: 0x5D206, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1B0, symBinAddr: 0x9FA0, symSize: 0x20 } - - { offsetInCU: 0x10B, offset: 0x5D222, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1D0, symBinAddr: 0x9FC0, symSize: 0x20 } - - { offsetInCU: 0x139, offset: 0x5D250, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleO12defaultValue_WZ', symObjAddr: 0x40, symBinAddr: 0x9E70, symSize: 0x10 } - - { offsetInCU: 0x153, offset: 0x5D26A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASQWb', symObjAddr: 0x140, symBinAddr: 0x9F30, symSize: 0x10 } - - { offsetInCU: 0x167, offset: 0x5D27E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOACSQAAWl', symObjAddr: 0x150, symBinAddr: 0x9F40, symSize: 0x30 } - - { offsetInCU: 0x17B, offset: 0x5D292, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwet', symObjAddr: 0x210, symBinAddr: 0x9FE0, symSize: 0x80 } - - { offsetInCU: 0x18F, offset: 0x5D2A6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwst', symObjAddr: 0x290, symBinAddr: 0xA060, symSize: 0xD0 } - - { offsetInCU: 0x1A3, offset: 0x5D2BA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwug', symObjAddr: 0x360, symBinAddr: 0xA130, symSize: 0x10 } - - { offsetInCU: 0x1B7, offset: 0x5D2CE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwup', symObjAddr: 0x370, symBinAddr: 0xA140, symSize: 0x10 } - - { offsetInCU: 0x1CB, offset: 0x5D2E2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOwui', symObjAddr: 0x380, symBinAddr: 0xA150, symSize: 0x10 } - - { offsetInCU: 0x1DF, offset: 0x5D2F6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOMa', symObjAddr: 0x390, symBinAddr: 0xA160, symSize: 0xA } - - { offsetInCU: 0x209, offset: 0x5D320, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130, symBinAddr: 0x9F20, symSize: 0x10 } - - { offsetInCU: 0x225, offset: 0x5D33C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASH9hashValueSivgTW', symObjAddr: 0x180, symBinAddr: 0x9F70, symSize: 0x10 } - - { offsetInCU: 0x241, offset: 0x5D358, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x190, symBinAddr: 0x9F80, symSize: 0x10 } - - { offsetInCU: 0x25D, offset: 0x5D374, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABViewStyleOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A0, symBinAddr: 0x9F90, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x5D4A2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib24OSIABApplicationDelegatePAAE4open_7options17completionHandlery10Foundation3URLV_SDySo38UIApplicationOpenExternalURLOptionsKeyaypGySbcSgtF', symObjAddr: 0x0, symBinAddr: 0xA170, symSize: 0x10 } - - { offsetInCU: 0x83, offset: 0x5D4E2, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SbIeyBy_TR', symObjAddr: 0x170, symBinAddr: 0xA2E0, symSize: 0x40 } - - { offsetInCU: 0xD1, offset: 0x5D530, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfC', symObjAddr: 0x1B0, symBinAddr: 0xA320, symSize: 0x30 } - - { offsetInCU: 0x118, offset: 0x5D577, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCyAcA0E8Delegate_pcfc', symObjAddr: 0x1E0, symBinAddr: 0xA350, symSize: 0x20 } - - { offsetInCU: 0x13F, offset: 0x5D59E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterC10handleOpenyy10Foundation3URLV_ySbctF', symObjAddr: 0x200, symBinAddr: 0xA370, symSize: 0xB0 } - - { offsetInCU: 0x1F4, offset: 0x5D653, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCfd', symObjAddr: 0x2B0, symBinAddr: 0xA420, symSize: 0x20 } - - { offsetInCU: 0x22F, offset: 0x5D68E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCfD', symObjAddr: 0x2D0, symBinAddr: 0xA440, symSize: 0x20 } - - { offsetInCU: 0x2B0, offset: 0x5D70F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCAA11OSIABRouterA2aDP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctFTW', symObjAddr: 0x2F0, symBinAddr: 0xA460, symSize: 0x120 } - - { offsetInCU: 0x438, offset: 0x5D897, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib29OSIABApplicationRouterAdapterCMa', symObjAddr: 0x510, symBinAddr: 0xA680, symSize: 0x20 } - - { offsetInCU: 0x44C, offset: 0x5D8AB, size: 0x8, addend: 0x0, symName: '_$sSbIegn_SbIegy_TRTA', symObjAddr: 0x590, symBinAddr: 0xA700, symSize: 0x30 } - - { offsetInCU: 0x475, offset: 0x5D8D4, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaABSHSCWl', symObjAddr: 0x5C0, symBinAddr: 0xA730, symSize: 0x40 } - - { offsetInCU: 0x489, offset: 0x5D8E8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x600, symBinAddr: 0xA770, symSize: 0x20 } - - { offsetInCU: 0x49D, offset: 0x5D8FC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x620, symBinAddr: 0xA790, symSize: 0x10 } - - { offsetInCU: 0x4B1, offset: 0x5D910, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeya_yptWOc', symObjAddr: 0x670, symBinAddr: 0xA7A0, symSize: 0x40 } - - { offsetInCU: 0x4C5, offset: 0x5D924, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x6B0, symBinAddr: 0xA7E0, symSize: 0x17 } - - { offsetInCU: 0x54B, offset: 0x5D9AA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSo38UIApplicationOpenExternalURLOptionsKeya_ypTg5Tf4gd_n', symObjAddr: 0x410, symBinAddr: 0xA580, symSize: 0xE0 } - - { offsetInCU: 0x681, offset: 0x5DAE0, size: 0x8, addend: 0x0, symName: '_$sSo13UIApplicationC17OSInAppBrowserLib24OSIABApplicationDelegateA2cDP10canOpenURLySb10Foundation0J0VFTW', symObjAddr: 0x10, symBinAddr: 0xA180, symSize: 0x50 } - - { offsetInCU: 0x6B2, offset: 0x5DB11, size: 0x8, addend: 0x0, symName: '_$sSo13UIApplicationC17OSInAppBrowserLib24OSIABApplicationDelegateA2cDP4open_7options17completionHandlery10Foundation3URLV_SDySo0A25OpenExternalURLOptionsKeyaypGySbcSgtFTW', symObjAddr: 0x60, symBinAddr: 0xA1D0, symSize: 0x10 } - - { offsetInCU: 0x6CE, offset: 0x5DB2D, size: 0x8, addend: 0x0, symName: '_$sSo13UIApplicationC4open_7options17completionHandlery10Foundation3URLV_SDySo0A25OpenExternalURLOptionsKeyaypGySbcSgtFTO', symObjAddr: 0x70, symBinAddr: 0xA1E0, symSize: 0x100 } - - { offsetInCU: 0x2B, offset: 0x5DC85, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVMa', symObjAddr: 0x0, symBinAddr: 0xA800, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x5DC9D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVMa', symObjAddr: 0x0, symBinAddr: 0xA800, symSize: 0x10 } - - { offsetInCU: 0x57, offset: 0x5DCB1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AaD0F0PWb', symObjAddr: 0x10, symBinAddr: 0xA810, symSize: 0x10 } - - { offsetInCU: 0x90, offset: 0x5DCEA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP04makeJ07context0J4TypeQzAD0jG7ContextVyxG_tFTW', symObjAddr: 0x50, symBinAddr: 0xA820, symSize: 0x10 } - - { offsetInCU: 0xC2, offset: 0x5DD1C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP06updateJ0_7contexty0J4TypeQz_AD0jG7ContextVyxGtFTW', symObjAddr: 0x60, symBinAddr: 0xA830, symSize: 0x10 } - - { offsetInCU: 0xDF, offset: 0x5DD39, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x110, symBinAddr: 0xA8E0, symSize: 0x10 } - - { offsetInCU: 0xF3, offset: 0x5DD4D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableVAC7SwiftUI06UIViewG0AAWl', symObjAddr: 0x1D0, symBinAddr: 0xA9A0, symSize: 0x2E } - - { offsetInCU: 0x176, offset: 0x5DDD0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP09dismantleJ0_11coordinatory0J4TypeQz_11CoordinatorQztFZTW', symObjAddr: 0x70, symBinAddr: 0xA840, symSize: 0x10 } - - { offsetInCU: 0x192, offset: 0x5DDEC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP15makeCoordinator0L0QzyFTW', symObjAddr: 0x80, symBinAddr: 0xA850, symSize: 0x10 } - - { offsetInCU: 0x1AE, offset: 0x5DE08, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP011_identifiedF4Tree2inAD011_IdentifiedfL0O0J4TypeQz_tFTW', symObjAddr: 0x90, symBinAddr: 0xA860, symSize: 0x10 } - - { offsetInCU: 0x1CA, offset: 0x5DE24, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP12sizeThatFits_02uiF07contextSo6CGSizeVSgAD08ProposedF4SizeV_0J4TypeQzAD0jG7ContextVyxGtFTW', symObjAddr: 0xA0, symBinAddr: 0xA870, symSize: 0x30 } - - { offsetInCU: 0x1E6, offset: 0x5DE40, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP21_overrideSizeThatFits_2in02uiF0ySo6CGSizeVz_AD09_ProposedL0V0J4TypeQztFTW', symObjAddr: 0xD0, symBinAddr: 0xA8A0, symSize: 0x10 } - - { offsetInCU: 0x202, offset: 0x5DE5C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP21_overrideLayoutTraits_3foryAD01_lM0Vz_0J4TypeQztFTW', symObjAddr: 0xE0, symBinAddr: 0xA8B0, symSize: 0x10 } - - { offsetInCU: 0x21E, offset: 0x5DE78, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP014_modifyBridgedF6InputsyyAD01_fM0VzFZTW', symObjAddr: 0xF0, symBinAddr: 0xA8C0, symSize: 0x10 } - - { offsetInCU: 0x23A, offset: 0x5DE94, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI06UIViewG0AadEP14_layoutOptionsyAD09_Platformfg6LayoutL0V0J4TypeQzFZTW', symObjAddr: 0x100, symBinAddr: 0xA8D0, symSize: 0x10 } - - { offsetInCU: 0x256, offset: 0x5DEB0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x120, symBinAddr: 0xA8F0, symSize: 0x40 } - - { offsetInCU: 0x272, offset: 0x5DECC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fK7OutputsVAD11_GraphValueVyxG_AD01_fK6InputsVtFZTW', symObjAddr: 0x160, symBinAddr: 0xA930, symSize: 0x40 } - - { offsetInCU: 0x28E, offset: 0x5DEE8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fkL6InputsV_tFZTW', symObjAddr: 0x1A0, symBinAddr: 0xA970, symSize: 0x10 } - - { offsetInCU: 0x2AA, offset: 0x5DF04, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRepresentableV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x1B0, symBinAddr: 0xA980, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x5E001, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValue_WZ', symObjAddr: 0x0, symBinAddr: 0xA9D0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x5E025, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvpZ', symObjAddr: 0x3A0, symBinAddr: 0x22DB0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5E03F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValueACvgZ', symObjAddr: 0x10, symBinAddr: 0xA9E0, symSize: 0x40 } - - { offsetInCU: 0x9D, offset: 0x5E077, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueACSgSS_tcfC', symObjAddr: 0x50, symBinAddr: 0xAA20, symSize: 0x70 } - - { offsetInCU: 0xC8, offset: 0x5E0A2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO8rawValueSSvg', symObjAddr: 0x100, symBinAddr: 0xAA90, symSize: 0x30 } - - { offsetInCU: 0xF3, offset: 0x5E0CD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1B0, symBinAddr: 0xAB40, symSize: 0x20 } - - { offsetInCU: 0x10F, offset: 0x5E0E9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1D0, symBinAddr: 0xAB60, symSize: 0x20 } - - { offsetInCU: 0x12C, offset: 0x5E106, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleO12defaultValue_WZ', symObjAddr: 0x0, symBinAddr: 0xA9D0, symSize: 0x10 } - - { offsetInCU: 0x157, offset: 0x5E131, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASQWb', symObjAddr: 0x140, symBinAddr: 0xAAD0, symSize: 0x10 } - - { offsetInCU: 0x16B, offset: 0x5E145, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOACSQAAWl', symObjAddr: 0x150, symBinAddr: 0xAAE0, symSize: 0x30 } - - { offsetInCU: 0x17F, offset: 0x5E159, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwet', symObjAddr: 0x210, symBinAddr: 0xAB80, symSize: 0x80 } - - { offsetInCU: 0x193, offset: 0x5E16D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwst', symObjAddr: 0x290, symBinAddr: 0xAC00, symSize: 0xD0 } - - { offsetInCU: 0x1A7, offset: 0x5E181, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwug', symObjAddr: 0x360, symBinAddr: 0xACD0, symSize: 0x10 } - - { offsetInCU: 0x1BB, offset: 0x5E195, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwup', symObjAddr: 0x370, symBinAddr: 0xACE0, symSize: 0x10 } - - { offsetInCU: 0x1CF, offset: 0x5E1A9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOwui', symObjAddr: 0x380, symBinAddr: 0xACF0, symSize: 0x10 } - - { offsetInCU: 0x1E3, offset: 0x5E1BD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOMa', symObjAddr: 0x390, symBinAddr: 0xAD00, symSize: 0xA } - - { offsetInCU: 0x20D, offset: 0x5E1E7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130, symBinAddr: 0xAAC0, symSize: 0x10 } - - { offsetInCU: 0x229, offset: 0x5E203, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASH9hashValueSivgTW', symObjAddr: 0x180, symBinAddr: 0xAB10, symSize: 0x10 } - - { offsetInCU: 0x245, offset: 0x5E21F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x190, symBinAddr: 0xAB20, symSize: 0x10 } - - { offsetInCU: 0x261, offset: 0x5E23B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABDismissStyleOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A0, symBinAddr: 0xAB30, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x5E353, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xAD10, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x5E377, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvpZ', symObjAddr: 0x7F0, symBinAddr: 0x22DC0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x5E391, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValueACvgZ', symObjAddr: 0x0, symBinAddr: 0xAD10, symSize: 0x40 } - - { offsetInCU: 0xC6, offset: 0x5E3F2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueACSgSS_tcfC', symObjAddr: 0x4A0, symBinAddr: 0xB1B0, symSize: 0x70 } - - { offsetInCU: 0xF1, offset: 0x5E41D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO8rawValueSSvg', symObjAddr: 0x550, symBinAddr: 0xB220, symSize: 0x30 } - - { offsetInCU: 0x10C, offset: 0x5E438, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x600, symBinAddr: 0xB2D0, symSize: 0x20 } - - { offsetInCU: 0x128, offset: 0x5E454, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x620, symBinAddr: 0xB2F0, symSize: 0x20 } - - { offsetInCU: 0x1C5, offset: 0x5E4F1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectO12defaultValue_WZ', symObjAddr: 0x490, symBinAddr: 0xB1A0, symSize: 0x10 } - - { offsetInCU: 0x1DF, offset: 0x5E50B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASQWb', symObjAddr: 0x590, symBinAddr: 0xB260, symSize: 0x10 } - - { offsetInCU: 0x1F3, offset: 0x5E51F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOACSQAAWl', symObjAddr: 0x5A0, symBinAddr: 0xB270, symSize: 0x30 } - - { offsetInCU: 0x207, offset: 0x5E533, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwet', symObjAddr: 0x660, symBinAddr: 0xB310, symSize: 0x80 } - - { offsetInCU: 0x21B, offset: 0x5E547, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwst', symObjAddr: 0x6E0, symBinAddr: 0xB390, symSize: 0xD0 } - - { offsetInCU: 0x22F, offset: 0x5E55B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwug', symObjAddr: 0x7B0, symBinAddr: 0xB460, symSize: 0x10 } - - { offsetInCU: 0x243, offset: 0x5E56F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwup', symObjAddr: 0x7C0, symBinAddr: 0xB470, symSize: 0x10 } - - { offsetInCU: 0x257, offset: 0x5E583, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOwui', symObjAddr: 0x7D0, symBinAddr: 0xB480, symSize: 0x10 } - - { offsetInCU: 0x26B, offset: 0x5E597, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOMa', symObjAddr: 0x7E0, symBinAddr: 0xB490, symSize: 0xA } - - { offsetInCU: 0x2D7, offset: 0x5E603, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x40, symBinAddr: 0xAD50, symSize: 0x70 } - - { offsetInCU: 0x388, offset: 0x5E6B4, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0xB0, symBinAddr: 0xADC0, symSize: 0x60 } - - { offsetInCU: 0x462, offset: 0x5E78E, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x110, symBinAddr: 0xAE20, symSize: 0x70 } - - { offsetInCU: 0x547, offset: 0x5E873, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x180, symBinAddr: 0xAE90, symSize: 0x60 } - - { offsetInCU: 0x5E5, offset: 0x5E911, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x1E0, symBinAddr: 0xAEF0, symSize: 0x50 } - - { offsetInCU: 0x60E, offset: 0x5E93A, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x230, symBinAddr: 0xAF40, symSize: 0x40 } - - { offsetInCU: 0x66B, offset: 0x5E997, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x270, symBinAddr: 0xAF80, symSize: 0x50 } - - { offsetInCU: 0x6C8, offset: 0x5E9F4, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0x2C0, symBinAddr: 0xAFD0, symSize: 0x40 } - - { offsetInCU: 0x725, offset: 0x5EA51, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0x300, symBinAddr: 0xB010, symSize: 0x60 } - - { offsetInCU: 0x7A1, offset: 0x5EACD, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x360, symBinAddr: 0xB070, symSize: 0x60 } - - { offsetInCU: 0x828, offset: 0x5EB54, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x3C0, symBinAddr: 0xB0D0, symSize: 0x60 } - - { offsetInCU: 0x8A4, offset: 0x5EBD0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x420, symBinAddr: 0xB130, symSize: 0x70 } - - { offsetInCU: 0x8F7, offset: 0x5EC23, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x580, symBinAddr: 0xB250, symSize: 0x10 } - - { offsetInCU: 0x913, offset: 0x5EC3F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASH9hashValueSivgTW', symObjAddr: 0x5D0, symBinAddr: 0xB2A0, symSize: 0x10 } - - { offsetInCU: 0x92F, offset: 0x5EC5B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E0, symBinAddr: 0xB2B0, symSize: 0x10 } - - { offsetInCU: 0x943, offset: 0x5EC6F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib20OSIABAnimationEffectOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5F0, symBinAddr: 0xB2C0, symSize: 0x10 } - - { offsetInCU: 0x4F, offset: 0x5EDA5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url10Foundation3URLVvg', symObjAddr: 0x0, symBinAddr: 0xB4A0, symSize: 0x60 } - - { offsetInCU: 0xB4, offset: 0x5EE0A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC4$url7Combine9PublishedV9PublisherVy10Foundation3URLV_GvM', symObjAddr: 0x60, symBinAddr: 0xB500, symSize: 0xC0 } - - { offsetInCU: 0x15E, offset: 0x5EEB4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC10$isLoading7Combine9PublishedV9PublisherVySb_GvM', symObjAddr: 0x150, symBinAddr: 0xB5F0, symSize: 0xC0 } - - { offsetInCU: 0x1C0, offset: 0x5EF16, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC5errors5Error_pSgvg', symObjAddr: 0x220, symBinAddr: 0xB6C0, symSize: 0x60 } - - { offsetInCU: 0x225, offset: 0x5EF7B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC18$backButtonEnabled7Combine9PublishedV9PublisherVySb_GvM', symObjAddr: 0x2A0, symBinAddr: 0xB740, symSize: 0xC0 } - - { offsetInCU: 0x2CF, offset: 0x5F025, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC21$forwardButtonEnabled7Combine9PublishedV9PublisherVySb_GvM', symObjAddr: 0x3E0, symBinAddr: 0xB880, symSize: 0xC0 } - - { offsetInCU: 0x331, offset: 0x5F087, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC12addressLabelSSvg', symObjAddr: 0x4B0, symBinAddr: 0xB950, symSize: 0x60 } - - { offsetInCU: 0x396, offset: 0x5F0EC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC13$addressLabel7Combine9PublishedV9PublisherVySS_GvM', symObjAddr: 0x510, symBinAddr: 0xB9B0, symSize: 0xC0 } - - { offsetInCU: 0x3F8, offset: 0x5F14E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url___02uiG015callbackHandlerAC10Foundation3URLV_So05WKWebF13ConfigurationCSbSSSgAA0eF7UIModelVAA0ef8CallbackK0Vtcfc', symObjAddr: 0x720, symBinAddr: 0xBBC0, symSize: 0x610 } - - { offsetInCU: 0x61F, offset: 0x5F375, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC13setupBindings33_9465A02ABBCEE1A843D14F7D6FC63749LLyySb_S2btF', symObjAddr: 0xD30, symBinAddr: 0xC1D0, symSize: 0x4E0 } - - { offsetInCU: 0x69C, offset: 0x5F3F2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC13setupBindings33_9465A02ABBCEE1A843D14F7D6FC63749LLyySb_S2btF10Foundation3URLVSgAIcfU_', symObjAddr: 0x1290, symBinAddr: 0xC730, symSize: 0x10 } - - { offsetInCU: 0x6E5, offset: 0x5F43B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCACycfcTo', symObjAddr: 0x12A0, symBinAddr: 0xC740, symSize: 0x30 } - - { offsetInCU: 0x74C, offset: 0x5F4A2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCfD', symObjAddr: 0x12D0, symBinAddr: 0xC770, symSize: 0x30 } - - { offsetInCU: 0x942, offset: 0x5F698, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC3url10Foundation3URLVSgvpABTK', symObjAddr: 0x1210, symBinAddr: 0xC6B0, symSize: 0x80 } - - { offsetInCU: 0x970, offset: 0x5F6C6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCfETo', symObjAddr: 0x1300, symBinAddr: 0xC7A0, symSize: 0x130 } - - { offsetInCU: 0x99F, offset: 0x5F6F5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCMU', symObjAddr: 0x1430, symBinAddr: 0xC8D0, symSize: 0x10 } - - { offsetInCU: 0x9B3, offset: 0x5F709, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCMa', symObjAddr: 0x1440, symBinAddr: 0xC8E0, symSize: 0x30 } - - { offsetInCU: 0x9C7, offset: 0x5F71D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCMr', symObjAddr: 0x1470, symBinAddr: 0xC910, symSize: 0x130 } - - { offsetInCU: 0x9DB, offset: 0x5F731, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVy10Foundation3URLVGMa', symObjAddr: 0x15A0, symBinAddr: 0xCA40, symSize: 0x50 } - - { offsetInCU: 0x9EF, offset: 0x5F745, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVys5Error_pSgGMa', symObjAddr: 0x15F0, symBinAddr: 0xCA90, symSize: 0x50 } - - { offsetInCU: 0xA12, offset: 0x5F768, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_15decidePolicyFor15decisionHandlerySo05WKWebF0C_So18WKNavigationActionCySo0opJ0VctFTo', symObjAddr: 0x16E0, symBinAddr: 0xCB40, symSize: 0xA0 } - - { offsetInCU: 0xA53, offset: 0x5F7A9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_9didFinishySo05WKWebF0C_So12WKNavigationCSgtFTo', symObjAddr: 0x1780, symBinAddr: 0xCBE0, symSize: 0x70 } - - { offsetInCU: 0xAF1, offset: 0x5F847, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCyyctFTo', symObjAddr: 0x1920, symBinAddr: 0xCD80, symSize: 0x130 } - - { offsetInCU: 0xBE6, offset: 0x5F93C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCySbctFTo', symObjAddr: 0x1A50, symBinAddr: 0xCEB0, symSize: 0x1A0 } - - { offsetInCU: 0xD27, offset: 0x5FA7D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo17UIAlertControllerC_SbtcfU_', symObjAddr: 0x1BF0, symBinAddr: 0xD050, symSize: 0x1D0 } - - { offsetInCU: 0xE96, offset: 0x5FBEC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU2_', symObjAddr: 0x1DC0, symBinAddr: 0xD220, symSize: 0x50 } - - { offsetInCU: 0xEE0, offset: 0x5FC36, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFTo', symObjAddr: 0x1E70, symBinAddr: 0xD2D0, symSize: 0x110 } - - { offsetInCU: 0xF12, offset: 0x5FC68, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC7Combine16ObservableObjectAA0J19WillChangePublisherAdEP_AD0M0PWT', symObjAddr: 0x1F80, symBinAddr: 0xD3E0, symSize: 0x10 } - - { offsetInCU: 0xF26, offset: 0x5FC7C, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TR', symObjAddr: 0x1F90, symBinAddr: 0xD3F0, symSize: 0x40 } - - { offsetInCU: 0xF3E, offset: 0x5FC94, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TRTA', symObjAddr: 0x1FF0, symBinAddr: 0xD450, symSize: 0x10 } - - { offsetInCU: 0xF52, offset: 0x5FCA8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url10Foundation3URLVvpACTK', symObjAddr: 0x2000, symBinAddr: 0xD460, symSize: 0x60 } - - { offsetInCU: 0xF7F, offset: 0x5FCD5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC3url10Foundation3URLVvpACTk', symObjAddr: 0x2060, symBinAddr: 0xD4C0, symSize: 0xD0 } - - { offsetInCU: 0xFB9, offset: 0x5FD0F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC12addressLabelSSvpACTK', symObjAddr: 0x2130, symBinAddr: 0xD590, symSize: 0x70 } - - { offsetInCU: 0xFDE, offset: 0x5FD34, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC12addressLabelSSvpACTk', symObjAddr: 0x21A0, symBinAddr: 0xD600, symSize: 0x80 } - - { offsetInCU: 0x1016, offset: 0x5FD6C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC5errors5Error_pSgvpACTK', symObjAddr: 0x2220, symBinAddr: 0xD680, symSize: 0x70 } - - { offsetInCU: 0x103B, offset: 0x5FD91, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC5errors5Error_pSgvpACTk', symObjAddr: 0x2290, symBinAddr: 0xD6F0, symSize: 0x70 } - - { offsetInCU: 0x1087, offset: 0x5FDDD, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x2450, symBinAddr: 0xD8B0, symSize: 0x80 } - - { offsetInCU: 0x1125, offset: 0x5FE7B, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x24D0, symBinAddr: 0xD930, symSize: 0x60 } - - { offsetInCU: 0x1188, offset: 0x5FEDE, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x2530, symBinAddr: 0xD990, symSize: 0x180 } - - { offsetInCU: 0x1205, offset: 0x5FF5B, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x26B0, symBinAddr: 0xDB10, symSize: 0xE0 } - - { offsetInCU: 0x1314, offset: 0x6006A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_15decidePolicyFor15decisionHandlerySo05WKWebF0C_So18WKNavigationActionCySo0opJ0VctF06$sSo24opJ16VIeyBy_ABIegy_TRALIeyBy_Tf1nncn_nTf4nnng_n', symObjAddr: 0x29E0, symBinAddr: 0xDE40, symSize: 0x7B0 } - - { offsetInCU: 0x14C3, offset: 0x60219, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_9didFinishySo05WKWebF0C_So12WKNavigationCSgtFTf4ddn_n', symObjAddr: 0x3190, symBinAddr: 0xE5F0, symSize: 0x90 } - - { offsetInCU: 0x15C6, offset: 0x6031C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF033_9465A02ABBCEE1A843D14F7D6FC63749LL_19didFailedNavigation4withySo05WKWebF0C_SSs5Error_ptFTf4dnnn_n', symObjAddr: 0x3220, symBinAddr: 0xE680, symSize: 0x210 } - - { offsetInCU: 0x17B0, offset: 0x60506, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC21createAlertController33_9465A02ABBCEE1A843D14F7D6FC63749LL12withBodyText15okButtonHandler06cancelvW0So07UIAlertJ0CSS_yAJcyAJcSgtFTf4nnnd_n', symObjAddr: 0x3430, symBinAddr: 0xE890, symSize: 0x480 } - - { offsetInCU: 0x18C1, offset: 0x60617, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFTf4dnndnn_n', symObjAddr: 0x38B0, symBinAddr: 0xED10, symSize: 0x1B0 } - - { offsetInCU: 0x1963, offset: 0x606B9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo17UIAlertControllerC_SbtcfU_TA', symObjAddr: 0x3A80, symBinAddr: 0xEEE0, symSize: 0x20 } - - { offsetInCU: 0x1977, offset: 0x606CD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_37runJavaScriptTextInputPanelWithPrompt07defaultL016initiatedByFrame17completionHandlerySo05WKWebF0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU2_TA', symObjAddr: 0x3AE0, symBinAddr: 0xEF40, symSize: 0x20 } - - { offsetInCU: 0x198B, offset: 0x606E1, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x3B00, symBinAddr: 0xEF60, symSize: 0x20 } - - { offsetInCU: 0x199F, offset: 0x606F5, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x3B20, symBinAddr: 0xEF80, symSize: 0x10 } - - { offsetInCU: 0x19B3, offset: 0x60709, size: 0x8, addend: 0x0, symName: '_$sSo17UIAlertControllerCIegg_SgWOy', symObjAddr: 0x3C00, symBinAddr: 0xF020, symSize: 0x20 } - - { offsetInCU: 0x19C7, offset: 0x6071D, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x3C20, symBinAddr: 0xF040, symSize: 0x30 } - - { offsetInCU: 0x19E6, offset: 0x6073C, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x3C50, symBinAddr: 0xF070, symSize: 0x20 } - - { offsetInCU: 0x1A41, offset: 0x60797, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCySbctFySo17UIAlertControllerC_SbtcfU_TA', symObjAddr: 0x3C70, symBinAddr: 0xF090, symSize: 0x30 } - - { offsetInCU: 0x1A89, offset: 0x607DF, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0x3CE0, symBinAddr: 0xF100, symSize: 0x10 } - - { offsetInCU: 0x1AC3, offset: 0x60819, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC03webF0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame17completionHandlerySo05WKWebF0C_SSSo11WKFrameInfoCyyctFySo17UIAlertControllerCcfU_TA', symObjAddr: 0x3CF0, symBinAddr: 0xF110, symSize: 0x30 } - - { offsetInCU: 0x1B01, offset: 0x60857, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOc', symObjAddr: 0x3D40, symBinAddr: 0xF160, symSize: 0x40 } - - { offsetInCU: 0x1B15, offset: 0x6086B, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACSQAAWl', symObjAddr: 0x3DB0, symBinAddr: 0xF1D0, symSize: 0x40 } - - { offsetInCU: 0x1B29, offset: 0x6087F, size: 0x8, addend: 0x0, symName: _keypath_get_selector_isLoading, symObjAddr: 0x3DF0, symBinAddr: 0xF210, symSize: 0x10 } - - { offsetInCU: 0x1B3D, offset: 0x60893, size: 0x8, addend: 0x0, symName: _keypath_get_selector_URL, symObjAddr: 0x3E30, symBinAddr: 0xF250, symSize: 0x10 } - - { offsetInCU: 0x1B51, offset: 0x608A7, size: 0x8, addend: 0x0, symName: _keypath_get_selector_canGoBack, symObjAddr: 0x3EA0, symBinAddr: 0xF2C0, symSize: 0x10 } - - { offsetInCU: 0x1B65, offset: 0x608BB, size: 0x8, addend: 0x0, symName: _keypath_get_selector_canGoForward, symObjAddr: 0x3EE0, symBinAddr: 0xF300, symSize: 0x10 } - - { offsetInCU: 0x1F59, offset: 0x60CAF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC7Combine16ObservableObjectAadEP16objectWillChange0jlM9PublisherQzvgTW', symObjAddr: 0x16B0, symBinAddr: 0xCB10, symSize: 0x30 } - - { offsetInCU: 0x27, offset: 0x60DE9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfC', symObjAddr: 0x0, symBinAddr: 0xF510, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x60E0D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerV13onDelegateURL0iJ15AlertController0iC8PageLoad0iC6ClosedACy10Foundation0K0Vc_ySo07UIAlertM0CcyycySbctcfC', symObjAddr: 0x0, symBinAddr: 0xF510, symSize: 0x30 } - - { offsetInCU: 0xBB, offset: 0x60E7D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwCP', symObjAddr: 0x30, symBinAddr: 0xF540, symSize: 0x30 } - - { offsetInCU: 0xCF, offset: 0x60E91, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwxx', symObjAddr: 0x60, symBinAddr: 0xF570, symSize: 0x40 } - - { offsetInCU: 0xE3, offset: 0x60EA5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwcp', symObjAddr: 0xA0, symBinAddr: 0xF5B0, symSize: 0x80 } - - { offsetInCU: 0xF7, offset: 0x60EB9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwca', symObjAddr: 0x120, symBinAddr: 0xF630, symSize: 0xA0 } - - { offsetInCU: 0x10B, offset: 0x60ECD, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x1C0, symBinAddr: 0xF6D0, symSize: 0x30 } - - { offsetInCU: 0x11F, offset: 0x60EE1, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwta', symObjAddr: 0x1F0, symBinAddr: 0xF700, symSize: 0x80 } - - { offsetInCU: 0x133, offset: 0x60EF5, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwet', symObjAddr: 0x270, symBinAddr: 0xF780, symSize: 0x40 } - - { offsetInCU: 0x147, offset: 0x60F09, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVwst', symObjAddr: 0x2B0, symBinAddr: 0xF7C0, symSize: 0x50 } - - { offsetInCU: 0x15B, offset: 0x60F1D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib27OSIABWebViewCallbackHandlerVMa', symObjAddr: 0x300, symBinAddr: 0xF810, symSize: 0xA } - - { offsetInCU: 0x43, offset: 0x6105F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwCP', symObjAddr: 0x0, symBinAddr: 0xF820, symSize: 0xE0 } - - { offsetInCU: 0x57, offset: 0x61073, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwxx', symObjAddr: 0xE0, symBinAddr: 0xF900, symSize: 0x60 } - - { offsetInCU: 0x6B, offset: 0x61087, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwcp', symObjAddr: 0x140, symBinAddr: 0xF960, symSize: 0xB0 } - - { offsetInCU: 0x7F, offset: 0x6109B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwca', symObjAddr: 0x1F0, symBinAddr: 0xFA10, symSize: 0xD0 } - - { offsetInCU: 0x93, offset: 0x610AF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwtk', symObjAddr: 0x2C0, symBinAddr: 0xFAE0, symSize: 0x90 } - - { offsetInCU: 0xA7, offset: 0x610C3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwta', symObjAddr: 0x350, symBinAddr: 0xFB70, symSize: 0xC0 } - - { offsetInCU: 0xBB, offset: 0x610D7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwet', symObjAddr: 0x410, symBinAddr: 0xFC30, symSize: 0x20 } - - { offsetInCU: 0xCF, offset: 0x610EB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVwst', symObjAddr: 0x490, symBinAddr: 0xFCB0, symSize: 0x20 } - - { offsetInCU: 0xE3, offset: 0x610FF, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVMa', symObjAddr: 0x510, symBinAddr: 0xFD30, symSize: 0x30 } - - { offsetInCU: 0xF7, offset: 0x61113, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewVMr', symObjAddr: 0x540, symBinAddr: 0xFD60, symSize: 0x70 } - - { offsetInCU: 0x10B, offset: 0x61127, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x5B0, symBinAddr: 0xFDD0, symSize: 0x20 } - - { offsetInCU: 0x145, offset: 0x61161, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_', symObjAddr: 0x5D0, symBinAddr: 0xFDF0, symSize: 0x3C0 } - - { offsetInCU: 0x1F8, offset: 0x61214, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_A1_yXEfU_AYyXEfU_', symObjAddr: 0x990, symBinAddr: 0x101B0, symSize: 0x140 } - - { offsetInCU: 0x29E, offset: 0x612BA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_A1_yXEfU_AYyXEfU_AWyXEfU_', symObjAddr: 0xAD0, symBinAddr: 0x102F0, symSize: 0x150 } - - { offsetInCU: 0x2F7, offset: 0x61313, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0xC50, symBinAddr: 0x10470, symSize: 0x160 } - - { offsetInCU: 0x416, offset: 0x61432, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV4bodyQrvg7SwiftUI05TupleF0VyAE4TextV_AE6HStackVyAE0F0PAEE11buttonStyleyQrqd__AE015PrimitiveButtonN0Rd__lFQOyAE0P0VyAmAE15layoutDirectionyQrAA011OSIABLayoutR4EnumOFQOyAKyAGyAE5ImageV_AItGG_Qo_G_AE05PlainpN0VQo_GAE6SpacerVtGyXEfU_A1_yXEfU_AYyXEfU_TA', symObjAddr: 0xE10, symBinAddr: 0x105D0, symSize: 0x10 } - - { offsetInCU: 0x42A, offset: 0x61446, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA6HStackVyAA9TupleViewVyAA5ImageV_AA4TextVtGG17OSInAppBrowserLib28OSIABLayoutDirectionModifierVGACyxq_GAA0G0A2aSRzAA0gP0R_rlWl', symObjAddr: 0xE20, symBinAddr: 0x105E0, symSize: 0x90 } - - { offsetInCU: 0x43E, offset: 0x6145A, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI15ModifiedContentVyAA6VStackVyAA9TupleViewVyAA4TextV_AA6HStackVyAA0G0PAAE11buttonStyleyQrqd__AA015PrimitiveButtonK0Rd__lFQOyAA0M0VyACyAKyAGyAA5ImageV_AItGG17OSInAppBrowserLib28OSIABLayoutDirectionModifierVGG_AA05PlainmK0VQo_GAA6SpacerVtGGAA14_PaddingLayoutVGACyxq_GAal2aLRzAA0gU0R_rlWl', symObjAddr: 0x1040, symBinAddr: 0x107A0, symSize: 0x70 } - - { offsetInCU: 0x573, offset: 0x6158F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0xC20, symBinAddr: 0x10440, symSize: 0x10 } - - { offsetInCU: 0x58F, offset: 0x615AB, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fJ7OutputsVAD11_GraphValueVyxG_AD01_fJ6InputsVtFZTW', symObjAddr: 0xC30, symBinAddr: 0x10450, symSize: 0x10 } - - { offsetInCU: 0x5AB, offset: 0x615C7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib14OSIABErrorViewV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fjK6InputsV_tFZTW', symObjAddr: 0xC40, symBinAddr: 0x10460, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x61712, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwCP', symObjAddr: 0x0, symBinAddr: 0x10840, symSize: 0x40 } - - { offsetInCU: 0x43, offset: 0x6172A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwCP', symObjAddr: 0x0, symBinAddr: 0x10840, symSize: 0x40 } - - { offsetInCU: 0x57, offset: 0x6173E, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI11StateObjectV7StorageOy17OSInAppBrowserLib17OSIABWebViewModelC_GWOy', symObjAddr: 0x40, symBinAddr: 0x10880, symSize: 0x20 } - - { offsetInCU: 0x6B, offset: 0x61752, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwxx', symObjAddr: 0x60, symBinAddr: 0x108A0, symSize: 0x20 } - - { offsetInCU: 0x7F, offset: 0x61766, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI11StateObjectV7StorageOy17OSInAppBrowserLib17OSIABWebViewModelC_GWOe', symObjAddr: 0x80, symBinAddr: 0x108C0, symSize: 0x20 } - - { offsetInCU: 0x93, offset: 0x6177A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwcp', symObjAddr: 0xA0, symBinAddr: 0x108E0, symSize: 0x40 } - - { offsetInCU: 0xA7, offset: 0x6178E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwca', symObjAddr: 0xE0, symBinAddr: 0x10920, symSize: 0x50 } - - { offsetInCU: 0xBB, offset: 0x617A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x130, symBinAddr: 0x10970, symSize: 0x20 } - - { offsetInCU: 0xCF, offset: 0x617B6, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwta', symObjAddr: 0x150, symBinAddr: 0x10990, symSize: 0x40 } - - { offsetInCU: 0xE3, offset: 0x617CA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwet', symObjAddr: 0x190, symBinAddr: 0x109D0, symSize: 0x50 } - - { offsetInCU: 0xF7, offset: 0x617DE, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVwst', symObjAddr: 0x1E0, symBinAddr: 0x10A20, symSize: 0x50 } - - { offsetInCU: 0x10B, offset: 0x617F2, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVMa', symObjAddr: 0x230, symBinAddr: 0x10A70, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x61806, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AA4BodyAdEP_AGWT', symObjAddr: 0x240, symBinAddr: 0x10A80, symSize: 0x20 } - - { offsetInCU: 0x202, offset: 0x618E9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVyAcA0eF5ModelCcfcAEycfu_', symObjAddr: 0x460, symBinAddr: 0x10CA0, symSize: 0x10 } - - { offsetInCU: 0x21A, offset: 0x61901, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV4bodyQrvg7SwiftUI05TupleF0VyAE0F0PAEE15ignoresSafeArea_5edgesQrAE0mN7RegionsV_AE4EdgeO3SetVtFQOyAA0eF0V_Qo__AE08ProgressF0VyAE05EmptyF0VAXGSgtGyXEfU_', symObjAddr: 0x470, symBinAddr: 0x10CB0, symSize: 0x270 } - - { offsetInCU: 0x3B8, offset: 0x61A9F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP4body4BodyQzvgTW', symObjAddr: 0x710, symBinAddr: 0x10F50, symSize: 0x70 } - - { offsetInCU: 0x501, offset: 0x61BE8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelCAC7Combine16ObservableObjectAAWl', symObjAddr: 0x7C0, symBinAddr: 0x10FC0, symSize: 0x40 } - - { offsetInCU: 0x515, offset: 0x61BFC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC9isLoadingSbvpACTK', symObjAddr: 0x800, symBinAddr: 0x11000, symSize: 0x70 } - - { offsetInCU: 0x53A, offset: 0x61C21, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABWebViewModelC9isLoadingSbvpACTk', symObjAddr: 0x880, symBinAddr: 0x11080, symSize: 0x60 } - - { offsetInCU: 0x570, offset: 0x61C57, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI12ProgressViewVyAA05EmptyD0VAEGSgWOc', symObjAddr: 0x8F0, symBinAddr: 0x110F0, symSize: 0x40 } - - { offsetInCU: 0x584, offset: 0x61C6B, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI12ProgressViewVyAA05EmptyD0VAEGSgWOh', symObjAddr: 0x930, symBinAddr: 0x11130, symSize: 0x30 } - - { offsetInCU: 0x598, offset: 0x61C7F, size: 0x8, addend: 0x0, symName: '_$s7SwiftUI6ZStackVyAA9TupleViewVyAA15ModifiedContentVy17OSInAppBrowserLib08OSIABWebE0VAA30_SafeAreaRegionsIgnoringLayoutVG_AA08ProgressE0VyAA05EmptyE0VAQGSgtGGACyxGAA0E0AAWl', symObjAddr: 0x970, symBinAddr: 0x11170, symSize: 0x40 } - - { offsetInCU: 0x5BD, offset: 0x61CA4, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib20OSIABToolbarPositionO_TB5', symObjAddr: 0x260, symBinAddr: 0x10AA0, symSize: 0x90 } - - { offsetInCU: 0x610, offset: 0x61CF7, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib20OSIABAnimationEffectO_TB5', symObjAddr: 0x2F0, symBinAddr: 0x10B30, symSize: 0x70 } - - { offsetInCU: 0x69F, offset: 0x61D86, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib17OSIABDismissStyleO_TB5', symObjAddr: 0x360, symBinAddr: 0x10BA0, symSize: 0x90 } - - { offsetInCU: 0x72E, offset: 0x61E15, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF17OSInAppBrowserLib14OSIABViewStyleO_TB5', symObjAddr: 0x3F0, symBinAddr: 0x10C30, symSize: 0x70 } - - { offsetInCU: 0x849, offset: 0x61F30, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP05_makeF04view6inputsAD01_F7OutputsVAD11_GraphValueVyxG_AD01_F6InputsVtFZTW', symObjAddr: 0x6E0, symBinAddr: 0x10F20, symSize: 0x10 } - - { offsetInCU: 0x865, offset: 0x61F4C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP05_makeF4List4view6inputsAD01_fK7OutputsVAD11_GraphValueVyxG_AD01_fK6InputsVtFZTW', symObjAddr: 0x6F0, symBinAddr: 0x10F30, symSize: 0x10 } - - { offsetInCU: 0x881, offset: 0x61F68, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperV7SwiftUI0F0AadEP14_viewListCount6inputsSiSgAD01_fkL6InputsV_tFZTW', symObjAddr: 0x700, symBinAddr: 0x10F40, symSize: 0x10 } - - { offsetInCU: 0x91, offset: 0x62132, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0VtcfC', symObjAddr: 0x0, symBinAddr: 0x111B0, symSize: 0xE0 } - - { offsetInCU: 0xDF, offset: 0x62180, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC_12cacheManager15callbackHandlerAcA0eF7OptionsC_AA010OSIABCacheJ0_pAA0ef8CallbackL0Vtcfc', symObjAddr: 0xE0, symBinAddr: 0x11290, symSize: 0xD0 } - - { offsetInCU: 0x116, offset: 0x621B7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF', symObjAddr: 0x230, symBinAddr: 0x113E0, symSize: 0x430 } - - { offsetInCU: 0x33B, offset: 0x623DC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfC', symObjAddr: 0x660, symBinAddr: 0x11810, symSize: 0x20 } - - { offsetInCU: 0x359, offset: 0x623FA, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfc', symObjAddr: 0x680, symBinAddr: 0x11830, symSize: 0x30 } - - { offsetInCU: 0x3BC, offset: 0x6245D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCACycfcTo', symObjAddr: 0x6B0, symBinAddr: 0x11860, symSize: 0x30 } - - { offsetInCU: 0x432, offset: 0x624D3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCAA11OSIABRouterA2aDP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctFTW', symObjAddr: 0x770, symBinAddr: 0x11920, symSize: 0x50 } - - { offsetInCU: 0x464, offset: 0x62505, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC10handleOpenyy10Foundation3URLV_ySo16UIViewControllerCctF06$sSo16mN15CIegn_ABIegg_TRAIIegn_Tf1ncn_nTf4nng_n', symObjAddr: 0xD60, symBinAddr: 0x11EF0, symSize: 0x440 } - - { offsetInCU: 0x699, offset: 0x6273A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib17OSIABCacheManager_pWOc', symObjAddr: 0x1B0, symBinAddr: 0x11360, symSize: 0x30 } - - { offsetInCU: 0x6AD, offset: 0x6274E, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x1E0, symBinAddr: 0x11390, symSize: 0x30 } - - { offsetInCU: 0x6C1, offset: 0x62762, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCMa', symObjAddr: 0x210, symBinAddr: 0x113C0, symSize: 0x20 } - - { offsetInCU: 0x868, offset: 0x62909, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC5coderADSgSo7NSCoderC_tcfcTo', symObjAddr: 0x860, symBinAddr: 0x11A10, symSize: 0x50 } - - { offsetInCU: 0x8E1, offset: 0x62982, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC7dismiss8animated10completionySb_yycSgtFTo', symObjAddr: 0x8B0, symBinAddr: 0x11A60, symSize: 0x140 } - - { offsetInCU: 0x94B, offset: 0x629EC, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC04rootF0AdA0eF7WrapperV_tcfC7SwiftUI09UIHostingG0CAeJyxGx_tcfCTV', symObjAddr: 0xA80, symBinAddr: 0x11C30, symSize: 0x30 } - - { offsetInCU: 0x9EB, offset: 0x62A8C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC5coder04rootF0ADSgSo7NSCoderC_AA0eF7WrapperVtcfC7SwiftUI09UIHostingG0CAefNyxGSgAI_xtcfCTV', symObjAddr: 0xAB0, symBinAddr: 0x11C60, symSize: 0x30 } - - { offsetInCU: 0xBBA, offset: 0x62C5B, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterCfETo', symObjAddr: 0x700, symBinAddr: 0x118B0, symSize: 0x70 } - - { offsetInCU: 0xBE9, offset: 0x62C8A, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC32presentationControllerDidDismissyySo014UIPresentationJ0CF', symObjAddr: 0x7C0, symBinAddr: 0x11970, symSize: 0x30 } - - { offsetInCU: 0xC38, offset: 0x62CD9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABWebViewRouterAdapterC32presentationControllerDidDismissyySo014UIPresentationJ0CFTo', symObjAddr: 0x7F0, symBinAddr: 0x119A0, symSize: 0x70 } - - { offsetInCU: 0xC77, offset: 0x62D18, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCfE', symObjAddr: 0x9F0, symBinAddr: 0x11BA0, symSize: 0x20 } - - { offsetInCU: 0xCA4, offset: 0x62D45, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCfETo', symObjAddr: 0xA60, symBinAddr: 0x11C10, symSize: 0x20 } - - { offsetInCU: 0xCD3, offset: 0x62D74, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib19OSIABWebViewWrapperVyAcA0eF5ModelCcfcAEycfu_TA', symObjAddr: 0xB10, symBinAddr: 0x11CC0, symSize: 0x10 } - - { offsetInCU: 0xCE7, offset: 0x62D88, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCMa', symObjAddr: 0xB30, symBinAddr: 0x11CE0, symSize: 0x30 } - - { offsetInCU: 0xCFB, offset: 0x62D9C, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0xB60, symBinAddr: 0x11D10, symSize: 0x30 } - - { offsetInCU: 0xD0F, offset: 0x62DB0, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCMr', symObjAddr: 0xBE0, symBinAddr: 0x11D90, symSize: 0x40 } - - { offsetInCU: 0xD23, offset: 0x62DC4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLCMU', symObjAddr: 0xC20, symBinAddr: 0x11DD0, symSize: 0x10 } - - { offsetInCU: 0xD37, offset: 0x62DD8, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib22OSIABWebViewController33_FC04E0E03E397A1506DA22079B0ACCFBLLC7dismiss8animated10completionySb_yycSgtFyycfU_TA', symObjAddr: 0xC70, symBinAddr: 0x11E20, symSize: 0x50 } - - { offsetInCU: 0xD6B, offset: 0x62E0C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCC0, symBinAddr: 0x11E70, symSize: 0x20 } - - { offsetInCU: 0xD7F, offset: 0x62E20, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xCE0, symBinAddr: 0x11E90, symSize: 0x10 } - - { offsetInCU: 0xD93, offset: 0x62E34, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xD10, symBinAddr: 0x11EA0, symSize: 0x20 } - - { offsetInCU: 0xDA7, offset: 0x62E48, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0xD50, symBinAddr: 0x11EE0, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x6306D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfC', symObjAddr: 0x0, symBinAddr: 0x123B0, symSize: 0x70 } - - { offsetInCU: 0xB5, offset: 0x630F7, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfC', symObjAddr: 0x0, symBinAddr: 0x123B0, symSize: 0x70 } - - { offsetInCU: 0x15A, offset: 0x6319C, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC12dismissStyle04viewH015animationEffect20enableBarsCollapsing0L11ReadersModeAcA012OSIABDismissH0O_AA09OSIABViewH0OAA014OSIABAnimationK0OS2btcfc', symObjAddr: 0x70, symBinAddr: 0x12420, symSize: 0x30 } - - { offsetInCU: 0x1FD, offset: 0x6323F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0OtcfC', symObjAddr: 0xA0, symBinAddr: 0x12450, symSize: 0x30 } - - { offsetInCU: 0x25C, offset: 0x6329E, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsC9viewStyle15animationEffectAcA09OSIABViewH0O_AA014OSIABAnimationJ0Otcfc', symObjAddr: 0xD0, symBinAddr: 0x12480, symSize: 0x30 } - - { offsetInCU: 0x2A1, offset: 0x632E3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsCfd', symObjAddr: 0x100, symBinAddr: 0x124B0, symSize: 0x10 } - - { offsetInCU: 0x2CE, offset: 0x63310, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsCfD', symObjAddr: 0x110, symBinAddr: 0x124C0, symSize: 0x20 } - - { offsetInCU: 0x355, offset: 0x63397, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib011OSIABSystemC7OptionsCMa', symObjAddr: 0x130, symBinAddr: 0x124E0, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x634C5, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x0, symBinAddr: 0x12530, symSize: 0x30 } - - { offsetInCU: 0x5B, offset: 0x634DD, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TR', symObjAddr: 0x30, symBinAddr: 0x12560, symSize: 0x10 } - - { offsetInCU: 0xBD, offset: 0x6353F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfC', symObjAddr: 0x40, symBinAddr: 0x12570, symSize: 0x80 } - - { offsetInCU: 0x116, offset: 0x63598, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC_02onC8PageLoad0jC6ClosedAcA011OSIABSystemC7OptionsC_yycyyctcfc', symObjAddr: 0xC0, symBinAddr: 0x125F0, symSize: 0x60 } - - { offsetInCU: 0x151, offset: 0x635D3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF', symObjAddr: 0x140, symBinAddr: 0x12670, symSize: 0x270 } - - { offsetInCU: 0x2E6, offset: 0x63768, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfC', symObjAddr: 0x410, symBinAddr: 0x12940, symSize: 0x20 } - - { offsetInCU: 0x304, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfc', symObjAddr: 0x430, symBinAddr: 0x12960, symSize: 0x30 } - - { offsetInCU: 0x367, offset: 0x637E9, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCACycfcTo', symObjAddr: 0x460, symBinAddr: 0x12990, symSize: 0x30 } - - { offsetInCU: 0x3DD, offset: 0x6385F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCAA11OSIABRouterA2aDP10handleOpenyy10Foundation3URLV_y10ReturnTypeQzctFTW', symObjAddr: 0x500, symBinAddr: 0x12A30, symSize: 0x50 } - - { offsetInCU: 0x40F, offset: 0x63891, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC10handleOpenyy10Foundation3URLV_ySo06UIViewG0CctF06$sSo16nG15CIegn_ABIegg_TRAIIegn_Tf1ncn_nTf4nng_n', symObjAddr: 0xA60, symBinAddr: 0x12F50, symSize: 0x290 } - - { offsetInCU: 0x5A6, offset: 0x63A28, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCMa', symObjAddr: 0x120, symBinAddr: 0x12650, symSize: 0x20 } - - { offsetInCU: 0x661, offset: 0x63AE3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC7dismiss8animated10completionySb_yycSgtFTo', symObjAddr: 0x6D0, symBinAddr: 0x12C00, symSize: 0x140 } - - { offsetInCU: 0x6DB, offset: 0x63B5D, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC3url13configurationAD10Foundation3URLV_So08SFSafarifG13ConfigurationCtcfcTo', symObjAddr: 0x810, symBinAddr: 0x12D40, symSize: 0x60 } - - { offsetInCU: 0x771, offset: 0x63BF3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC3url23entersReaderIfAvailableAD10Foundation3URLV_SbtcfcTo', symObjAddr: 0x870, symBinAddr: 0x12DA0, symSize: 0x60 } - - { offsetInCU: 0x99D, offset: 0x63E1F, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLCMa', symObjAddr: 0x3F0, symBinAddr: 0x12920, symSize: 0x20 } - - { offsetInCU: 0x9C7, offset: 0x63E49, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterCfETo', symObjAddr: 0x4B0, symBinAddr: 0x129E0, symSize: 0x50 } - - { offsetInCU: 0x9F6, offset: 0x63E78, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC06safarifG0_22didCompleteInitialLoadySo08SFSafarifG0C_SbtF', symObjAddr: 0x550, symBinAddr: 0x12A80, symSize: 0x30 } - - { offsetInCU: 0xA5B, offset: 0x63EDD, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC06safarifG0_22didCompleteInitialLoadySo08SFSafarifG0C_SbtFTo', symObjAddr: 0x580, symBinAddr: 0x12AB0, symSize: 0x70 } - - { offsetInCU: 0xAA4, offset: 0x63F26, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC012presentationG10DidDismissyySo014UIPresentationG0CF', symObjAddr: 0x5F0, symBinAddr: 0x12B20, symSize: 0x30 } - - { offsetInCU: 0xAF3, offset: 0x63F75, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib38OSIABSafariViewControllerRouterAdapterC012presentationG10DidDismissyySo014UIPresentationG0CFTo', symObjAddr: 0x670, symBinAddr: 0x12BA0, symSize: 0x60 } - - { offsetInCU: 0xB32, offset: 0x63FB4, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLCfETo', symObjAddr: 0x920, symBinAddr: 0x12E50, symSize: 0x20 } - - { offsetInCU: 0xB61, offset: 0x63FE3, size: 0x8, addend: 0x0, symName: '_$s17OSInAppBrowserLib25OSIABSafariViewController33_3A7D5329316327D23F3F859F623C9F08LLC7dismiss8animated10completionySb_yycSgtFyycfU_TA', symObjAddr: 0x980, symBinAddr: 0x12EB0, symSize: 0x40 } - - { offsetInCU: 0xB95, offset: 0x64017, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x9C0, symBinAddr: 0x12EF0, symSize: 0x20 } - - { offsetInCU: 0xBA9, offset: 0x6402B, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x9E0, symBinAddr: 0x12F10, symSize: 0x10 } - - { offsetInCU: 0xBC8, offset: 0x6404A, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0xA50, symBinAddr: 0x12F40, symSize: 0x10 } -... diff --git a/package.json b/package.json index 84d7551..a778b83 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ ], "scripts": { "verify": "npm run verify:ios && npm run verify:android && npm run verify:web", - "verify:ios": "xcodebuild -scheme CapacitorOsInappbrowser -destination generic/platform=iOS", + "verify:ios": "xcodebuild -scheme CapacitorInappbrowser -destination generic/platform=iOS", "verify:android": "cd android && ./gradlew clean build test && cd ..", "verify:web": "npm run build", "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",